Перейти к содержанию

venior

Пользователи
  • Постов

    22
  • Зарегистрирован

  • Посещение

Сообщения, опубликованные venior

  1. 3 часа назад, SlawkA сказал:

    лови

      Скрыть контент
    
    
    {{if $forum->can('view')}}
    {{$lastPost = $forum->lastPost();}}
    	<li class="cForumRow ipsDataItem ipsDataItem_responsivePhoto {{if \IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}ipsDataItem_unread{{endif}} ipsClearfix" data-forumID="{$forum->_id}">
    		<div class="ipsDataItem_icon ipsDataItem_category">
    			{{if !$forum->redirect_on}}
    			{{if \IPS\forums\Topic::containerUnread( $forum ) AND \IPS\Member::loggedIn()->member_id}}<a href="{{if $isSubForum}}{$forum->url()->setQueryString( array( 'do' => 'markRead', 'return' => $forum->parent_id ) )->csrf()}{{else}}{$forum->url()->setQueryString( 'do', 'markRead' )->csrf()}{{endif}}" data-action='markAsRead' title='{lang="mark_forum_read"}' data-ipsTooltip>{{endif}}
    			{{endif}}
    				{{if $forum->icon}}
    					<img src="{file="$forum->icon" extension="forums_Icons"}" class='ipsItemStatus ipsItemStatus_custom {{if !\IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}ipsItemStatus_read{{endif}}'>
    				{{else}}
    					{{if $forum->redirect_on}}
    						<span class='ipsItemStatus ipsItemStatus_large cForumIcon_redirect {{if !\IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}ipsItemStatus_read{{endif}}' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}>
    						{{foreach explode(',',theme.volpe_fn_redirect_icon) as $key => $icon}}
    							<i class='fa fa-{$icon}'></i>
    						{{endforeach}}
    						</span>
    					{{elseif $forum->forums_bitoptions['bw_enable_answers']}}
    						<span class='ipsItemStatus ipsItemStatus_large cForumIcon_answers {{if !\IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}ipsItemStatus_read{{endif}}' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}>
    						{{foreach explode(',',theme.volpe_fn_question_icon) as $key => $icon}}
    							<i class='fa fa-{$icon}'></i>
    						{{endforeach}}
    						</span>
    					{{elseif $forum->password}}
    						<span class='ipsItemStatus ipsItemStatus_large cForumIcon_password {{if !\IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}ipsItemStatus_read{{endif}}' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}>
    							{{if $forum->loggedInMemberHasPasswordAccess()}}
    								{{foreach explode(',',theme.volpe_fn_unlock_icon) as $key => $icon}}
    									<i class='fa fa-{$icon}'></i>
    								{{endforeach}}
    							{{else}}
    								{{foreach explode(',',theme.volpe_fn_lock_icon) as $key => $icon}}
    									<i class='fa fa-{$icon}'></i>
    								{{endforeach}}
    							{{endif}}
    						</span>
    					{{else}}
    						<span class='ipsItemStatus ipsItemStatus_large cForumIcon_normal {{if !\IPS\forums\Topic::containerUnread( $forum ) && !$forum->redirect_on}}ipsItemStatus_read{{endif}}' {template="formattedInlineStyle" params="$forum" app="core" group="global" location="front"}>
    						{{foreach explode(',',theme.volpe_fn_discussion_icon) as $key => $icon}}
    							<i class='fa fa-{$icon}'></i>
    						{{endforeach}}
    						</span>
    					{{endif}}
    				{{endif}}
    			{{if !$forum->redirect_on and \IPS\forums\Topic::containerUnread( $forum ) AND \IPS\Member::loggedIn()->member_id}}
    			</a>
    			{{endif}}
    		</div>
    		<div class="ipsDataItem_main">
    			<h4 class="ipsDataItem_title ipsType_large ipsType_break">
    				{{if $forum->password && !$forum->loggedInMemberHasPasswordAccess()}}
    					<a href="{$forum->url()->setQueryString( 'passForm', '1' )}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="forum_requires_password" sprintf="$forum->_title"}'>{$forum->_title}</a>
    				{{else}}
    					<a href="{$forum->url()}">{$forum->_title}</a>
    				{{endif}}
    				{{if $forum->redirect_on}}
    					&nbsp;&nbsp;<span class='ipsType_light ipsType_medium'>({lang="redirect_hits" pluralize="$forum->redirect_hits"})</span>
    				{{endif}}
    			</h4>
    			{{if $forum->hasChildren()}}
    				<ul class="ipsDataItem_subList ipsList_inline">
    					{{foreach $forum->children() as $subforum}}
    						<li class="{{if \IPS\forums\Topic::containerUnread( $subforum )}}ipsDataItem_unread{{endif}}">
    							<a href="{$subforum->url()}">{$subforum->_title}</a>
    						</li>
    					{{endforeach}}
    				</ul>
    			{{endif}}
    			{{if $forum->description}}
    				<div class="ipsDataItem_meta ipsType_richText ipsContained">{$forum->description|raw}</div>
    			{{endif}}
    		</div>
    		{{if !$forum->redirect_on}}
    			<div class="ipsDataItem_stats ipsDataItem_statsLarge">
    				{{if $lastPost}}
    					{{if theme.volpe_forumrow_show_posts or theme.volpe_forumrow_show_topics}}
    						{{if theme.volpe_forumrow_show_topics}}
    						<dl>
    							<dt>{{if $forum->hasChildren()}}{{$cSubTopics = 0;}}{{foreach $forum->children() as $subforum}}{{$cSubTopics += $subforum->topics;}}{{endforeach}}{{$cTopics = $forum->topics + 	$cSubTopics;}}{number="$cTopics"}{{else}}{{$cTopics = $forum->topics;}}{number="$cTopics"}{{endif}}</dt><br>
    							<dd class="ipsDataItem_stats_type ipsType_light">{lang="Тем" pluralize="$cTopics"}</dd>
    						</dl>
    						{{endif}}
    						{{if theme.volpe_forumrow_show_posts}}
    						<dl>
    							{{$count = \IPS\forums\Topic::contentCount( $forum, TRUE );}}
    							<dt>{number="$count"}</dt><br>
    							<dd class="ipsDataItem_stats_type ipsType_light">{lang="Сообщений" pluralize="$count"}</dd>
    						</dl>
    						{{endif}}
    					{{endif}}
    				{{endif}}
    				{{if \IPS\forums\Topic::modPermission( 'unhide', NULL, $forum ) AND $unapprovedContent = $forum->unapprovedContentRecursive() and ( $unapprovedContent['topics'] OR $unapprovedContent['posts'] )}}
    					<strong class='ipsType_warning ipsType_medium'>
    						<i class='fa fa-warning'></i>
    						{{if $unapprovedContent['topics']}}
    							<a href='{$forum->url()->setQueryString( array( 'advanced_search_submitted' => 1, 'topic_type' => 'queued_topics' ) )->csrf()}' data-ipsTooltip title='{lang="queued_topics_badge" pluralize="$unapprovedContent['topics']"}' class='ipsType_blendLinks'>{$unapprovedContent['topics']}</a>
    						{{else}}
    							<span class='ipsType_light'>0</span>
    						{{endif}}
    						/
    						{{if $unapprovedContent['posts']}}
    							<a href='{$forum->url()->setQueryString( array( 'advanced_search_submitted' => 1, 'topic_type' => 'queued_posts' ) )->csrf()}' data-ipsTooltip title='{lang="queued_posts_badge" pluralize="$unapprovedContent['posts']"}' class='ipsType_blendLinks'>{$unapprovedContent['posts']}</a>
    						{{else}}
    							<span class='ipsType_light'>0</span>
    						{{endif}}
    					</strong>
    				{{endif}}
    			</div>
    			<ul class="ipsDataItem_lastPoster ipsDataItem_withPhoto">
    				{{if $lastPost}}
    					<li>{template="userPhoto" app="core" group="global" params="$lastPost['author'], 'tiny'"}</li>
    					{{if $lastPost['topic_title']}}<li><a href="{$lastPost['topic_url']->setQueryString( 'do', 'getNewComment' )}" title='{$lastPost['topic_title']}'>{truncate="$lastPost['topic_title']" length="26"}</a></li>{{endif}}
    					<li class='ipsType_blendLinks'>{lang="byline_nodate" htmlsprintf="$lastPost['author']->link()"}</li>
    					{{if $lastPost['topic_title']}}
    						<li class="ipsType_light"><a href='{$lastPost['topic_url']->setQueryString( 'do', 'getLastComment' )}' title='{lang="get_last_post"}' class='ipsType_blendLinks'>{datetime="$lastPost['date']"}</a></li>
    					{{else}}
    						<li class="ipsType_light">{datetime="$lastPost['date']"}</li>
    					{{endif}}
    				{{else}}
    					<li class='ipsType_light ipsResponsive_showDesktop'>{{if $forum->password}}{lang="no_forum_posts_password"}{{else}}{lang="no_forum_posts"}{{endif}}</li>
    				{{endif}}
    			</ul>	
    		{{endif}}
    		{{if $table and $table->canModerate()}}
    			<div class='ipsDataItem_modCheck'>
    				<span class='ipsCustomInput'>
    					<input type='checkbox' data-role='moderation' name="moderate[{$forum->_id}]" data-actions="{expression="implode( ' ', $table->multimodActions( $forum ) )"}" data-state=''>
    					<span></span>
    				</span>
    			</div>
    		{{endif}}
    	</li>
    {{endif}}

     

    если что то код меняй вот здесь.

    1.png.ba1c7967f81aae0527968829c8f8ab6e.png

    что за ошибка

    Screenshot_5.png

  2. 1 минуту назад, venior сказал:

    как вернуть стандартные фукнкций , заново загрузил русификатор не поможет что делать?

    Screenshot_4.png

    ух все в местах все тему можно закрывать))) сделал через менеджер меню

    Screenshot_5.png

    40 минут назад, DiGiTaL сказал:

    Как по мне то переводить легче так ! скачайте русский язык и переводите сам файл Русский (RU).xml
    59f20f5b7b349_4.thumb.PNG.3ad286fff9b5831e5ea5fb3714778563.PNG

    можещь подсказать редакторы xml  я редактирую через notepad++ в нем не удобно

  3. Привет всем, у меня такая проблема хотел переводит сайт на казахский язык и переведил несколько слов для тестирование и потом загянив сайт которые переведенные словы исчезли , вопрос как переводит сайт на иностранные языки (в том числе на казахский)

    Screenshot_2.png

    Screenshot_3.png

    или чтобы работала новый язык надо переводить всю  сайт?

×
×
  • Создать...