diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/content/dependencies/generateContentEntry.js | 4 | ||||
| -rw-r--r-- | src/strings-default.yaml | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/content/dependencies/generateContentEntry.js b/src/content/dependencies/generateContentEntry.js index 95c8f4b8..7712d9f6 100644 --- a/src/content/dependencies/generateContentEntry.js +++ b/src/content/dependencies/generateContentEntry.js @@ -88,6 +88,10 @@ export default { workingOptions.accent = html.tag('span', {class: 'content-entry-accent'}, language.$(titleCapsule, 'accent.withAnnotation', {annotation})); + + if (data.isWikiEditorCommentary) { + workingCapsule += '.wikiEditor'; + } } } diff --git a/src/strings-default.yaml b/src/strings-default.yaml index 68222f59..5bf2223b 100644 --- a/src/strings-default.yaml +++ b/src/strings-default.yaml @@ -517,9 +517,10 @@ misc: entry: title: - withArtists: "{ARTISTS}" - withArtists.withAccent: "{ARTISTS}: {ACCENT}" - accent.withAnnotation: "({ANNOTATION})" + withArtists: "{ARTISTS} ✑" + withArtists.withAccent: "{ARTISTS} ✑ {ACCENT}" + withArtists.withAccent.wikiEditor: "{ARTISTS} ({ACCENT})" + accent.withAnnotation: "{ANNOTATION}" withAnnotation: "{ANNOTATION}" date: "{DATE}" |