Skip to content
Snippets Groups Projects
Commit f25b349f authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Merge headline and app description into one paragraph

parent 9321ff1d
Branches
No related tags found
No related merge requests found
...@@ -10,6 +10,6 @@ ...@@ -10,6 +10,6 @@
"hello-world": "Hallo Welt" "hello-world": "Hallo Welt"
}, },
"welcome": { "welcome": {
"headline": "Willkommen bei der Applikation '{{appname}}'" "headline": "Willkommen bei der Applikation '{{appname}}'."
} }
} }
\ No newline at end of file
...@@ -10,6 +10,6 @@ ...@@ -10,6 +10,6 @@
"hello-world": "Hello World" "hello-world": "Hello World"
}, },
"welcome": { "welcome": {
"headline": "Welcome to the '{{appname}}' application" "headline": "Welcome to the '{{appname}}' application."
} }
} }
...@@ -62,8 +62,8 @@ class AppShellWelcome extends ScopedElementsMixin(LitElement) { ...@@ -62,8 +62,8 @@ class AppShellWelcome extends ScopedElementsMixin(LitElement) {
} }
return html` return html`
<p>${i18n.t('welcome.headline', {appname: app.topic.name[this.lang]})}</p> <p>${i18n.t('welcome.headline', {appname: app.topic.name[this.lang]})}
<p>${app.topic.description[this.lang] }</p> ${app.topic.description[this.lang] }.</p>
<br> <br>
${itemTemplates} ${itemTemplates}
`; `;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment