aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/services
diff options
context:
space:
mode:
authorLibravatar Aditya Mangalampalli <aditya.mangalampalli@gmail.com>2022-04-15 02:00:25 -0700
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-04-16 21:57:57 +0530
commit210131ca184c3aa043371857c022aa1aa149efbf (patch)
tree6bc4e10a1540e55a66146c099bc468a12287425e /src/components/services
parentUpdate submodule url to ferdium-recipes (#1) (diff)
downloadferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.tar.gz
ferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.tar.zst
ferdium-app-210131ca184c3aa043371857c022aa1aa149efbf.zip
Matched casing for almost all replacements
Diffstat (limited to 'src/components/services')
-rw-r--r--src/components/services/content/ConnectionLostBanner.js6
-rw-r--r--src/components/services/content/ServiceView.js2
-rw-r--r--src/components/services/content/ServiceWebview.js6
-rw-r--r--src/components/services/content/Services.js6
-rw-r--r--src/components/services/tabs/TabItem.js2
5 files changed, 11 insertions, 11 deletions
diff --git a/src/components/services/content/ConnectionLostBanner.js b/src/components/services/content/ConnectionLostBanner.js
index 5adb22c84..4f68c1bfe 100644
--- a/src/components/services/content/ConnectionLostBanner.js
+++ b/src/components/services/content/ConnectionLostBanner.js
@@ -5,13 +5,13 @@ import injectSheet from 'react-jss';
5import { defineMessages, injectIntl } from 'react-intl'; 5import { defineMessages, injectIntl } from 'react-intl';
6 6
7import { mdiAlert } from '@mdi/js'; 7import { mdiAlert } from '@mdi/js';
8import { LIVE_API_FERDI_WEBSITE } from '../../../config'; 8import { LIVE_API_FERDIUM_WEBSITE } from '../../../config';
9import { Icon } from '../../ui/icon'; 9import { Icon } from '../../ui/icon';
10 10
11const messages = defineMessages({ 11const messages = defineMessages({
12 text: { 12 text: {
13 id: 'connectionLostBanner.message', 13 id: 'connectionLostBanner.message',
14 defaultMessage: 'Oh no! Ferdi lost the connection to {name}.', 14 defaultMessage: 'Oh no! Ferdium lost the connection to {name}.',
15 }, 15 },
16 moreInformation: { 16 moreInformation: {
17 id: 'connectionLostBanner.informationLink', 17 id: 'connectionLostBanner.informationLink',
@@ -87,7 +87,7 @@ class ConnectionLostBanner extends Component {
87 {intl.formatMessage(messages.text, { name })} 87 {intl.formatMessage(messages.text, { name })}
88 <br /> 88 <br />
89 <a 89 <a
90 href={`${LIVE_API_FERDI_WEBSITE}/support#what-does-franz-lost-the-connection-to-service-mean`} 90 href={`${LIVE_API_FERDIUM_WEBSITE}/support#what-does-franz-lost-the-connection-to-service-mean`}
91 className={classes.link} 91 className={classes.link}
92 > 92 >
93 {intl.formatMessage(messages.moreInformation)} 93 {intl.formatMessage(messages.moreInformation)}
diff --git a/src/components/services/content/ServiceView.js b/src/components/services/content/ServiceView.js
index a9a013ced..1effcb628 100644
--- a/src/components/services/content/ServiceView.js
+++ b/src/components/services/content/ServiceView.js
@@ -151,7 +151,7 @@ class ServiceView extends Component {
151 😴 151 😴
152 </span><br/><br/> 152 </span><br/><br/>
153 This service is currently hibernating.<br/> 153 This service is currently hibernating.<br/>
154 Try switching services or reloading Ferdi. 154 Try switching services or reloading Ferdium.
155 </div> 155 </div>
156 )} 156 )}
157 </> 157 </>
diff --git a/src/components/services/content/ServiceWebview.js b/src/components/services/content/ServiceWebview.js
index 12aaf70b7..f90710c31 100644
--- a/src/components/services/content/ServiceWebview.js
+++ b/src/components/services/content/ServiceWebview.js
@@ -7,7 +7,7 @@ import { join } from 'path';
7 7
8import ServiceModel from '../../../models/Service'; 8import ServiceModel from '../../../models/Service';
9 9
10const debug = require('debug')('Ferdi:Services'); 10const debug = require('debug')('Ferdium:Services');
11 11
12class ServiceWebview extends Component { 12class ServiceWebview extends Component {
13 static propTypes = { 13 static propTypes = {
@@ -31,7 +31,7 @@ class ServiceWebview extends Component {
31 }); 31 });
32 this.webview.view.addEventListener('did-navigate', () => { 32 this.webview.view.addEventListener('did-navigate', () => {
33 if (this.props.service._webview) { 33 if (this.props.service._webview) {
34 document.title = `Ferdi - ${this.props.service.name} ${ 34 document.title = `Ferdium - ${this.props.service.name} ${
35 this.props.service.dialogTitle 35 this.props.service.dialogTitle
36 ? ` - ${this.props.service.dialogTitle}` 36 ? ` - ${this.props.service.dialogTitle}`
37 : '' 37 : ''
@@ -56,7 +56,7 @@ class ServiceWebview extends Component {
56 webview.view.blur(); 56 webview.view.blur();
57 webview.view.focus(); 57 webview.view.focus();
58 window.setTimeout(() => { 58 window.setTimeout(() => {
59 document.title = `Ferdi - ${this.props.service.name} ${ 59 document.title = `Ferdium - ${this.props.service.name} ${
60 this.props.service.dialogTitle 60 this.props.service.dialogTitle
61 ? ` - ${this.props.service.dialogTitle}` 61 ? ` - ${this.props.service.dialogTitle}`
62 : '' 62 : ''
diff --git a/src/components/services/content/Services.js b/src/components/services/content/Services.js
index 9b43ea177..b38b0e3c3 100644
--- a/src/components/services/content/Services.js
+++ b/src/components/services/content/Services.js
@@ -17,16 +17,16 @@ const messages = defineMessages({
17 }, 17 },
18 login: { 18 login: {
19 id: 'services.login', 19 id: 'services.login',
20 defaultMessage: 'Please login to use Ferdi.', 20 defaultMessage: 'Please login to use Ferdium.',
21 }, 21 },
22 serverless: { 22 serverless: {
23 id: 'services.serverless', 23 id: 'services.serverless',
24 defaultMessage: 'Use Ferdi without an Account', 24 defaultMessage: 'Use Ferdium without an Account',
25 }, 25 },
26 serverInfo: { 26 serverInfo: {
27 id: 'services.serverInfo', 27 id: 'services.serverInfo',
28 defaultMessage: 28 defaultMessage:
29 'Optionally, you can change your Ferdi server by clicking the cog in the bottom left corner. If you are switching over (from one of the hosted servers) to using Ferdi without an account, please be informed that you can export your data from that server and subsequently import it using the Help menu to resurrect all your workspaces and configured services!', 29 'Optionally, you can change your Ferdium server by clicking the cog in the bottom left corner. If you are switching over (from one of the hosted servers) to using Ferdium without an account, please be informed that you can export your data from that server and subsequently import it using the Help menu to resurrect all your workspaces and configured services!',
30 }, 30 },
31}); 31});
32 32
diff --git a/src/components/services/tabs/TabItem.js b/src/components/services/tabs/TabItem.js
index f5ced7a31..c2e7baddb 100644
--- a/src/components/services/tabs/TabItem.js
+++ b/src/components/services/tabs/TabItem.js
@@ -18,7 +18,7 @@ import { Icon } from '../../ui/icon';
18 18
19const IS_SERVICE_DEBUGGING_ENABLED = ( 19const IS_SERVICE_DEBUGGING_ENABLED = (
20 localStorage.getItem('debug') || '' 20 localStorage.getItem('debug') || ''
21).includes('Ferdi:Service'); 21).includes('Ferdium:Service');
22 22
23const messages = defineMessages({ 23const messages = defineMessages({
24 reload: { 24 reload: {