diff --git a/web-app/src/app/about/about.component.html b/web-app/src/app/about/about.component.html index ee40a92a9..159ba7011 100644 --- a/web-app/src/app/about/about.component.html +++ b/web-app/src/app/about/about.component.html @@ -12,13 +12,13 @@
About

- MAGE is a dynamic, secure, mobile situational awareness and field data collection platform that supports - low-bandwidth and disconnected users. MAGE can integrate with existing command centers and common operating - pictures or stand alone as a complete, mission-ready solution. The MAGE mobile app on iOS and Android + Mage is a dynamic, secure, mobile situational awareness and field data collection platform that supports + low-bandwidth and disconnected users. Mage can integrate with existing command centers and common operating + pictures or stand alone as a complete, mission-ready solution. The Mage mobile app on iOS and Android allows agents in the field to create and share geo-tagged observations with attached photos, videos, - audio, and form data. MAGE's data collection forms are easily tailored to suit any team and mission with - custom form fields and map symbologies. In addition to data collection, the MAGE mobile app can optionally - report field agents' locations at regular intervals to the MAGE server. The MAGE server's web app provides + audio, and form data. Mage's data collection forms are easily tailored to suit any team and mission with + custom form fields and map symbologies. In addition to data collection, the Mage mobile app can optionally + report field agents' locations at regular intervals to the Mage server. The Mage server's web app provides a common operating picture of field agents' observations and latest reported locations.

@@ -35,7 +35,7 @@
API
- Browse and try the MAGE API live with Swagger UI. Swagger interactive documentation will modify MAGE data via API calls; please be careful with POST/PUT/DELETE operations. + Browse and try the Mage API live with Swagger UI. Swagger interactive documentation will modify Mage data via API calls; please be careful with POST/PUT/DELETE operations.
@@ -48,7 +48,7 @@
Acknowledgements
-
The MAGE is built with the MEAN stack; +
Mage is built with the MEAN stack MongoDB, Express, Angular and diff --git a/web-app/src/app/contact/contact-dialog.component.ts b/web-app/src/app/contact/contact-dialog.component.ts index 53dc4d71f..764739849 100644 --- a/web-app/src/app/contact/contact-dialog.component.ts +++ b/web-app/src/app/contact/contact-dialog.component.ts @@ -39,7 +39,7 @@ export class ContactDialogComponent { var message = "" if (emailLink || phoneLink) { message += "

" - message += "You may contact your MAGE administrator via " + message += "You may contact your Mage administrator via " if (emailLink) { message += "Email" } diff --git a/web-app/src/app/ingress/authentication/idp/idp-authentication.component.ts b/web-app/src/app/ingress/authentication/idp/idp-authentication.component.ts index d4a025c21..3aa15252a 100644 --- a/web-app/src/app/ingress/authentication/idp/idp-authentication.component.ts +++ b/web-app/src/app/ingress/authentication/idp/idp-authentication.component.ts @@ -23,12 +23,12 @@ export class IdpAuthenticationComponent { this.userService.idpSignin(this.strategy.name).subscribe({ next: (response: any) => { if (!response.token || !response.user) { - let message = 'There was a problem signing in, Please contact a MAGE administrator for assistance.' + let message = 'There was a problem signing in, Please contact a Mage administrator for assistance.' if (response.user) { if (!response.user.active) { - message = 'Your account has been created but it is not active. A MAGE administrator needs to activate your account before you can log in.' + message = 'Your account has been created but it is not active. A Mage administrator needs to activate your account before you can log in.' } else if (!response.user.enabled) { - message = 'Your account has been disabled, please contact a MAGE administrator for assistance.' + message = 'Your account has been disabled, please contact a Mage administrator for assistance.' } } diff --git a/web-app/src/app/map/layers/layers.component.html b/web-app/src/app/map/layers/layers.component.html index 200241166..424293a15 100644 --- a/web-app/src/app/map/layers/layers.component.html +++ b/web-app/src/app/map/layers/layers.component.html @@ -1,5 +1,5 @@
-

MAGE

+

Mage

diff --git a/web-app/src/app/map/map.component.html b/web-app/src/app/map/map.component.html index 65238cb5c..602471d46 100644 --- a/web-app/src/app/map/map.component.html +++ b/web-app/src/app/map/map.component.html @@ -5,7 +5,7 @@ menu - MAGE + Mage
diff --git a/web-app/src/app/navigation/navigation.component.ts b/web-app/src/app/navigation/navigation.component.ts index 210f8dac4..3e1a95c02 100644 --- a/web-app/src/app/navigation/navigation.component.ts +++ b/web-app/src/app/navigation/navigation.component.ts @@ -41,7 +41,7 @@ export class NavigationComponent implements OnInit, OnDestroy { this.filterService.setFilter({ event: recentEvent }); this.pollingService.setPollingInterval(this.pollingService.getPollingInterval()); } else if (events.length > 0) { - // TODO 'welcome to MAGE dialog' + // TODO 'welcome to Mage dialog' this.filterService.setFilter({ event: events[0] }); this.pollingService.setPollingInterval(this.pollingService.getPollingInterval()); } else {