2016-08-09 07:37:25 -04:00
< ? php
/** @var \OCP\IL10N $l */
if ( OC_Util :: getEditionString () === '' ) : ?>
2015-02-09 10:01:52 -05:00
< p >
< ? php print_unescaped ( str_replace (
[
'{communityopen}' ,
'{githubopen}' ,
'{licenseopen}' ,
'{linkclose}' ,
],
[
2016-06-20 04:38:37 -04:00
'<a href="https://nextcloud.com/contribute" target="_blank" rel="noreferrer">' ,
2016-07-19 05:15:46 -04:00
'<a href="https://github.com/nextcloud" target="_blank" rel="noreferrer">' ,
2015-02-09 10:01:52 -05:00
'<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noreferrer">' ,
'</a>' ,
],
2016-08-09 07:37:25 -04: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 10:01:52 -05:00
)); ?>
</ p >
< ? php endif ; ?>