This commit is contained in:
2024-10-14 00:08:40 +02:00
parent dbfba56f66
commit 1462d52e13
4572 changed files with 2658864 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
# --
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
# --
<div>
<div class="InnerContent">
<h2>{{ Name }}</h2>
{% if ModificationAllowed == "1" and OTRSBusinessIsInstalled == "1" %}
<fieldset class="TableLike FixedLabelSmall">
<label for="ResetOptions"><span class="Mandatory Small">*</span> {{ "Reset options" | Translate }}:</label>
<div class="Field">
<select id="ResetOptions" class="Validate_Required Modernize" multiple="multiple" name="ResetOptions">
<option value="reset-globally" title="{{ "Reset setting on global level." | Translate }}" selected>
{{ "Reset globally" | Translate }}
</option>
<option value="reset-locally" title="{{ "Remove all user changes." | Translate }}">
{{ "Reset locally" | Translate }}
</option>
</select>
</div>
</fieldset>
<p>{{ "Help" | Translate}}:</p>
<ul class="Default">
<li>
<strong>{{ "Reset globally" | Translate }}</strong> -
{{ "Reset setting on global level." | Translate }}
</li>
<li>
<strong>{{ "Reset locally" | Translate }}</strong> -
{{ "Remove all user changes." | Translate }}
</li>
<li>
<i class="fa fa-spinner fa-spin"></i>
<span class="Hidden">
<span class="UserModificationCount"></span>
{{ "user(s) have modified this setting." | Translate }}
</span>
</li>
</ul>
{% else %}
<input type="hidden" id="ResetOptions" value="reset-globally"/>
<p>{{ "Do you really want to reset this setting to it's default value?" | Translate }}</p>
{% endif %}
</div>
<div class="ContentFooter Center">
{% if ModificationAllowed == "1" and OTRSBusinessIsInstalled == "1" %}
<button id="ResetConfirm" class="Primary CallForAction">
<span>{{ "Reset" | Translate }}</span>
</button>
{% else %}
<button id="ResetConfirm" class="Primary CallForAction">
<span>{{ "Confirm" | Translate }}</span>
</button>
{% endif %}
<button class="CallForAction CloseDialog" value="{{ "Cancel" | Translate }}">
<span>{{ "Cancel" | Translate }}</span>
</button>
</div>
</div>