• I am interested in using Sharepointlike, but there is some Russian language. I am having some difficulty changing it. What should I do?

    <div class=”meta”>
    <?php _e(“Категория:”); ?>
    <?php the_category(‘,’) ?> — <?php the_author() ?> @ <?php the_time() ?>
    <?php edit_post_link(__(‘Редактирай’)); ?>
    </div>
    <div class=”storycontent”>
    <?php the_content(__(‘(още…)’)); ?>
    </div>
    <div class=”feedback” align=”right”>
    <?php wp_link_pages(); ?>
    <?php comments_popup_link(__(‘Коментари (0)’), __(‘Коментари (1)’), __(‘Коментари (%)’)); ?>
    </div>
    <!– <?php // trackback_rdf(); ?> –>
    </div>

    Where should I delete and add the words “categories” and “comments”

Viewing 2 replies - 1 through 2 (of 2 total)
  • <?php _e("Ã?Å¡Ã?°Ñ‚Ã?µÃ?³Ã?¾Ñ€Ã?¸Ñ?:"); ?>
    =>
    <?php _e("Category:"); ?>

    <?php edit_post_link(__('� �µ�´�°�ºÑ‚�¸Ñ€�°�¹')); ?>
    =>
    <?php edit_post_link(__('Edit post')); ?>

    <?php comments_popup_link(__('�š�¾�¼�µ�½Ñ‚�°Ñ€�¸ (0)'), __('�š�¾�¼�µ�½Ñ‚�°Ñ€�¸ (1)'), __('�š�¾�¼�µ�½Ñ‚�°Ñ€�¸ (%)')); ?>
    =>
    <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>

    Thanks for the help, Kafkaesqui! I needed it, too, and it was easy to do though I’m a novice PHPer.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sharepointlike language fix’ is closed to new replies.