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

Casp3R

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

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

  • Посещение

Активность репутации

  1. Лайк
    Casp3R получил реакцию от guano в Русский язык для IP.Board   
    Название: Русский язык для IP.Board
    Добавил: Casp3R
    Добавлен: 14 Ноя 2012
    Категория: Локализация IP.Board

    Полностью русский перевод для версии IPB 3.3.4


  2. Лайк
    Casp3R получил реакцию от Dronza в Русский язык для IP.Board   
    Название: Русский язык для IP.Board
    Добавил: Casp3R
    Добавлен: 14 Ноя 2012
    Категория: Локализация IP.Board

    Полностью русский перевод для версии IPB 3.3.4


  3. Лайк
    Casp3R отреагировална пост Respected в Дополнительные поля профиля   
    userInfoPane в глобальных
    Код дополнительных полей:


    <ul class='custom_fields'>
    <foreach loop="customFieldsOuter:$author['custom_fields'] as $group => $data">
    <foreach loop="customFields:$author['custom_fields'][ $group ] as $field">
    <if test="$field != ''">
    <li>
    {$field}
    </li>
    </if>
    </foreach>
    </foreach>
    </ul>
    [/CODE]
  4. Лайк
    Casp3R отреагировална пост Respected в Как отключить "Быстрый ответ" в теме?   
    Отредактировать шаблон Темы --> topicViewTemplate
    Найти:


    <if test="fastReply:|:$displayData['fast_reply'] && $displayData['reply_button']['url']">
    <hr />
    <div class='ipsBox' id='fast_reply_wrapper'>
    <div class='ipsBox_container ipsPad'>
    <h1 class='ipsType_subtitle'>{$this->lang->words['topic_add_reply']}</h1>
    <if test="isLockedFR:|:$topic['state'] == 'closed'"><span class='error'>{$this->lang->words['locked_reply_fr']}</span><br /></if>
    <br />
    <if test="isMember:|:$this->memberData['member_id']">
    <a href="{parse url="showuser={$this->memberData['member_id']}" seotitle="{$this->memberData['members_seo_name']}" template="showuser" base="public"}" title='{$this->lang->words['your_profile']}' class='ipsUserPhotoLink left'><img src='{$this->memberData['pp_small_photo']}' alt="{parse expression="sprintf($this->lang->words['users_photo'],$this->memberData['members_display_name'])"}" class='ipsUserPhoto ipsUserPhoto_medium' /></a>
    <else />
    <div class='left'>{IPSMember::buildNoPhoto(0, 'small' )}</div>
    </if>
    <div class='ipsBox_withphoto clearfix'>
    <form action="{parse url="" base="public"}" method="post" id='ips_fastReplyForm'>
    <input type="hidden" name="app" value="forums" />
    <input type="hidden" name="module" value="post" />
    <input type="hidden" name="section" value="post" />
    <input type="hidden" name="do" value="reply_post_do" />
    <input type="hidden" name="f" value="{$forum['id']}" />
    <input type="hidden" name="t" value="{$topic['tid']}" />
    <input type="hidden" name="st" value="{$this->request['st']}" />
    <input type="hidden" name="auth_key" value="{$this->member->form_hash}" />
    <input type="hidden" name="fast_reply_used" value="1" />
    <input type="hidden" name="enableemo" value="yes" />
    <input type="hidden" name="enablesig" value="yes" />
    <if test="$this->memberData['auto_track']">
    <input type="hidden" name="enabletrack" value="1" />
    <else />
    <input type="hidden" name="enabletrack" value="{$topic['_isLiked']}" />
    </if>
    <if test="is_array($topic['_fastReplyStatusMessage']) AND count($topic['_fastReplyStatusMessage']) AND strlen($topic['_fastReplyStatusMessage'][0])">
    <div class='message'>{parse expression="implode( '<br />', $topic['_fastReplyStatusMessage'] )"}</div>
    </if>
    {parse editor="Post" options="array( 'type' => 'full', 'minimize' => 1, 'isTypingCallBack' => 'ipb.topic.isTypingCallBack', 'height' => 180, 'legacyMode' => 'off', 'autoSaveKey' => 'reply-' . $topic[tid], 'warnInfo' => 'fastReply', 'modAll' => $topic['_fastReplyModAll'] )"}
    <br />

    <fieldset class='right' id='fast_reply_controls'>
    <input type='submit' name="submit" class='input_submit' value='{$this->lang->words['qr_post']}' tabindex='50' accesskey='s' id='submit_post' />&nbsp;&nbsp;<input type='submit' name="preview" class='input_submit alt' value='{$this->lang->words['qr_more_opts']}' tabindex='51' id='full_compose' />
    </fieldset>
    </form>
    </div>
    <div id='ips_HasReplies'></div>
    </div>
    </div>
    <script type='text/javascript'>
    ipb.topic.fastReplyId = '{$this->settings['_lastEditorId']}';
    </script>
    <else />
    <if test="loadJsManually:|:$displayData['load_editor_js']">
    {parse template="editorLoadJs" group="editors" params="array( 'smilies' => $displayData['smilies'] )"}
    </if>
    </if>
    Заменить на:
    <if test="fastReply:|:$displayData['fast_reply'] && $displayData['reply_button']['url']">
    <hr />
    <div class='ipsBox' id='fast_reply_wrapper'>
    <div class='ipsBox_container ipsPad'>
    <h1 class='ipsType_subtitle'>{$this->lang->words['topic_add_reply']}</h1>
    <if test="isLockedFR:|:$topic['state'] == 'closed'"><span class='error'>{$this->lang->words['locked_reply_fr']}</span><br /></if>
    <br />
    <if test="isMember:|:$this->memberData['member_id']">
    <a href="{parse url="showuser={$this->memberData['member_id']}" seotitle="{$this->memberData['members_seo_name']}" template="showuser" base="public"}" title='{$this->lang->words['your_profile']}' class='ipsUserPhotoLink left'><img src='{$this->memberData['pp_small_photo']}' alt="{parse expression="sprintf($this->lang->words['users_photo'],$this->memberData['members_display_name'])"}" class='ipsUserPhoto ipsUserPhoto_medium' /></a>
    <else />
    <div class='left'>{IPSMember::buildNoPhoto(0, 'small' )}</div>
    </if>
    <div class='ipsBox_withphoto clearfix'>
    <form action="{parse url="" base="public"}" method="post" id='ips_fastReplyForm'>
    <input type="hidden" name="app" value="forums" />
    <input type="hidden" name="module" value="post" />
    <input type="hidden" name="section" value="post" />
    <input type="hidden" name="do" value="reply_post_do" />
    <input type="hidden" name="f" value="{$forum['id']}" />
    <input type="hidden" name="t" value="{$topic['tid']}" />
    <input type="hidden" name="st" value="{$this->request['st']}" />
    <input type="hidden" name="auth_key" value="{$this->member->form_hash}" />
    <input type="hidden" name="fast_reply_used" value="1" />
    <input type="hidden" name="enableemo" value="yes" />
    <input type="hidden" name="enablesig" value="yes" />

    <fieldset class='right' id='fast_reply_controls'>
    <input type='submit' name="preview" class='input_submit alt' value='{$this->lang->words['qr_more_opts']}' tabindex='51' id='full_compose' />
    </fieldset>
    </form>
    </div>
    <div id='ips_HasReplies'></div>
    </div>
    </div>
    <script type='text/javascript'>
    ipb.topic.fastReplyId = '{$this->settings['_lastEditorId']}';
    </script>
    <else />
    <if test="loadJsManually:|:$displayData['load_editor_js']">
    {parse template="editorLoadJs" group="editors" params="array( 'smilies' => $displayData['smilies'] )"}
    </if>
    </if>
    [/code]
  5. Лайк
    Casp3R отреагировална пост podvorie в Tutorials 1.4.2   
    От 1.4.1 подходит. Два слова останутся если правильно помню
  6. Лайк
    Casp3R отреагировална пост Respected в [IPBForumskins] Concise 3.3.x Original   
    Glava,это что за блок такой?
  7. Лайк
    Casp3R отреагировална пост Respected в [IPBForumskins] Concise 3.3.x Original   
    Открыть шаблон Board Index --> boardIndexTemplate
    Найти и удалить оба раза:


    title='{$forum_data['name']}'
    [/CODE]
  8. Лайк
    Casp3R отреагировална пост Respected в [IPBForumskins] Concise 3.3.x Original   
    Повнимательней пожалуйста. Ты удаляешь


    {$forum_data['name']}
    А нужно:
    title='{$forum_data['name']}'
    [/code]
  9. Лайк
    Casp3R отреагировална пост Respected в [IPBFocus.com] Navia 3.4.6   
    globalTemplate, рядом с копирайтами форума.
  10. Лайк
    Casp3R получил реакцию от Respected в Русский язык для IP.Board   
    Название: Русский язык для IP.Board
    Добавил: Casp3R
    Добавлен: 14 Ноя 2012
    Категория: Локализация IP.Board

    Полностью русский перевод для версии IPB 3.3.4


  11. Лайк
    Casp3R отреагировална пост _Dark_ в Проблема при установке вашего дистрибутива IPB 3.3.3   
    Удаляете базу данных, создаете новую в кодировке utf8_general_ci и устанавливаете форум в нее.
  12. Лайк
    Casp3R отреагировална пост pharaon в Проблема при установке вашего дистрибутива IPB 3.3.3   
    на шведскую кодировку ругается

    Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE)
  13. Лайк
    Casp3R отреагировална пост Respected в Помогите с жуками??   
    Пользователи --> Дополнительные поля --> Добавить поле
×
×
  • Создать...