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,9 @@
# --
# 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 class="ArrayItem"></div>

View File

@@ -0,0 +1,13 @@
# --
# 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.
# --
<button data-suffix="{{ Suffix }}" class="{{ Class }}" type="button"
title="{{ 'Add new entry' | Translate }}" value="{{ 'Add new entry' | Translate }}">
<i class="fa fa-plus-circle"></i>
<span class="InvisibleText">{{ 'Add new entry' | Translate }}</span>
</button>

View File

@@ -0,0 +1,15 @@
# --
# 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 class='HashItem'>
<input type='text' data-suffix='{{ IDSuffix }}' class='Key'>
<button type='button' value='{{ 'Add key' | Translate }}' class='CallForAction Inline AddKey' title='{{ 'Add key' | Translate }}'>
<i class="fa fa-check"></i>
<span class="InvisibleText">{{ 'Add key' | Translate }}</span>
</button>
</div>

View File

@@ -0,0 +1,11 @@
# --
# 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.
# --
<li>
<a title="{{ Title }}" href="{{ URL }}">{{ Title }}</a>
</li>

View File

@@ -0,0 +1,45 @@
# --
# 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 id="DialogDeployment" class="InnerContent">
<textarea id="DeploymentComment" class="DialogComment" style="display: none;" placeholder="{{ "Deployment comment..." | Translate }}"></textarea>
<div class="Overlay Deploying">
<span>
<i class="Active fa fa-spinner fa-spin"></i>
<i class="Success fa fa-check"></i>
<i class="Error fa fa-times"></i>
</span>
<em>{{ "Deploying, please wait..." | Translate }}</em>
</div>
<div class="Overlay Preparing">
<span>
<i class="Active fa fa-spinner fa-spin"></i>
<i class="Error fa fa-times"></i>
</span>
<em>{{ "Preparing to deploy, please wait..." | Translate }}</em>
</div>
</div>
<div class="ContentFooter Center">
<div class="ButtonsRegular">
<button id="Deploy" class="Primary CallForAction" value="{{ "Deploy now" | Translate }}"><span>{{ "Deploy now" | Translate }}</span></button>
&nbsp;{{ "or" | Translate }}&nbsp;
<button class="CallForAction CloseDialog" value="{{ "Deploy now" | Translate }}"><span>{{ "Cancel" | Translate }}</span></button>
</div>
<div class="ButtonsFinish">
<button class="CallForAction CloseDialog" value="{{ "Close this dialog" | Translate }}"><span>{{ "Close this dialog" | Translate }}</span></button>
</div>
<div class="ButtonsTryAgain">
<button class="CallForAction" value="{{ "Try again" | Translate }}"><span>{{ "Try again" | Translate }}</span></button>
</div>
</div>
</div>

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>

View File

@@ -0,0 +1,13 @@
# --
# 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 class="Spacing">
<div class="HelpDialog">
<p>{{ 'You can use the category selection to limit the navigation tree below to entries from the selected category. As soon as you select the category, the tree will be re-built.' | Translate }}</p>
</div>
</div>

View File

@@ -0,0 +1,13 @@
# --
# 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.
# --
<button class="RemoveButton" type="button" title="{{ 'Remove this entry' | Translate }}"
value="{{ 'Remove this entry' | Translate }}">
<i class="fa fa-minus-circle"></i>
<span class="InvisibleText">{{ 'Remove this entry' | Translate }}</span>
</button>