mirror of
https://github.com/unraid/webgui.git
synced 2026-01-25 11:09:03 -06:00
39 lines
1.7 KiB
Plaintext
39 lines
1.7 KiB
Plaintext
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 <i>{$credits['language']}</i>, provided by <b>{$credits['name']}</b>.<br><br>";
|
|
}
|
|
if (count($translations)) echo '<br><b>Language Translations</b><br>--------------------------<br>'.implode('',$translations);
|
|
?>
|
|
<br><input type="button" value="_(Done)_" onclick="done()">
|