Menu="About"
Title="Credits"
Icon="icon-credits"
Tag="trophy"
---
**Unraid webGUI** Copyright © 2005-2019, [Lime Technology, Inc.](http://lime-technology.com).
**Dynamix** Copyright © 2012-2019, Bergware International.
**Extended Docker Configuration Page** Copyright © 2014-2017, Guilherme Jardim.
**VM Manager** Copyright © 2015-2019, Eric Schultz, Derek Macias.
**APC UPS Configuration Page** Copyright © 2015, Dan Landon.
**Simple Features** Copyright © 2012, Andrew Hamer-Adams.
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-2019, [Magnus Engø](http://www.magnusengo.net/). Used with permission.
**Unraid**® is a registered trademark of [Lime Technology, Inc.](http://lime-technology.com).
This file shall be included in all copies or substantial portions of the Software.
$translations = [];
foreach (glob("$docroot/languages/*",GLOB_ONLYDIR) as $lang) {
if (file_exists("$lang/credits")) $credits = parse_ini_file("$lang/credits",false,INI_SCANNER_RAW);
if (isset($credits['name']) && isset($credits['language']) && $credits['name']!='NAME' && $credits['language']!='LANGUAGE') $translations[] = "Language translations to {$credits['language']}, provided by {$credits['name']}.
";
}
if (count($translations)) echo '
Language Translations
--------------------------
'.implode('',$translations);
?>