mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 23:20:35 -06:00
53 lines
2.0 KiB
Plaintext
53 lines
2.0 KiB
Plaintext
Menu="About"
|
|
Title="Credits"
|
|
Icon="icon-credits"
|
|
Tag="trophy"
|
|
---
|
|
**Unraid webGUI** Copyright © 2005-2023, [Lime Technology, Inc.](https://unraid.net/)
|
|
|
|
**Dynamix** Copyright © 2012-2023, Bergware International.
|
|
|
|
**Extended Docker Configuration Page** Copyright © 2014-2021, Guilherme Jardim.
|
|
|
|
**VM Manager** Copyright © 2015-2021, Eric Schultz, Derek Macias.
|
|
|
|
**APC UPS Configuration Page** Copyright © 2015, Dan Landon.
|
|
|
|
**Simple Features** Copyright © 2012, Andrew Hamer-Adams.
|
|
|
|
**SysDev UI** Copyright © 2020, Justin Nolan
|
|
|
|
**Community Applications** Copyright © 2015-2023, Andrew Zawadzki
|
|
|
|
**GUI Search** Copyright © 2021-2023, Andrew Zawadzki
|
|
|
|
The Software comprising the Unraid webGui, which is all files within this repository **except** for
|
|
files listed below, is licensed under GPL version 2.
|
|
|
|
* The Lime Technology and Unraid logos are property of Lime Technology, Inc.
|
|
and may not be used in any other project without written permission from Lime Technology, Inc.
|
|
|
|
* Settings, Tools and Case icons. Copyright © 2018-2020, [Magnus Engø.](http://www.magnusengo.net/) Used with permission.
|
|
|
|
**Unraid**® is a registered trademark of [Lime Technology, Inc.](https://unraid.net/)
|
|
|
|
This file shall be included in all copies or substantial portions of the Software.
|
|
|
|
<?
|
|
require_once "$docroot/plugins/dynamix.plugin.manager/include/PluginHelpers.php";
|
|
|
|
$plugins = '/var/log/plugins';
|
|
$credits = [];
|
|
|
|
foreach (glob("$plugins/lang-*.xml", GLOB_NOSORT) as $link) {
|
|
$xml_file = @readlink($link);
|
|
if ($xml_file === false) continue;
|
|
$lang = language('Language', $xml_file);
|
|
$local = language('LanguageLocal', $xml_file);
|
|
$author = language('Author', $xml_file);
|
|
$credits[] = "<li><p><i>$lang ($local)</i> translation by $author</p></li>";
|
|
}
|
|
if (count($credits)) echo '<br><b>Language Translations</b> Copyright © 2020-2023, <a href="https://unraid.net/">Lime Technology, Inc.</a><br><ul>'.implode('',$credits).'</ul>';
|
|
?>
|
|
<br><input type="button" value="_(Done)_" onclick="done()">
|