2016-08-09 14:37:25 +03:00
< ? php
/** @var \OCP\IL10N $l */
if ( OC_Util :: getEditionString () === '' ) : ?>
2015-02-09 18:01:52 +03:00
< p >
< ? php print_unescaped ( str_replace (
[
'{communityopen}' ,
'{githubopen}' ,
'{licenseopen}' ,
'{linkclose}' ,
],
[
2016-06-20 11:38:37 +03:00
'<a href="https://nextcloud.com/contribute" target="_blank" rel="noreferrer">' ,
2016-07-19 12:15:46 +03:00
'<a href="https://github.com/nextcloud" target="_blank" rel="noreferrer">' ,
2015-02-09 18:01:52 +03:00
'<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noreferrer">' ,
'</a>' ,
],
2016-08-09 14:37:25 +03:00
$l -> t ( 'Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.' )
2015-02-09 18:01:52 +03:00
)); ?>
</ p >
< ? php endif ; ?>