diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-21 13:27:16 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-21 13:27:16 -0300 |
commit | 2236af1d31d3e7fef8d992381150f6168def4b43 (patch) | |
tree | f8c6d159b2bec1702db520b4608cf7a2985339f3 /src/content | |
parent | 4336906d8f8ea4cbae07d24c7813453ae16c9980 (diff) |
data, yaml: creditSources -> creditingSources preview
Diffstat (limited to 'src/content')
4 files changed, 9 insertions, 9 deletions
diff --git a/src/content/dependencies/generateAlbumInfoPage.js b/src/content/dependencies/generateAlbumInfoPage.js index ed19bf75..d196fc59 100644 --- a/src/content/dependencies/generateAlbumInfoPage.js +++ b/src/content/dependencies/generateAlbumInfoPage.js @@ -79,7 +79,7 @@ export default { .map(entry => relation('generateCommentaryEntry', entry)), creditSourceEntries: - album.creditSources + album.creditingSources .map(entry => relation('generateCommentaryEntry', entry)), }), @@ -157,7 +157,7 @@ export default { : html.blank()), !html.isBlank(relations.creditSourceEntries) && - language.encapsulate(capsule, 'readCreditSources', capsule => + language.encapsulate(capsule, 'readCreditingSources', capsule => language.$(capsule, { link: html.tag('a', @@ -204,7 +204,7 @@ export default { relations.contentHeading.clone() .slots({ attributes: {id: 'credit-sources'}, - title: language.$('misc.creditSources'), + title: language.$('misc.creditingSources'), }), relations.creditSourceEntries, diff --git a/src/content/dependencies/generateFlashInfoPage.js b/src/content/dependencies/generateFlashInfoPage.js index 095e43c4..69dd5bdb 100644 --- a/src/content/dependencies/generateFlashInfoPage.js +++ b/src/content/dependencies/generateFlashInfoPage.js @@ -133,7 +133,7 @@ export default { })), !html.isBlank(relations.creditSourceEntries) && - language.encapsulate(capsule, 'readCreditSources', capsule => + language.encapsulate(capsule, 'readCreditingSources', capsule => language.$(capsule, { link: html.tag('a', @@ -181,7 +181,7 @@ export default { relations.contentHeading.clone() .slots({ attributes: {id: 'credit-sources'}, - title: language.$('misc.creditSources'), + title: language.$('misc.creditingSources'), }), relations.creditSourceEntries, diff --git a/src/content/dependencies/generatePageLayout.js b/src/content/dependencies/generatePageLayout.js index 89fefb23..fdce6487 100644 --- a/src/content/dependencies/generatePageLayout.js +++ b/src/content/dependencies/generatePageLayout.js @@ -581,7 +581,7 @@ export default { {id: 'additional-files', string: 'additionalFiles'}, {id: 'commentary', string: 'commentary'}, {id: 'artist-commentary', string: 'artistCommentary'}, - {id: 'credit-sources', string: 'creditSources'}, + {id: 'credit-sources', string: 'creditingSources'}, ])), ]); diff --git a/src/content/dependencies/generateTrackInfoPage.js b/src/content/dependencies/generateTrackInfoPage.js index ab6ea1cb..d296f98d 100644 --- a/src/content/dependencies/generateTrackInfoPage.js +++ b/src/content/dependencies/generateTrackInfoPage.js @@ -107,7 +107,7 @@ export default { relation('generateTrackArtistCommentarySection', track), creditSourceEntries: - track.creditSources + track.creditingSources .map(entry => relation('generateCommentaryEntry', entry)), }), @@ -182,7 +182,7 @@ export default { })), !html.isBlank(relations.creditSourceEntries) && - language.encapsulate(capsule, 'readCreditSources', capsule => + language.encapsulate(capsule, 'readCreditingSources', capsule => language.$(capsule, { link: html.tag('a', @@ -341,7 +341,7 @@ export default { relations.contentHeading.clone() .slots({ attributes: {id: 'credit-sources'}, - title: language.$('misc.creditSources'), + title: language.$('misc.creditingSources'), }), relations.creditSourceEntries, |