Bugs. Unnecessary rows are displayed on the tabs: list, editor, add, merge, import and export language [+ solution bugs]

Unnecessary rows are displayed on the tabs: list, editor, add, merge, import and export language (NOTE: I do not claim that this is the only right decision :-)).

1 bug.

list

The solution to the problem

In file /usr/local/ispconfig/interface/web/admin/templates/language_list.htm

comment out (or remove) the line under the number 7

<!-- <legend>Tools</legend> -->

list_OK

2 bug.

editor

The solution to the problem

In file /usr/local/ispconfig/interface/web/admin/templates/language_edit.htm

Find the code starting at line number 7:

<fieldset id="wf_area_language_edit"><legend>Language File Edit: {tmpl_var name="file_path"}</legend> <span class="wf_oneField"> <tmpl_loop name="records"> <span class="wf_oneField"> <label for="records[{tmpl_var name="key"}]" class="wf_preField">{tmpl_var name="key"}</label> <div class="col-sm-9"><input class="form-control" type="text" id="records[{tmpl_var name="key"}]" name="records[{tmpl_var name="key"}]" value="{tmpl_var name='val'}" ></div></span> </tmpl_loop> </span> </fieldset>

and replace to this code:

<fieldset id="wf_area_language_edit"><legend>{tmpl_var name="module_txt"}: {tmpl_var name="file_path"}</legend> <span class="wf_oneField"> <tmpl_loop name="records"> <span class="wf_oneField"> <div class="col-sm-9"> <label for="records[{tmpl_var name="key"}]" class="wf_preField">{tmpl_var name="key"}</label> <input class="form-control" type="text" id="records[{tmpl_var name="key"}]" name="records[{tmpl_var name="key"}]" value="{tmpl_var name='val'}" > </div> </span> </tmpl_loop> </span> </fieldset>

editor_OK

3 bug.

ADD

The solution to the problem

In file /usr/local/ispconfig/interface/web/admin/templates/language_add.htm

comment out (or remove) the line under the number 7

<!-- <legend>Language Add</legend> -->

ADD_OK

4 bug.

Merge

The solution to the problem

In file /usr/local/ispconfig/interface/web/admin/templates/language_complete.htm

comment out (or remove) the line under the number 16

<!-- <legend>Language Complete</legend> -->

Merge_OK

5 bug.

Export

The solution to the problem

In file /usr/local/ispconfig/interface/web/admin/templates/language_export.htm

comment out (or remove) the line under the number 7

<!-- <legend>Language Export</legend> -->

export_OK

6 bug.

Import

The solution to the problem

In file /usr/local/ispconfig/interface/web/admin/templates/language_import.htm

comment out (or remove) the line under the number 7

<!-- <legend>Language Import</legend> -->

Import_OK