Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
fix(intall): some strings shall not be translated
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry authored and DIOHz0r committed Apr 30, 2018
1 parent cd159dd commit 221fc9e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions install/installer.class.php
Expand Up @@ -363,9 +363,9 @@ protected function getNotificationTargetInvitationEvents() {
$notifications = [
PluginFlyvemdmNotificationTargetInvitation::EVENT_GUEST_INVITATION => [
'itemtype' => PluginFlyvemdmInvitation::class,
'name' => __('User invitation', "flyvemdm"),
'subject' => __('You have been invited to join Flyve MDM', 'flyvemdm'),
'content_text' => __('Hi,
'name' => __('User invitation', 'flyvemdm'),
'subject' => 'You have been invited to join Flyve MDM', 'flyvemdm',
'content_text' => 'Hi,
##user.firstname## ##user.realname## invited you to enroll your mobile device
in Flyve Mobile Device Managment (Flyve MDM). Flyve MDM allows administrators
Expand All @@ -388,8 +388,8 @@ protected function getNotificationTargetInvitationEvents() {
Regards,
', 'flyvemdm'),
'content_html' => __('Hi,
',
'content_html' => 'Hi,
##user.firstname## ##user.realname## invited you to enroll your mobile device
in Flyve Mobile Device Managment (Flyve MDM). Flyve MDM allows administrators
Expand All @@ -415,7 +415,7 @@ protected function getNotificationTargetInvitationEvents() {
Regards,
', 'flyvemdm'),
',
],
];

Expand Down

0 comments on commit 221fc9e

Please sign in to comment.