forked from friendica/friendica-directory
Add translation strings to statistics page
This commit is contained in:
parent
0c3013adeb
commit
2591f05fb5
|
@ -3,11 +3,17 @@ use \Friendica\Directory\Utils\L10n;
|
||||||
?>
|
?>
|
||||||
<h1><?php echo $this->__('Directory statistics') ?></h1>
|
<h1><?php echo $this->__('Directory statistics') ?></h1>
|
||||||
<h2><?php echo $this->__('Profiles') ?></h2>
|
<h2><?php echo $this->__('Profiles') ?></h2>
|
||||||
<p>This directory knows about <strong><?php echo L10n::formatNumber($stats['profile_queue']['total'])?> distinct potential profile URLs</strong>.</p>
|
<p><?php echo $this->__('This directory knows about <strong>%s distinct potential profile URLs</strong>.', L10n::formatNumber($stats['profile_queue']['total']))?></p>
|
||||||
<p>Out of those, there are <strong><?php echo L10n::formatNumber($stats['profile']['total'])?> URLs (<?php echo L10n::formatNumber($stats['profile']['ratio'], L10n::PERCENT)?>)</strong> that have been an opt-in profile URL at least once.</p>
|
<p><?php echo $this->__('Out of those, there are <strong>%s profiles (%s)</strong> that opted in the public directory at least once.',
|
||||||
<p>Out of those, there are <strong><?php echo L10n::formatNumber($stats['profile']['available']['total'])?> profiles (<?php echo L10n::formatNumber($stats['profile']['available']['ratio'], L10n::PERCENT)?>)</strong> that are currently available. <a href="/">Check them out!</a></p>
|
L10n::formatNumber($stats['profile']['total']),
|
||||||
|
L10n::formatNumber($stats['profile']['ratio'], L10n::PERCENT)
|
||||||
|
)?></p>
|
||||||
|
<p><?php echo $this->__('Out of those, there currently are <strong>%s available profiles (%s)</strong>. <a href="/">Check them out!</a>',
|
||||||
|
L10n::formatNumber($stats['profile']['available']['total']),
|
||||||
|
L10n::formatNumber($stats['profile']['available']['ratio'], L10n::PERCENT)
|
||||||
|
)?></p>
|
||||||
<h3><?php echo $this->__('Languages') ?></h3>
|
<h3><?php echo $this->__('Languages') ?></h3>
|
||||||
Out of <strong><?php echo L10n::formatNumber($stats['profile']['language']['total'])?></strong> profiles reporting their language there are:
|
<p><?php echo $this->__('Out of <strong>%s</strong> profiles reporting their language there are:', L10n::formatNumber($stats['profile']['language']['total']))?></p>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($stats['profile']['languages'] as $language):?>
|
<?php foreach($stats['profile']['languages'] as $language):?>
|
||||||
<li>
|
<li>
|
||||||
|
@ -18,27 +24,36 @@ Out of <strong><?php echo L10n::formatNumber($stats['profile']['language']['tota
|
||||||
<?php endforeach;?>
|
<?php endforeach;?>
|
||||||
</ul>
|
</ul>
|
||||||
<h2><?php echo $this->__('Servers') ?></h2>
|
<h2><?php echo $this->__('Servers') ?></h2>
|
||||||
<p>This directory knows about <strong><?php echo L10n::formatNumber($stats['server_queue']['total'])?> distinct potential server URLs</strong>.</p>
|
<p><?php echo $this->__('This directory knows about <strong>%s distinct potential server URLs</strong>.', L10n::formatNumber($stats['server_queue']['total']))?></p>
|
||||||
<p>Out of those, there are <strong><?php echo L10n::formatNumber($stats['server']['total'])?> domains (<?php echo L10n::formatNumber($stats['server']['ratio'], L10n::PERCENT)?>)</strong> that have been a server at least once.</p>
|
<p><?php echo $this->__('Out of those, there are <strong>%s domains (%s)</strong> that have been a Friendica server at least once.',
|
||||||
<p>Out of those, there are :</p>
|
L10n::formatNumber($stats['server']['total']),
|
||||||
|
L10n::formatNumber($stats['server']['ratio'], L10n::PERCENT))
|
||||||
|
?></p>
|
||||||
|
<p><?php echo $this->__('Out of those, there are:')?></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong><?php echo L10n::formatNumber($stats['server']['available']['total'])?> servers (<?php echo L10n::formatNumber($stats['server']['available']['ratio'], L10n::PERCENT)?>%)</strong> that are currently available.</li>
|
<li><?php echo $this->__('<strong>%s available servers (%s)</strong>',
|
||||||
<li><strong><?php echo L10n::formatNumber($stats['server']['open']['total'])?> public servers (<?php echo L10n::formatNumber($stats['server']['open']['ratio'], L10n::PERCENT)?>%)</strong> currently open for registration. <a href="/servers">Check them out!</a></li>
|
L10n::formatNumber($stats['server']['available']['total']),
|
||||||
|
L10n::formatNumber($stats['server']['available']['ratio'], L10n::PERCENT)
|
||||||
|
)?></li>
|
||||||
|
<li><?php echo $this->__('<strong>%s public servers (%s)</strong> currently open for registration. <a href="/servers">Check them out!</a>',
|
||||||
|
L10n::formatNumber($stats['server']['open']['total']),
|
||||||
|
L10n::formatNumber($stats['server']['open']['ratio'], L10n::PERCENT)
|
||||||
|
)?></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3><?php echo $this->__('Languages') ?></h3>
|
<h3><?php echo $this->__('Languages') ?></h3>
|
||||||
Out of <strong><?php echo L10n::formatNumber($stats['server']['language']['total'])?></strong> servers reporting their language there are:
|
<p><?php echo $this->__('Out of <strong>%s</strong> servers reporting their language there are:', L10n::formatNumber($stats['server']['language']['total']))?></p>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($stats['server']['languages'] as $language):?>
|
<?php foreach($stats['server']['languages'] as $language):?>
|
||||||
<li>
|
<li>
|
||||||
<strong><?php echo L10n::formatNumber($language['total'])?></strong>
|
<strong><?php echo L10n::formatNumber($language['total'])?></strong>
|
||||||
<?php echo empty($language['language']) ? 'N/A' : L10n::localeToLanguageString($language['language'])?>
|
<?php echo L10n::localeToLanguageString($language['language'])?>
|
||||||
(<?php echo L10n::formatNumber($language['ratio'], L10n::PERCENT)?>)
|
(<?php echo L10n::formatNumber($language['ratio'], L10n::PERCENT)?>)
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach;?>
|
<?php endforeach;?>
|
||||||
</ul>
|
</ul>
|
||||||
<h3><?php echo $this->__('Versions') ?></h3>
|
<h3><?php echo $this->__('Versions') ?></h3>
|
||||||
Out of <strong><?php echo L10n::formatNumber($stats['server']['version']['total'])?></strong> servers reporting their version there are:
|
<p><?php echo $this->__('Out of <strong>%s</strong> servers reporting their version there are:', L10n::formatNumber($stats['server']['version']['total']))?></p>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($stats['server']['versions'] as $version):?>
|
<?php foreach($stats['server']['versions'] as $version):?>
|
||||||
<li>
|
<li>
|
||||||
|
|
Loading…
Reference in a new issue