• 06-12-2014, 14:57:45
    #1
    Üyeliği durduruldu
    arkadaşlar temanın adı ribon ücretsiz bişey

    po ve mo ile temayı türkçeleştirdim bazı yerleri oraadan yapamadım.

    http://prntscr.com/5dslex

    Burada 0 comments diyor.

    http://prntscr.com/5dslha

    Buda sidebardaki kısım orasıda o şekilde kaldı.

    Ama bunların hepsini türkçe yapabilen olmuş.

    www.emrekidir.com.tr sitesine girip bakabilirsiniz. Orada bu deidğim yerlerde dahil olmak üzere hepsi türkçe olmuş.

    Ben bu kısımları nasıl türkçe yapabilirim?
  • 06-12-2014, 15:01:10
    #2
    Üyeliği durduruldu
    comments.php ve sidebar.php dosyalarından yapacaksınız onları
  • 06-12-2014, 15:01:35
    #3
    comments.php ye baktınız mı hocam ?
    örneğin bende ki tema da bu şekilde;
    Alıntı
    <h5 class="nocomments"><?php _e( 'Yorum yok :s.', ); ?></h5><?php }
    burada yorum yok olan kısım , 0 comments idi.
  • 06-12-2014, 15:04:08
    #4
    Üyeliği durduruldu
    Pandaros adlı üyeden alıntı: mesajı görüntüle
    comments.php ve sidebar.php dosyalarından yapacaksınız onları
    comments.php

    <?php
     
    // Do not delete these lines
    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
    die ('Please do not load this page directly. Thanks!');
     
    if ( post_password_required() ) { ?>
    <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
    <?php
    return;
    }
    ?>
    <!-- You can start editing here. -->
    <?php if ( have_comments() ) : ?>
    <div class="total-comments"><h4><?php comments_number('No Responses', 'Comments', 'Comments' );?></h4></div>
    <div id="comments">
    	<ol class="commentlist">
    		<div class="navigation">
    			<div class="alignleft"><?php previous_comments_link() ?></div>
    			<div class="alignright"><?php next_comments_link() ?></div>
    		</div>
    		<?php wp_list_comments('type=comment&callback=mytheme_comment'); ?>
    		<div class="navigation">
    			<div class="alignleft"><?php previous_comments_link() ?></div>
    			<div class="alignright"><?php next_comments_link() ?></div>
    		</div>
    	</ol>
    </div>
    <?php else : // this is displayed if there are no comments so far ?>
    	<?php if ('open' == $post->comment_status) : ?>
    	<!-- If comments are open, but there are no comments. -->
    	<?php else : // comments are closed ?>
    		<!-- If comments are closed. -->
    		<p class="nocomments"></p>
    	<?php endif; ?>
    <?php endif; ?>
    <?php if ('open' == $post->comment_status) : ?>
    <div id="commentsAdd">
    	<div id="respond" class="box m-t-6">
    		<?php comment_form(); ?>
    	</div>
    </div>
    <?php endif; // if you delete this the sky will fall on your head ?>
    sidebar.php

    <aside class="sidebar c-4-12">
    	<div id="sidebars" class="g">
    		<div class="sidebar">
    			<ul class="sidebar_list">
    				<?php if ( ! dynamic_sidebar( 'Sidebar' )) : ?>
    					<li id="sidebar-search" class="widget">
    						<h3><?php _e('Search', 'mythemeshop'); ?></h3>
    						<?php get_search_form(); ?>
    					</li>
    					<li id="sidebar-archives" class="widget">
    						<h3><?php _e('Archives', 'mythemeshop') ?></h3>
    						<ul>
    							<?php wp_get_archives( 'type=monthly' ); ?>
    						</ul>
    					</li>
    					<li id="sidebar-meta" class="widget">
    						<h3><?php _e('Meta', 'mythemeshop') ?></h3>
    						<ul>
    							<?php wp_register(); ?>
    							<li><?php wp_loginout(); ?></li>
    							<?php wp_meta(); ?>
    						</ul>
    					</li>
    				<?php endif; ?>
    			</ul>
    		</div>
    	</div><!--sidebars-->
    </aside>
    Hocam ben bulamadım birde siz bakarmısınız?
  • 06-12-2014, 15:07:25
    #5
    Üyeliği durduruldu
    <?php

    // Do not delete these lines
    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
    die ('Please do not load this page directly. Thanks!');

    if ( post_password_required() ) { ?>
    <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
    <?php
    return;
    }
    ?>
    <!-- You can start editing here. -->
    <?php if ( have_comments() ) : ?>
    <div class="total-comments"><h4><?php comments_number('No Responses', 'Yorum', 'Yorum' );?></h4></div>
    <div id="comments">
    <ol class="commentlist">
    <div class="navigation">
    <div class="alignleft"><?php previous_comments_link() ?></div>
    <div class="alignright"><?php next_comments_link() ?></div>
    </div>
    <?php wp_list_comments('type=comment&callback=mytheme_co mment'); ?>
    <div class="navigation">
    <div class="alignleft"><?php previous_comments_link() ?></div>
    <div class="alignright"><?php next_comments_link() ?></div>
    </div>
    </ol>
    </div>
    <?php else : // this is displayed if there are no comments so far ?>
    <?php if ('open' == $post->comment_status) : ?>
    <!-- If comments are open, but there are no comments. -->
    <?php else : // comments are closed ?>
    <!-- If comments are closed. -->
    <p class="nocomments"></p>
    <?php endif; ?>
    <?php endif; ?>
    <?php if ('open' == $post->comment_status) : ?>
    <div id="commentsAdd">
    <div id="respond" class="box m-t-6">
    <?php comment_form(); ?>
    </div>
    </div>
    <?php endif; // if you delete this the sky will fall on your head ?>
    ---------------------------------------------------------------------
    diğeride bileşenlerden bakın ordan yapılacak
  • 06-12-2014, 15:10:09
    #6
    Üyeliği durduruldu
    Pandaros adlı üyeden alıntı: mesajı görüntüle
    <?php

    // Do not delete these lines
    if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
    die ('Please do not load this page directly. Thanks!');

    if ( post_password_required() ) { ?>
    <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
    <?php
    return;
    }
    ?>
    <!-- You can start editing here. -->
    <?php if ( have_comments() ) : ?>
    <div class="total-comments"><h4><?php comments_number('No Responses', 'Yorum', 'Yorum' );?></h4></div>
    <div id="comments">
    <ol class="commentlist">
    <div class="navigation">
    <div class="alignleft"><?php previous_comments_link() ?></div>
    <div class="alignright"><?php next_comments_link() ?></div>
    </div>
    <?php wp_list_comments('type=comment&callback=mytheme_co mment'); ?>
    <div class="navigation">
    <div class="alignleft"><?php previous_comments_link() ?></div>
    <div class="alignright"><?php next_comments_link() ?></div>
    </div>
    </ol>
    </div>
    <?php else : // this is displayed if there are no comments so far ?>
    <?php if ('open' == $post->comment_status) : ?>
    <!-- If comments are open, but there are no comments. -->
    <?php else : // comments are closed ?>
    <!-- If comments are closed. -->
    <p class="nocomments"></p>
    <?php endif; ?>
    <?php endif; ?>
    <?php if ('open' == $post->comment_status) : ?>
    <div id="commentsAdd">
    <div id="respond" class="box m-t-6">
    <?php comment_form(); ?>
    </div>
    </div>
    <?php endif; // if you delete this the sky will fall on your head ?>
    ---------------------------------------------------------------------
    diğeride bileşenlerden bakın ordan yapılacak

    olmadı. ne yazıkki. sitede bir değişiklik olmadı.
  • 06-12-2014, 15:11:40
    #7
    Üyeliği durduruldu
    site bilgilerini gönderin halledeyim
  • 06-12-2014, 15:14:19
    #8
    Üyeliği durduruldu
    Pandaros adlı üyeden alıntı: mesajı görüntüle
    site bilgilerini gönderin halledeyim
    skype adresini verirseniz daha kolay iletişim kurarız.
  • 06-12-2014, 15:17:13
    #9
    Üyeliği durduruldu
    pandarosr10