aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-03-18 11:02:42 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-03-18 11:02:42 +0100
commit7df8e18dd1917de9df359094e0ff486f47e4a08d (patch)
tree86a6521cd5d20947b524f239d36a02350e7cfdb8 /boot.php
parentd6b4940ddda4c9ac5cf4728a77a8bbf0d4c4ddf9 (diff)
downloadvolse-hubzilla-7df8e18dd1917de9df359094e0ff486f47e4a08d.tar.gz
volse-hubzilla-7df8e18dd1917de9df359094e0ff486f47e4a08d.tar.bz2
volse-hubzilla-7df8e18dd1917de9df359094e0ff486f47e4a08d.zip
Update more strings
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/boot.php b/boot.php
index 19c6d8878..ac57d1e51 100644
--- a/boot.php
+++ b/boot.php
@@ -1828,10 +1828,14 @@ if(! function_exists('format_like')) {
function format_like($cnt,$arr,$type,$id) {
$o = '';
if($cnt == 1)
- $o .= $arr[0] . (($type === 'like') ? t(' likes this.') : t(' doesn\'t like this.')) . EOL ;
+ $o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
else {
- $o .= '<span class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');" >'
- . $cnt . ' ' . t('people') . '</span> ' . (($type === 'like') ? t('like this.') : t('don\'t like this.')) . EOL ;
+ $spanatts = 'class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');"';
+ $o .= (($type === 'like') ?
+ sprintf( t('<span %1$s>%2$d people</span> like this.'), $spanatts, $cnt)
+ :
+ sprintf( t('<span %1$s>%2$d people</span> don\'t like this.'), $spanatts, $cnt) );
+ $o .= EOL ;
$total = count($arr);
if($total >= MAX_LIKERS)
$arr = array_slice($arr, 0, MAX_LIKERS - 1);
@@ -1839,8 +1843,8 @@ function format_like($cnt,$arr,$type,$id) {
$arr[count($arr)-1] = t('and') . ' ' . $arr[count($arr)-1];
$str = implode(', ', $arr);
if($total >= MAX_LIKERS)
- $str .= t(', and ') . $total - MAX_LIKERS . t(' other people');
- $str .= (($type === 'like') ? t(' like this.') : t(' don\'t like this.'));
+ $str .= sprintf( t(', and %d other people'), $total - MAX_LIKERS );
+ $str = (($type === 'like') ? sprintf( t('%s like this.'), $str) : sprintf( t('%s don\'t like this.'), $str));
$o .= "\t" . '<div id="' . $type . 'list-' . $id . '" style="display: none;" >' . $str . '</div>';
}
return $o;