aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-12-23 15:46:11 +0100
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-12-23 15:46:11 +0100
commitf319a1c9ba7a4a17a615d1b0f224603e57fdc25d (patch)
tree7d0bc16639867d39914eede3bbd3c6bb6c5bcf56 /src/components/ui
parentAdd local recipe repository as new feature (diff)
downloadferdium-app-f319a1c9ba7a4a17a615d1b0f224603e57fdc25d.tar.gz
ferdium-app-f319a1c9ba7a4a17a615d1b0f224603e57fdc25d.tar.zst
ferdium-app-f319a1c9ba7a4a17a615d1b0f224603e57fdc25d.zip
Allow for more natural translation of loading message
Diffstat (limited to 'src/components/ui')
-rw-r--r--src/components/ui/WebviewLoader/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ui/WebviewLoader/index.js b/src/components/ui/WebviewLoader/index.js
index 923f10327..c58d69374 100644
--- a/src/components/ui/WebviewLoader/index.js
+++ b/src/components/ui/WebviewLoader/index.js
@@ -10,7 +10,7 @@ import styles from './styles';
10const messages = defineMessages({ 10const messages = defineMessages({
11 loading: { 11 loading: {
12 id: 'service.webviewLoader.loading', 12 id: 'service.webviewLoader.loading',
13 defaultMessage: '!!!Loading', 13 defaultMessage: '!!!Loading {service}',
14 }, 14 },
15}); 15});
16 16
@@ -30,7 +30,7 @@ export default @injectSheet(styles) @observer class WebviewLoader extends Compon
30 return ( 30 return (
31 <FullscreenLoader 31 <FullscreenLoader
32 className={classes.component} 32 className={classes.component}
33 title={`${intl.formatMessage(messages.loading)} ${name}`} 33 title={`${intl.formatMessage(messages.loading, { service: name })}`}
34 /> 34 />
35 ); 35 );
36 } 36 }