aboutsummaryrefslogtreecommitdiffstats
path: root/src/features
diff options
context:
space:
mode:
Diffstat (limited to 'src/features')
-rw-r--r--src/features/announcements/components/AnnouncementScreen.js2
-rw-r--r--src/features/basicAuth/index.js2
-rw-r--r--src/features/delayApp/Component.js4
-rw-r--r--src/features/delayApp/index.js2
-rw-r--r--src/features/shareFranz/Component.js4
-rw-r--r--src/features/shareFranz/index.js4
-rw-r--r--src/features/workspaces/components/WorkspacesDashboard.js2
7 files changed, 10 insertions, 10 deletions
diff --git a/src/features/announcements/components/AnnouncementScreen.js b/src/features/announcements/components/AnnouncementScreen.js
index d4b5fe955..eb157555f 100644
--- a/src/features/announcements/components/AnnouncementScreen.js
+++ b/src/features/announcements/components/AnnouncementScreen.js
@@ -18,7 +18,7 @@ const markedOptions = { sanitize: true, renderer };
18const messages = defineMessages({ 18const messages = defineMessages({
19 headline: { 19 headline: {
20 id: 'feature.announcements.changelog.headline', 20 id: 'feature.announcements.changelog.headline',
21 defaultMessage: '!!!Changes in Franz {version}', 21 defaultMessage: '!!!Changes in Ferdi {version}',
22 }, 22 },
23}); 23});
24 24
diff --git a/src/features/basicAuth/index.js b/src/features/basicAuth/index.js
index 89607824b..a8c93875e 100644
--- a/src/features/basicAuth/index.js
+++ b/src/features/basicAuth/index.js
@@ -20,7 +20,7 @@ export function resetState() {
20export default function initialize() { 20export default function initialize() {
21 debug('Initialize basicAuth feature'); 21 debug('Initialize basicAuth feature');
22 22
23 window.franz.features.basicAuth = { 23 window.ferdi.features.basicAuth = {
24 state, 24 state,
25 }; 25 };
26 26
diff --git a/src/features/delayApp/Component.js b/src/features/delayApp/Component.js
index 7e09c2ea5..ba50652e8 100644
--- a/src/features/delayApp/Component.js
+++ b/src/features/delayApp/Component.js
@@ -16,11 +16,11 @@ const messages = defineMessages({
16 }, 16 },
17 action: { 17 action: {
18 id: 'feature.delayApp.action', 18 id: 'feature.delayApp.action',
19 defaultMessage: '!!!Get a Franz Supporter License', 19 defaultMessage: '!!!Get a Ferdi Supporter License',
20 }, 20 },
21 text: { 21 text: {
22 id: 'feature.delayApp.text', 22 id: 'feature.delayApp.text',
23 defaultMessage: '!!!Franz will continue in {seconds} seconds.', 23 defaultMessage: '!!!Ferdi will continue in {seconds} seconds.',
24 }, 24 },
25}); 25});
26 26
diff --git a/src/features/delayApp/index.js b/src/features/delayApp/index.js
index 5fc553684..c753eeffe 100644
--- a/src/features/delayApp/index.js
+++ b/src/features/delayApp/index.js
@@ -27,7 +27,7 @@ export default function init(stores) {
27 let shownAfterLaunch = false; 27 let shownAfterLaunch = false;
28 let timeLastDelay = moment(); 28 let timeLastDelay = moment();
29 29
30 window.franz.features.delayApp = { 30 window.ferdi.features.delayApp = {
31 state, 31 state,
32 }; 32 };
33 33
diff --git a/src/features/shareFranz/Component.js b/src/features/shareFranz/Component.js
index 320951f0d..2e66acaf3 100644
--- a/src/features/shareFranz/Component.js
+++ b/src/features/shareFranz/Component.js
@@ -13,11 +13,11 @@ import ServicesStore from '../../stores/ServicesStore';
13const messages = defineMessages({ 13const messages = defineMessages({
14 headline: { 14 headline: {
15 id: 'feature.shareFranz.headline', 15 id: 'feature.shareFranz.headline',
16 defaultMessage: '!!!Franz is better together!', 16 defaultMessage: '!!!Ferdi is better together!',
17 }, 17 },
18 text: { 18 text: {
19 id: 'feature.shareFranz.text', 19 id: 'feature.shareFranz.text',
20 defaultMessage: '!!!Tell your friends and colleagues how awesome Franz is and help us to spread the word.', 20 defaultMessage: '!!!Tell your friends and colleagues how awesome Ferdi is and help us to spread the word.',
21 }, 21 },
22 actionsEmail: { 22 actionsEmail: {
23 id: 'feature.shareFranz.action.email', 23 id: 'feature.shareFranz.action.email',
diff --git a/src/features/shareFranz/index.js b/src/features/shareFranz/index.js
index 41da57dd6..1167b329b 100644
--- a/src/features/shareFranz/index.js
+++ b/src/features/shareFranz/index.js
@@ -15,9 +15,9 @@ const defaultState = {
15export const state = observable(defaultState); 15export const state = observable(defaultState);
16 16
17export default function initialize(stores) { 17export default function initialize(stores) {
18 debug('Initialize shareFranz feature'); 18 debug('Initialize shareFerdi feature');
19 19
20 window.franz.features.shareFranz = { 20 window.ferdi.features.shareFerdi = {
21 state, 21 state,
22 }; 22 };
23 23
diff --git a/src/features/workspaces/components/WorkspacesDashboard.js b/src/features/workspaces/components/WorkspacesDashboard.js
index 09c98ab8c..9b51f2602 100644
--- a/src/features/workspaces/components/WorkspacesDashboard.js
+++ b/src/features/workspaces/components/WorkspacesDashboard.js
@@ -44,7 +44,7 @@ const messages = defineMessages({
44 }, 44 },
45 workspaceFeatureHeadline: { 45 workspaceFeatureHeadline: {
46 id: 'settings.workspaces.workspaceFeatureHeadline', 46 id: 'settings.workspaces.workspaceFeatureHeadline',
47 defaultMessage: '!!!Less is More: Introducing Franz Workspaces', 47 defaultMessage: '!!!Less is More: Introducing Ferdi Workspaces',
48 }, 48 },
49}); 49});
50 50