1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# --
# Copyright (C) 2001-2017 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
[% SET OTRSBusinessLabel = '<strong>OTRS Business Solution</strong>™' %]
<div class="MainBox ARIARoleMain LayoutFixedSidebar SidebarFirst">
<h1>[% Translate("Unauthorized usage of %s detected", OTRSBusinessLabel) %]</h1>
<div class="SidebarColumn">
<div class="WidgetSimple">
<div class="Header">
<h2>[% Translate("Actions") | html %]</h2>
</div>
<div class="Content">
<ul class="ActionList">
<li>
<a href="[% Env("Baselink") %]Action=AdminOTRSBusiness;Subaction=Uninstall" class="CallForAction Fullsize Center">
<span><i class="fa fa-angle-double-down"></i> [% Translate("Downgrade to OTRS Free") | html %]</span>
</a>
</li>
</ul>
</div>
<div class="Clear"></div>
</div>
</div>
<div class="ContentColumn">
<div class="WidgetSimple">
<div class="Header">
<h2 class="Center">[% Translate("Unauthorized Usage Detected") | html %]</h2>
</div>
<div class="Content">
<div class="BusinessLogo Error">
<span></span>
<i class="fa fa-times-circle"></i>
</div>
<p class="Center">
[% Translate('This system uses the %s without a proper license! Please make contact with %s to renew or activate your contract!', OTRSBusinessLabel, '<a href="mailto:sales@otrs.com">sales@otrs.com</a>') %]
</p>
<p class="Center SpacingTop">
[% Translate('If you decide to downgrade to OTRS Free, you will lose all database tables and data related to %s.', OTRSBusinessLabel) %]
</p>
</div>
<div class="Clear"></div>
</div>
</div>
</div>
|