Skip to content

Commit 697995c

Browse files
committed
Fix spacing in byline
1 parent 4f4423e commit 697995c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

frontend/packages/volto-intranet/locales/de/LC_MESSAGES/volto.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgstr ""
1414
#. Default: "By"
1515
#: slots/DocumentByLine/DocumentByLine
1616
msgid "By"
17-
msgstr "von"
17+
msgstr "Von"
1818

1919
#. Default: "Contact"
2020
#: components/Blocks/EventMetadata/View
@@ -59,12 +59,12 @@ msgstr ""
5959
#. Default: "last modified"
6060
#: slots/DocumentByLine/DocumentByLine
6161
msgid "modified"
62-
msgstr "zuletzt geändert"
62+
msgstr "zuletzt verändert"
6363

6464
#. Default: "published"
6565
#: slots/DocumentByLine/DocumentByLine
6666
msgid "published"
67-
msgstr "veröffentlicht"
67+
msgstr "Veröffentlicht"
6868

6969
#. Default: "No results from RSS feed."
7070
#: components/Blocks/RSS/DefaultTemplate

frontend/packages/volto-intranet/src/slots/DocumentByLine/DocumentByLine.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const DocumentByLine = ({ content, ...props }: DocumentByLineProps) => {
9191
{index < creatorsWithData.length - 1 && ', '}
9292
</React.Fragment>
9393
))}
94-
{' —'}
94+
{' — '}
9595
</span>
9696
)}
9797
{content.effective && !isAddMode && (
@@ -108,7 +108,7 @@ const DocumentByLine = ({ content, ...props }: DocumentByLineProps) => {
108108
}}
109109
locale={intl.locale}
110110
/>
111-
,
111+
,{' '}
112112
</span>
113113
) : (
114114
''

0 commit comments

Comments
 (0)