Vier: Now the language of a post is shown

This commit is contained in:
Michael Vogel 2012-12-27 01:05:59 +01:00
parent 5bc6896671
commit 763504f0d5
4 changed files with 35 additions and 16 deletions

View File

@ -212,6 +212,11 @@ class Item extends BaseObject {
localize_item($item);
if ($item["postopts"]) {
$langdata = explode(";", $item["postopts"]);
$langstr = substr($langdata[0], 5)." (".round($langdata[1]*100, 1)."%)";
}
$body = prepare_body($item,true);
list($categories, $folders) = get_cats_and_terms($item);
@ -268,7 +273,8 @@ class Item extends BaseObject {
'comment' => $this->get_comment_box($indent),
'previewing' => ($conv->is_preview() ? ' preview ' : ''),
'wait' => t('Please wait'),
'thread_level' => $thread_level
'thread_level' => $thread_level,
'postopts' => $langstr
);
$arr = array('item' => $item, 'output' => $tmp_item);

View File

@ -17,11 +17,12 @@
</ul>
</div>
{{ else }}
<div class="profile-edit-side-div"><a class="profile-edit-side-link icon edit" title="$editprofile" href="profiles/$profid" ></a></div>
{{ endif }}
</div>
<div id="profile-photo-wrapper"><img class="photo" src="$profile.photo?rev=$profile.picdate" alt="$profile.name" /></div>
{{ if $pdesc }}<div class="title">$profile.pdesc</div>{{ endif }}

View File

@ -1067,8 +1067,9 @@ border-bottom: 1px solid #D2D2D2;
text-align: left;
width: 80px;
}
.wall-item-container .wall-item-location {
padding-right: 40px;
.wall-item-container {
/* padding-right: 30px; */
padding-right: 0px;
}
.wall-item-container .wall-item-ago {
word-wrap: break-word;
@ -1077,7 +1078,7 @@ border-bottom: 1px solid #D2D2D2;
color: #999;
}
.wall-item-location {
width: 180px;
width: 350px;
float: left;
}
@ -1282,6 +1283,10 @@ border-bottom: 1px solid #D2D2D2;
height: 100px;
}
#profile-jot-perms {
float: right;
}
#jot-preview-content {
padding-top: 25px;
}
@ -1816,10 +1821,15 @@ div.pager, .birthday-notice, ul.tabs a, #jot-preview-link, .comment-edit-submit-
}
.profile-edit-side-div {
display: none;
/* float: right; */
/* display: none; */
float: right;
}
/* aside div.clear {
clear: none;
float: left;
} */
#register-form label,
#profile-edit-form label {
width: 300px; float: left;

View File

@ -111,7 +111,7 @@
<a href="#" id="filer-$item.id" onclick="itemFiler($item.id); return false;" class="filer-item filer-icon" title="$item.filer"><i class="icon-folder-close icon-large"></i></a>
{{ endif }}
</div>
<div class="wall-item-location">$item.location</div>
<div class="wall-item-location">$item.location $item.postopts</div>
<div class="wall-item-actions-tools">
{{ if $item.drop.pagedrop }}
@ -128,14 +128,16 @@
</div>
</div>
<div class="wall-item-bottom">
<div class="wall-item-links"></div>
<div class="wall-item-links">
</div>
<div class="wall-item-like" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
</div>
{{ if $item.threaded }}{{ if $item.comment }}
<div class="wall-item-bottom">
<div class="wall-item-links"></div>
<div class="wall-item-links">
</div>
<div class="wall-item-comment-wrapper" id="item-comments-$item.id" style="display: none;">
$item.comment
</div>