Merge master

This commit is contained in:
Ben Word
2013-02-04 22:35:15 -06:00
36 changed files with 1446 additions and 1660 deletions

View File

@@ -1,4 +1,8 @@
### HEAD ### HEAD
* Enable `add_theme_support` for Nice Search
* Replace ID's with classes
* Add support for dynamic sidebar templates
* Fix PHP notice on search with no results
* Update to jQuery 1.9.0 * Update to jQuery 1.9.0
### 6.2.0: January 13th, 2013 ### 6.2.0: January 13th, 2013

View File

@@ -5,17 +5,17 @@ Roots is a starting WordPress theme made for developers thats based on [HTML5
## Installation ## Installation
* Clone the git repo - `git clone git://github.com/retlehs/roots.git` - or [download it](https://github.com/retlehs/roots/zipball/master) * Clone the git repo - `git clone git://github.com/retlehs/roots.git` - or [download it](https://github.com/retlehs/roots/zipball/master)
* Reference the [theme activation](/retlehs/roots/blob/master/doc/activation.md) documentation to understand everything that happens once you activate Roots * Reference the [theme activation](doc/activation.md) documentation to understand everything that happens once you activate Roots
## Configuration ## Configuration
Edit `lib/config.php` to enable or disable support for various theme functions and to define constants that are used throughout the theme. Edit `lib/config.php` to enable or disable support for various theme functions and to define constants that are used throughout the theme.
Edit `lib/init.php` to setup custom navigation menus and post thumbnail sizes. Edit `lib/init.php` to setup custom navigation menus and post thumbnail sizes.
## Documentation ## Documentation
Take a look at the [documentation table of contents](/retlehs/roots/blob/master/doc/TOC.md). Take a look at the [documentation table of contents](doc/TOC.md).
## Features ## Features
@@ -32,11 +32,11 @@ Take a look at the [documentation table of contents](/retlehs/roots/blob/master/
## Contributing ## Contributing
Everyone is welcome to help [contribute](/retlehs/roots/blob/master/CONTRIBUTING.md) and improve this project. There are several ways you can contribute: Everyone is welcome to help [contribute](CONTRIBUTING.md) and improve this project. There are several ways you can contribute:
* Reporting issues (please read [issue guidelines](https://github.com/necolas/issue-guidelines)) * Reporting issues (please read [issue guidelines](https://github.com/necolas/issue-guidelines))
* Suggesting new features * Suggesting new features
* Writing or editing [docs](/retlehs/roots/blob/master/doc/TOC.md) * Writing or editing [docs](doc/TOC.md)
* Writing or refactoring code * Writing or refactoring code
* Fixing [issues](https://github.com/retlehs/roots/issues) * Fixing [issues](https://github.com/retlehs/roots/issues)
* Replying to questions on the [Google Group](http://groups.google.com/group/roots-theme) * Replying to questions on the [Google Group](http://groups.google.com/group/roots-theme)

View File

@@ -19,7 +19,7 @@ body { }
Header Header
========================================================================== */ ========================================================================== */
#banner { } .banner { }
/* Fixed Topbar Navigation */ /* Fixed Topbar Navigation */
body.top-navbar { padding-top: 60px; } body.top-navbar { padding-top: 60px; }
@@ -31,7 +31,7 @@ body.admin-bar .navbar-fixed-top { top: 28px; }
Content Content
========================================================================== */ ========================================================================== */
#content { } .content { }
@@ -39,7 +39,7 @@ body.admin-bar .navbar-fixed-top { top: 28px; }
Primary Content Primary Content
========================================================================== */ ========================================================================== */
#main { } .main { }
@@ -47,7 +47,7 @@ body.admin-bar .navbar-fixed-top { top: 28px; }
Sidebar Sidebar
========================================================================== */ ========================================================================== */
#sidebar { } .sidebar { }
@@ -57,7 +57,7 @@ body.admin-bar .navbar-fixed-top { top: 28px; }
.hentry header { } .hentry header { }
.hentry time { } .hentry time { }
.hentry p.byline { } .hentry .byline { }
.hentry .entry-content { } .hentry .entry-content { }
.hentry footer { } .hentry footer { }
@@ -67,7 +67,7 @@ body.admin-bar .navbar-fixed-top { top: 28px; }
Footer Footer
========================================================================== */ ========================================================================== */
#content-info { } .content-info { }

View File

@@ -12,18 +12,18 @@
} }
?> ?>
<div id="wrap" class="container" role="document"> <div class="wrap container" role="document">
<div id="content" class="row"> <div class="content row">
<div id="main" class="<?php echo roots_main_class(); ?>" role="main"> <div class="main <?php echo roots_main_class(); ?>" role="main">
<?php include roots_template_path(); ?> <?php include roots_template_path(); ?>
</div> </div><!-- /.main -->
<?php if (roots_display_sidebar()) : ?> <?php if (roots_display_sidebar()) : ?>
<aside id="sidebar" class="<?php echo roots_sidebar_class(); ?>" role="complementary"> <aside class="sidebar <?php echo roots_sidebar_class(); ?>" role="complementary">
<?php get_template_part('templates/sidebar'); ?> <?php include roots_sidebar_path(); ?>
</aside> </aside><!-- /.sidebar -->
<?php endif; ?> <?php endif; ?>
</div><!-- /#content --> </div><!-- /.content -->
</div><!-- /#wrap --> </div><!-- /.wrap -->
<?php get_template_part('templates/footer'); ?> <?php get_template_part('templates/footer'); ?>

View File

@@ -15,5 +15,5 @@ Roots is a starting WordPress theme made for developers thats based on [HTML5
## Development ## Development
* [Contributing to Roots](/retlehs/roots/blob/master/CONTRIBUTING.md) — Guidelines on how to contribute effectively. * [Contributing to Roots](../CONTRIBUTING.md) — Guidelines on how to contribute effectively.
* [Extending and customizing Roots](extend.md) — Going further with Roots. * [Extending and customizing Roots](extend.md) — Going further with Roots.

View File

@@ -13,7 +13,7 @@ This file handles the various WordPress clean up. [About the clean up](cleanup.m
### config.php ### config.php
This file is used to enable various theme features, define which pages get the sidebar, set the CSS classes for `#main` and `#sidebar`, set a Google Analytics ID, and set the post excerpt length. This file is used to enable various theme features, define which pages get the sidebar, set the CSS classes for `.main` and `.sidebar`, set a Google Analytics ID, and set the post excerpt length.
#### Enable theme features #### Enable theme features
@@ -23,6 +23,7 @@ This file is used to enable various theme features, define which pages get the s
2. [Rewrites](rewrites.md) 2. [Rewrites](rewrites.md)
3. HTML5 Boilerplate's `.htaccess` 3. HTML5 Boilerplate's `.htaccess`
4. Bootstrap's top navbar 4. Bootstrap's top navbar
5. Nice Search (redirect `/?s=` to `/search/`)
If you don't want to use one of the features, either comment out the line or remove it. If you don't want to use one of the features, either comment out the line or remove it.
@@ -44,7 +45,7 @@ This file contains HTML5 Boilerplate's `.htaccess` which is automatically added
### htaccess.php ### htaccess.php
This file handles the clean URL rewrites and HTML5 Boilerplate `.htaccess`. [About the rewrites](rewrites.md). This file handles the HTML5 Boilerplate `.htaccess`.
### init.php ### init.php
@@ -54,6 +55,10 @@ This file runs the initial theme setup and defines helper constants for later us
This file contains all the custom nav modifications (for Bootstrap) and clean up. This file contains all the custom nav modifications (for Bootstrap) and clean up.
### rewrites.php
This file handles the clean URL rewrites. [About the rewrites](rewrites.md).
### scripts.php ### scripts.php
This file handles all of the CSS and JavaScript. This file handles all of the CSS and JavaScript.
@@ -82,8 +87,8 @@ If you're using LESS, make sure you compile the files to the proper locations:
JavaScript is loaded in the following order: JavaScript is loaded in the following order:
1. `/theme/assets/js/vendor/modernizr-2.6.2.min.js` (in `head.php`) 1. `/theme/assets/js/vendor/modernizr-2.6.2.min.js`
2. `jquery-1.9.0.min.js` via Google CDN with local fallback (in `head.php`) 2. `jquery-1.9.0.min.js` via Google CDN with local fallback
3. `/theme/assets/js/plugins.js` 3. `/theme/assets/js/plugins.js`
4. `/theme/assets/js/main.js` 4. `/theme/assets/js/main.js`
@@ -107,7 +112,7 @@ The theme wrapper is used to serve all of the template files. [About the theme w
This file registers the custom sidebars and custom widgets. There are two initial sidebars: This file registers the custom sidebars and custom widgets. There are two initial sidebars:
1. Primary Sidebar (used by `templates/sidebar.php`, included from `base.php` within `#sidebar`) 1. Primary Sidebar (used by `templates/sidebar.php`, included from `base.php` within `.sidebar`)
2. Footer (used by `templates/footer.php`) 2. Footer (used by `templates/footer.php`)
The included vCard widget can be used to build additional, custom widgets. The included vCard widget can be used to build additional, custom widgets.

View File

@@ -3,7 +3,7 @@ table of contents](TOC.md)
# Rewrites # Rewrites
Rewrites are handled by `lib/htaccess.php`. Rewrites currently do not happen for child themes or network installs. Rewrites are handled by `lib/rewrites.php`. Rewrites currently do not happen for child themes or network installs.
Rewrite: Rewrite:
@@ -14,18 +14,15 @@ Rewrite:
If HTML5 Boilerplate's `.htaccess` support is enabled in `lib/config.php`, then the `generate_rewrite_rules()` filter is used to automatically add the contents of `lib/h5bp-htaccess` to your `.htaccess` file. If HTML5 Boilerplate's `.htaccess` support is enabled in `lib/config.php`, then the `generate_rewrite_rules()` filter is used to automatically add the contents of `lib/h5bp-htaccess` to your `.htaccess` file.
## Alternative configuration ## Alternative server configurations
First remove the `if` statement that wraps everything, since if you're not on Apache or Litespeed then Roots will not apply the functionality.
### Nginx ### Nginx
if (!-e $request_filename) { location ~ ^/assets/(img|js|css)/(.*)$ {
rewrite ^/assets/css/(.*)$ /wp-content/themes/roots/assets/css/$1 last; try_files $uri $uri/ /wp-content/themes/roots/assets/$1/$2;
rewrite ^/assets/js/(.*)$ /wp-content/themes/roots/assets/js/$1 last; }
rewrite ^/assets/img/(.*)$ /wp-content/themes/roots/assets/img/$1 last; location ~ ^/plugins/(.*)$ {
rewrite ^/plugins/(.*)$ /wp-content/plugins/$1 last; try_files $uri $uri/ /wp-content/plugins/$1;
break;
} }
### Lighttpd ### Lighttpd

View File

@@ -42,6 +42,7 @@ A basic Roots theme initially looks like this:
│ ├── htaccess.php │ ├── htaccess.php
│ ├── init.php │ ├── init.php
│ ├── nav.php │ ├── nav.php
│ ├── rewrites.php
│ ├── scripts.php │ ├── scripts.php
│ ├── sidebar.php │ ├── sidebar.php
│ ├── utils.php │ ├── utils.php

View File

@@ -12,7 +12,8 @@ require_once locate_template('/lib/config.php'); // Configuration
require_once locate_template('/lib/activation.php'); // Theme activation require_once locate_template('/lib/activation.php'); // Theme activation
require_once locate_template('/lib/cleanup.php'); // Cleanup require_once locate_template('/lib/cleanup.php'); // Cleanup
require_once locate_template('/lib/nav.php'); // Custom nav modifications require_once locate_template('/lib/nav.php'); // Custom nav modifications
require_once locate_template('/lib/htaccess.php'); // Rewrites for assets, H5BP .htaccess require_once locate_template('/lib/rewrites.php'); // URL rewriting for assets
require_once locate_template('/lib/htaccess.php'); // HTML5 Boilerplate .htaccess
require_once locate_template('/lib/widgets.php'); // Sidebars and widgets require_once locate_template('/lib/widgets.php'); // Sidebars and widgets
require_once locate_template('/lib/scripts.php'); // Scripts and stylesheets require_once locate_template('/lib/scripts.php'); // Scripts and stylesheets
require_once locate_template('/lib/custom.php'); // Custom functions require_once locate_template('/lib/custom.php'); // Custom functions

View File

@@ -1,2 +1,5 @@
<?php get_template_part('templates/page', 'header'); ?> <?php get_template_part('templates/page', 'header'); ?>
<?php get_template_part('templates/content', get_post_format()); ?> <?php
$format = have_posts() ? get_post_format() : false;
get_template_part('templates/content', $format);
?>

Binary file not shown.

View File

@@ -2,323 +2,317 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: roots WP theme\n" "Project-Id-Version: roots WP theme\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-13 16:17-0300\n" "POT-Creation-Date: \n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: yulian yordanov <yul.yordanov@post-scriptum.info>\n" "Last-Translator: yulian yordanov <yul.yordanov@gmail.com>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: bg_BG\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Bulgarian\n" "X-Poedit-SourceCharset: UTF-8\n"
"X-Poedit-Country: BULGARIA\n" "X-Generator: Poedit 1.5.4\n"
"X-Poedit-SourceCharset: utf-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: 404.php:7 #: 404.php:5
msgid "File Not Found" msgid ""
msgstr "Страницата не е намерена" "The page you are looking for might have been removed, had its name changed, "
"or is temporarily unavailable."
msgstr ""
"Страницата, която търсите може би е премахната, преместена или временно "
"недостъпна."
#: 404.php:11 #: 404.php:8
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
msgstr "Страницата, която търсите може би е премахната, преместена или временно недостъпна."
#: 404.php:13
msgid "Please try the following:" msgid "Please try the following:"
msgstr "Моля, опитайте следното:" msgstr "Моля, опитайте следното:"
#: 404.php:15 #: 404.php:10
msgid "Check your spelling" msgid "Check your spelling"
msgstr "Проверете правописа." msgstr "Проверете правописа."
#: 404.php:16 #: 404.php:11
#, php-format
msgid "Return to the <a href=\"%s\">home page</a>" msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "Върнете се към <a href=\"%s\">началната страница</a>." msgstr "Върнете се към <a href=\"%s\">началната страница</a>."
#: 404.php:17 #: 404.php:12
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button" msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "Натиснете бутон <a href=\"javascript:history.back()\">Назад</a>." msgstr "Натиснете бутон <a href=\"javascript:history.back()\">Назад</a>."
#: archive.php:13 #: lib/activation.php:31 lib/activation.php:32
#, php-format
msgid "Daily Archives: %s"
msgstr "Архив за дата: %s"
#: archive.php:15
#, php-format
msgid "Monthly Archives: %s"
msgstr "Архив за месец: %s"
#: archive.php:17
#, php-format
msgid "Yearly Archives: %s"
msgstr "Архив за година: %s"
#: archive.php:21
#, php-format
msgid "Author Archives: %s"
msgstr "Архив за автор: %s"
#: comments.php:7
#, php-format
msgid "<cite class=\"fn\">%s</cite>"
msgstr "<cite class=\"fn\">%s</cite>"
#: comments.php:8
#, php-format
msgid "%1$s"
msgstr "%1$s"
#: comments.php:9
msgid "(Edit)"
msgstr "(редакт.)"
#: comments.php:15
msgid "Your comment is awaiting moderation."
msgstr "Коментарът Ви изчаква одобрение."
#: comments.php:32
msgid "This post is password protected. Enter the password to view comments."
msgstr "Тази публикация е защитена с парола. Въведете паролата, за да видите коментарите."
#: comments.php:49
msgid "&larr; Older comments"
msgstr "&larr; По-стари коментари"
#: comments.php:50
msgid "Newer comments &rarr;"
msgstr "По-нови коментари &rarr;"
#: comments.php:58
#: comments.php:68
msgid "Comments are closed."
msgstr "Коментарите са затворени"
#: comments.php:75
msgid "Leave a Reply"
msgstr "Оставете коментар"
#: comments.php:75
#, php-format
msgid "Leave a Reply to %s"
msgstr "Оставете коментар към %s"
#: comments.php:78
#, php-format
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "Трябва да сте <a href=\"%s\">вписан</a>, за да публикувате коментар."
#: comments.php:82
#, php-format
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "Вписан като: <a href=\"%s/wp-admin/profile.php\">%s</a>."
#: comments.php:82
msgid "Log out of this account"
msgstr "Излизане от този профил"
#: comments.php:82
msgid "Log out &raquo;"
msgstr "Изход &raquo;"
#: comments.php:84
msgid "Name"
msgstr "Име"
#: comments.php:84
#: comments.php:86
msgid " (required)"
msgstr " (задължително)"
#: comments.php:86
msgid "Email (will not be published)"
msgstr "Е-адрес (няма да бъде публикуван)"
#: comments.php:88
msgid "Website"
msgstr "Уеб-страница"
#: comments.php:91
msgid "Comment"
msgstr "Коментар"
#: comments.php:93
msgid "Submit Comment"
msgstr "Публикуване"
#: functions.php:45
msgid "Primary Navigation"
msgstr "Основно меню"
#: functions.php:74
#, php-format
msgid "Posted on %s at %s."
msgstr "Публикувано на %s в %s."
#: functions.php:75
msgid "Written by"
msgstr "Автор"
#: index.php:7
msgid "Latest Posts"
msgstr "Най-нови публикации"
#: loop-single.php:14
msgid "Pages:"
msgstr "Страници:"
#: loop.php:5
msgid "Sorry, no results were found."
msgstr "За съжаление няма открити резултати"
#: loop.php:37
msgid "&larr; Older posts"
msgstr "&larr; По-стари публикации"
#: loop.php:38
msgid "Newer posts &rarr;"
msgstr "По-нови публикации &rarr;"
#: search.php:7
msgid "Search Results for"
msgstr "Резултати от търсенето на"
#: searchform.php:2
msgid "Search for:"
msgstr "Търсене на:"
#: searchform.php:3
#: searchform.php:4
msgid "Search"
msgstr "Търсене"
#: inc/roots-activation.php:32
#: inc/roots-activation.php:33
msgid "Theme Activation" msgid "Theme Activation"
msgstr "Активиране" msgstr "Активиране"
#: inc/roots-activation.php:70 #: lib/activation.php:68
#, php-format
msgid "%s Theme Activation" msgid "%s Theme Activation"
msgstr "%s активиране" msgstr "%s активиране"
#: inc/roots-activation.php:85 #: lib/activation.php:83 lib/activation.php:85
#: inc/roots-activation.php:87
msgid "Create static front page?" msgid "Create static front page?"
msgstr "Искате ли да създадете статична начална страница?" msgstr "Искате ли да създадете статична начална страница?"
#: inc/roots-activation.php:89 #: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: inc/roots-activation.php:102 #: lib/activation.php:126 lib/activation.php:139
#: inc/roots-activation.php:115
#: inc/roots-activation.php:128
#: inc/roots-activation.php:141
msgid "Yes" msgid "Yes"
msgstr "Да" msgstr "Да"
#: inc/roots-activation.php:90 #: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: inc/roots-activation.php:103 #: lib/activation.php:127 lib/activation.php:140
#: inc/roots-activation.php:116
#: inc/roots-activation.php:129
#: inc/roots-activation.php:142
msgid "No" msgid "No"
msgstr "Не" msgstr "Не"
#: inc/roots-activation.php:93 #: lib/activation.php:91
msgid "Create a page called Home and set it to be the static front page" msgid "Create a page called Home and set it to be the static front page"
msgstr "Създаване на страница наречена Начало и задаването й като статична начална страница" msgstr ""
"Създаване на страница наречена Начало и задаването й като статична начална "
"страница"
#: inc/roots-activation.php:98 #: lib/activation.php:96
msgid "Change permalink structure?" msgid "Change permalink structure?"
msgstr "Да се промени ли структурата на възките?" msgstr "Да се промени ли структурата на възките?"
#: inc/roots-activation.php:100 #: lib/activation.php:98
msgid "Update permalink structure?" msgid "Update permalink structure?"
msgstr "Искате ли да обновите структурата на връзките?" msgstr "Искате ли да обновите структурата на връзките?"
#: inc/roots-activation.php:106 #: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/" msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "Промяна структурата на връзките: /&#37;postname&#37;/" msgstr "Промяна структурата на връзките: /&#37;postname&#37;/"
#: inc/roots-activation.php:111 #: lib/activation.php:109
msgid "Change uploads folder?" msgid "Change uploads folder?"
msgstr "Да се промени ли папката за качени файлове?" msgstr "Да се промени ли папката за качени файлове?"
#: inc/roots-activation.php:113 #: lib/activation.php:111
msgid "Update uploads folder?" msgid "Update uploads folder?"
msgstr "Искате ли да обновите папката за качени файлове?" msgstr "Искате ли да обновите папката за качени файлове?"
#: inc/roots-activation.php:119 #: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/" msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr "Променяне на папката за качените файлове на /assets/, вместо /wp-content/uploads/" msgstr ""
"Променяне на папката за качените файлове на /assets/, вместо /wp-content/"
"uploads/"
#: inc/roots-activation.php:124 #: lib/activation.php:122 lib/activation.php:124
#: inc/roots-activation.php:126
msgid "Create navigation menu?" msgid "Create navigation menu?"
msgstr "Искате ли да създадете меню?" msgstr "Искате ли да създадете меню?"
#: inc/roots-activation.php:132 #: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location" msgid "Create the Primary Navigation menu and set the location"
msgstr "Създаване на Основно меню и задаване на местоположението му" msgstr "Създаване на Основно меню и задаване на местоположението му"
#: inc/roots-activation.php:137 #: lib/activation.php:135 lib/activation.php:137
#: inc/roots-activation.php:139
msgid "Add pages to menu?" msgid "Add pages to menu?"
msgstr "Искате ли да добавите страниците?" msgstr "Искате ли да добавите страници?"
#: inc/roots-activation.php:145 #: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation" msgid "Add all current published pages to the Primary Navigation"
msgstr "Добавяне на всички публикувани страници към Основното меню" msgstr "Добавяне на всички публикувани страници към Основното меню"
#: inc/roots-cleanup.php:370 #: lib/cleanup.php:388
msgid "Continued" msgid "Continued"
msgstr "Още" msgstr "Още"
#: inc/roots-cleanup.php:538 #: lib/htaccess.php:25
#, php-format
msgid "Please update your <a href=\"%s\">site tagline</a> <a href=\"%s\" style=\"float: right;\">Hide Notice</a>"
msgstr "Моля, редактирайте <a href=\"%s\">описанието</a> на сайта. <a href=\"%s\" style=\"float: right;\">Скриване</a>"
#: inc/roots-htaccess.php:11
#, php-format
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable " msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr "Моля, уверете се че файлът <a href=\"%s\">.htaccess</a> може да се редактира" msgstr ""
"Моля, уверете се че файлът <a href=\"%s\">.htaccess</a> може да се редактира"
#: inc/roots-widgets.php:5 #: lib/init.php:13
msgid "Primary Navigation"
msgstr "Основно меню"
#: lib/utils.php:14
msgid "Latest Posts"
msgstr "Най-нови публикации"
#: lib/utils.php:23
msgid "Daily Archives: %s"
msgstr "Архив за дата: %s"
#: lib/utils.php:25
msgid "Monthly Archives: %s"
msgstr "Архив за месец: %s"
#: lib/utils.php:27
msgid "Yearly Archives: %s"
msgstr "Архив за година: %s"
#: lib/utils.php:31
msgid "Author Archives: %s"
msgstr "Архив за автор: %s"
#: lib/utils.php:36
msgid "Search Results for %s"
msgstr "Резултати от търсенето на %s"
#: lib/utils.php:38
msgid "File Not Found"
msgstr "Страницата не е намерена"
#: lib/widgets.php:6
msgid "Primary Sidebar"
msgstr "Главен сайдбар"
#: lib/widgets.php:15
msgid "Footer"
msgstr "Футър"
#: lib/widgets.php:41
msgid "Use this widget to add a vCard" msgid "Use this widget to add a vCard"
msgstr "Използвайте тази джаджа, за да добавите vCard" msgstr "Използвайте тази джаджа, за да добавите vCard"
#: inc/roots-widgets.php:6 #: lib/widgets.php:43
msgid "Roots: vCard" msgid "Roots: vCard"
msgstr "Roots: vCard" msgstr "Roots: vCard"
#: inc/roots-widgets.php:33 #: lib/widgets.php:70
msgid "vCard" msgid "vCard"
msgstr "vCard" msgstr "vCard"
#: inc/roots-widgets.php:99 #: templates/comments.php:7
msgid "Title (optional):" msgid "<cite class=\"fn\">%s</cite>"
msgstr "Заглавие (незадълж.)" msgstr "<cite class=\"fn\">%s</cite>"
#: inc/roots-widgets.php:103 #: templates/comments.php:8
msgid "Street Address:" msgid "%1$s"
msgstr "Улица:" msgstr "%1$s"
#: inc/roots-widgets.php:107 #: templates/comments.php:9
msgid "City/Locality:" msgid "(Edit)"
msgstr "Град:" msgstr "(редакт.)"
#: inc/roots-widgets.php:111 #: templates/comments.php:15
msgid "State/Region:" msgid "Your comment is awaiting moderation."
msgstr "Държава:" msgstr "Коментарът Ви изчаква одобрение."
#: inc/roots-widgets.php:115 #: templates/comments.php:32
msgid "Zipcode/Postal Code:" msgid "This post is password protected. Enter the password to view comments."
msgstr "Пощенски код:" msgstr ""
"Тази публикация е защитена с парола. Въведете паролата, за да видите "
"коментарите."
#: inc/roots-widgets.php:119 #: templates/comments.php:39
msgid "Telephone:" msgid "One Response to &ldquo;%2$s&rdquo;"
msgstr "Телефон:" msgid_plural "%1$s Responses to &ldquo;%2$s&rdquo;"
msgstr[0] "Един отговор към &ldquo;%2$s&rdquo;"
msgstr[1] "%1$s отговора към &ldquo;%2$s&rdquo;"
#: inc/roots-widgets.php:123 #: templates/comments.php:49 templates/comments.php:51
msgid "Email:" msgid "&larr; Older comments"
msgstr "Е-поща:" msgstr "&larr; По-стари коментари"
#: templates/comments.php:54 templates/comments.php:56
msgid "Newer comments &rarr;"
msgstr "По-нови коментари &rarr;"
#: templates/comments.php:66 templates/comments.php:76
msgid "Comments are closed."
msgstr "Коментарите са изключени"
#: templates/comments.php:83
msgid "Leave a Reply"
msgstr "Оставете коментар"
#: templates/comments.php:83
msgid "Leave a Reply to %s"
msgstr "Оставете коментар към %s"
#: templates/comments.php:86
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "Трябва да сте <a href=\"%s\">вписан</a>, за да публикувате коментар."
#: templates/comments.php:90
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "Вписан като: <a href=\"%s/wp-admin/profile.php\">%s</a>."
#: templates/comments.php:90
msgid "Log out of this account"
msgstr "Излизане от този профил"
#: templates/comments.php:90
msgid "Log out &raquo;"
msgstr "Изход &raquo;"
#: templates/comments.php:92
msgid "Name"
msgstr "Име"
#: templates/comments.php:92 templates/comments.php:94
msgid " (required)"
msgstr " (задължително)"
#: templates/comments.php:94
msgid "Email (will not be published)"
msgstr "Е-адрес (няма да бъде публикуван)"
#: templates/comments.php:96
msgid "Website"
msgstr "Уеб-страница"
#: templates/comments.php:99
msgid "Comment"
msgstr "Коментар"
#: templates/comments.php:101
msgid "Submit Comment"
msgstr "Публикуване"
#: templates/content-single.php:11
msgid "Pages:"
msgstr "Страници:"
#: templates/content.php:4
msgid "Sorry, no results were found."
msgstr "За съжаление няма открити резултати"
#: templates/content.php:28 templates/content.php:30
msgid "&larr; Older posts"
msgstr "&larr; По-стари публикации"
#: templates/content.php:33 templates/content.php:35
msgid "Newer posts &rarr;"
msgstr "По-нови публикации &rarr;"
#: templates/entry-meta.php:1
msgid "Posted on %s at %s."
msgstr "Публикувано на %s в %s."
#: templates/entry-meta.php:2
msgid "Written by"
msgstr "Автор"
#: templates/searchform.php:2
msgid "Search for:"
msgstr "Търсене на:"
#: templates/searchform.php:3 templates/searchform.php:4
msgid "Search"
msgstr "Търсене"
#~ msgid ""
#~ "Please update your <a href=\"%s\">site tagline</a> <a href=\"%s\" style="
#~ "\"float: right;\">Hide Notice</a>"
#~ msgstr ""
#~ "Моля, редактирайте <a href=\"%s\">описанието</a> на сайта. <a href=\"%s\" "
#~ "style=\"float: right;\">Скриване</a>"
#~ msgid "Title (optional):"
#~ msgstr "Заглавие (незадълж.)"
#~ msgid "Street Address:"
#~ msgstr "Улица:"
#~ msgid "City/Locality:"
#~ msgstr "Град:"
#~ msgid "State/Region:"
#~ msgstr "Държава:"
#~ msgid "Zipcode/Postal Code:"
#~ msgstr "Пощенски код:"
#~ msgid "Telephone:"
#~ msgstr "Телефон:"
#~ msgid "Email:"
#~ msgstr "Е-поща:"

Binary file not shown.

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-24 14:54+0100\n" "POT-Creation-Date: 2013-01-14 18:49+0100\n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
@@ -13,13 +13,14 @@ msgstr ""
"X-Poedit-Basepath: ../\n" "X-Poedit-Basepath: ../\n"
"X-Poedit-Language: French\n" "X-Poedit-Language: French\n"
"X-Poedit-Country: FRANCE\n" "X-Poedit-Country: FRANCE\n"
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
"X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ./templates\n" "X-Poedit-SearchPath-1: ./templates\n"
"X-Poedit-SearchPath-2: ./lib\n" "X-Poedit-SearchPath-2: ./lib\n"
#: 404.php:5 #: 404.php:5
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable." msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
msgstr "La page que vous recherchez a changé de nom ou est temporairement inaccessible." msgstr "La page demandée a changé de nom ou est temporairement inaccessible."
#: 404.php:8 #: 404.php:8
msgid "Please try the following:" msgid "Please try the following:"
@@ -27,7 +28,7 @@ msgstr "Veuillez essayer les actions suivantes :"
#: 404.php:10 #: 404.php:10
msgid "Check your spelling" msgid "Check your spelling"
msgstr "Vérifier votre syntaxe" msgstr "Vérifiez votre syntaxe"
#: 404.php:11 #: 404.php:11
#, php-format #, php-format
@@ -38,96 +39,129 @@ msgstr "Revenir à la <a href=\"%s\">page d'accueil</a>"
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button" msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "Cliquer sur le bouton <a href=\"javascript:history.back()\">Retour</a>" msgstr "Cliquer sur le bouton <a href=\"javascript:history.back()\">Retour</a>"
#: lib/activation.php:31
#: lib/activation.php:32 #: lib/activation.php:32
#: lib/activation.php:33
msgid "Theme Activation" msgid "Theme Activation"
msgstr "Activation du thème" msgstr "Activation du thème"
#: lib/activation.php:72 #: lib/activation.php:68
#, php-format #, php-format
msgid "%s Theme Activation" msgid "%s Theme Activation"
msgstr "Activation du thème %s" msgstr "Activation du thème %s"
#: lib/activation.php:87 #: lib/activation.php:83
#: lib/activation.php:89 #: lib/activation.php:85
msgid "Create static front page?" msgid "Create static front page?"
msgstr "Créer une page d'accueil ?" msgstr "Créer une page d'accueil ?"
#: lib/activation.php:91 #: lib/activation.php:87
#: lib/activation.php:104 #: lib/activation.php:100
#: lib/activation.php:117 #: lib/activation.php:113
#: lib/activation.php:130 #: lib/activation.php:126
#: lib/activation.php:143 #: lib/activation.php:139
msgid "Yes" msgid "Yes"
msgstr "Oui" msgstr "Oui"
#: lib/activation.php:92 #: lib/activation.php:88
#: lib/activation.php:105 #: lib/activation.php:101
#: lib/activation.php:118 #: lib/activation.php:114
#: lib/activation.php:131 #: lib/activation.php:127
#: lib/activation.php:144 #: lib/activation.php:140
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#: lib/activation.php:95 #: lib/activation.php:91
msgid "Create a page called Home and set it to be the static front page" msgid "Create a page called Home and set it to be the static front page"
msgstr "Créer une page \"Home\" et la définir comme page d'accueil statique ?" msgstr "Créer une page \"Home\" et la définir comme page d'accueil statique ?"
#: lib/activation.php:100 #: lib/activation.php:96
msgid "Change permalink structure?" msgid "Change permalink structure?"
msgstr "Modifier la structure des permaliens ?" msgstr "Modifier la structure des permaliens ?"
#: lib/activation.php:102 #: lib/activation.php:98
msgid "Update permalink structure?" msgid "Update permalink structure?"
msgstr "Mettre à jour la structure des permaliens ?" msgstr "Mettre à jour la structure des permaliens ?"
#: lib/activation.php:108 #: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/" msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "Changer la structure permaliens en /&#37;postname&#37;/" msgstr "Changer la structure permaliens en /&#37;postname&#37;/"
#: lib/activation.php:113 #: lib/activation.php:109
msgid "Change uploads folder?" msgid "Change uploads folder?"
msgstr "Changer le dossier d'upload ?" msgstr "Changer le dossier d'upload ?"
#: lib/activation.php:115 #: lib/activation.php:111
msgid "Update uploads folder?" msgid "Update uploads folder?"
msgstr "Mettre à jour le dossier d'upload ?" msgstr "Mettre à jour le dossier d'upload ?"
#: lib/activation.php:121 #: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/" msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr "Changer le dossier d'upload en /assets/ à la place de /wp-content/uploads/" msgstr "Changer le dossier d'upload en /assets/ à la place de /wp-content/uploads/"
#: lib/activation.php:126 #: lib/activation.php:122
#: lib/activation.php:128 #: lib/activation.php:124
msgid "Create navigation menu?" msgid "Create navigation menu?"
msgstr "Créer un menu de navigation ?" msgstr "Créer un menu de navigation ?"
#: lib/activation.php:134 #: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location" msgid "Create the Primary Navigation menu and set the location"
msgstr "Créer le menus de navigation principal (Primaire) et définir sa position" msgstr "Créer le menus de navigation primaire et définir sa position"
#: lib/activation.php:139 #: lib/activation.php:135
#: lib/activation.php:141 #: lib/activation.php:137
msgid "Add pages to menu?" msgid "Add pages to menu?"
msgstr "Ajouter les pages au menu ?" msgstr "Ajouter les pages au menu ?"
#: lib/activation.php:147 #: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation" msgid "Add all current published pages to the Primary Navigation"
msgstr "Ajouter toutes les pages actuellement publiées à la navigation primaire" msgstr "Ajouter toutes les pages actuellement publiées à la navigation primaire"
#: lib/cleanup.php:404 #: lib/cleanup.php:388
msgid "Continued" msgid "Continued"
msgstr "Suite" msgstr "Suite"
#: lib/htaccess.php:26 #: lib/htaccess.php:25
#, php-format #, php-format
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable " msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr "Veuillez vérifier que votre fichier <a href=\"%s\">.htaccess</a> est accessible en écriture" msgstr "Veuillez vérifier que votre fichier <a href=\"%s\">.htaccess</a> soit accessible en écriture"
#: lib/init.php:13 #: lib/init.php:13
msgid "Primary Navigation" msgid "Primary Navigation"
msgstr "Navigation Primaire" msgstr "Navigation Primaire"
#: lib/utils.php:14
msgid "Latest Posts"
msgstr "Derniers Articles"
#: lib/utils.php:23
#, php-format
msgid "Daily Archives: %s"
msgstr "Archives quotidiennes : %s"
#: lib/utils.php:25
#, php-format
msgid "Monthly Archives: %s"
msgstr "Archives mensuelles : %s"
#: lib/utils.php:27
#, php-format
msgid "Yearly Archives: %s"
msgstr "Archives annuelles : %s"
#: lib/utils.php:31
#, php-format
msgid "Author Archives: %s"
msgstr "Archives d'auteurs : %s"
#: lib/utils.php:36
#, php-format
msgid "Search Results for %s"
msgstr "Résultats de la recherche pour %s"
#: lib/utils.php:38
msgid "File Not Found"
msgstr "Fichier non trouvé"
#: lib/widgets.php:6 #: lib/widgets.php:6
msgid "Primary Sidebar" msgid "Primary Sidebar"
msgstr "Barre latérale Primaire" msgstr "Barre latérale Primaire"
@@ -170,68 +204,76 @@ msgstr "Votre commentaire est en attente de modération."
msgid "This post is password protected. Enter the password to view comments." msgid "This post is password protected. Enter the password to view comments."
msgstr "Cet article est protégé par mot de passe. Entrez le mot de passe pour voir les commentaires." msgstr "Cet article est protégé par mot de passe. Entrez le mot de passe pour voir les commentaires."
#: templates/comments.php:47 #: templates/comments.php:39
msgid "One Response to &ldquo;%2$s&rdquo;"
msgid_plural "%1$s Responses to &ldquo;%2$s&rdquo;"
msgstr[0] "Une réponse à &ldquo;%2$s&rdquo;"
msgstr[1] "%1$s résponses à &ldquo;%2$s&rdquo;"
#: templates/comments.php:49
#: templates/comments.php:51
msgid "&larr; Older comments" msgid "&larr; Older comments"
msgstr "&larr; Commentaires plus anciens" msgstr "&larr; Commentaires plus anciens"
#: templates/comments.php:48 #: templates/comments.php:54
#: templates/comments.php:56
msgid "Newer comments &rarr;" msgid "Newer comments &rarr;"
msgstr "Commentaires plus récents &rarr;" msgstr "Commentaires plus récents &rarr;"
#: templates/comments.php:56
#: templates/comments.php:66 #: templates/comments.php:66
#: templates/comments.php:76
msgid "Comments are closed." msgid "Comments are closed."
msgstr "Les commentaires sont fermés." msgstr "Les commentaires sont fermés."
#: templates/comments.php:73 #: templates/comments.php:83
msgid "Leave a Reply" msgid "Leave a Reply"
msgstr "Répondre" msgstr "Répondre"
#: templates/comments.php:73 #: templates/comments.php:83
#, php-format #, php-format
msgid "Leave a Reply to %s" msgid "Leave a Reply to %s"
msgstr "Répondre à %s" msgstr "Répondre à %s"
#: templates/comments.php:76 #: templates/comments.php:86
#, php-format #, php-format
msgid "You must be <a href=\"%s\">logged in</a> to post a comment." msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "Vous devez être <a href=\"%s\">connecté</a> pour ajouter un commentaire." msgstr "Vous devez être <a href=\"%s\">connecté</a> pour ajouter un commentaire."
#: templates/comments.php:80 #: templates/comments.php:90
#, php-format #, php-format
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>." msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "Connecté en tant que <a href=\"%s/wp-admin/profile.php\">%s</a>." msgstr "Connecté en tant que <a href=\"%s/wp-admin/profile.php\">%s</a>."
#: templates/comments.php:80 #: templates/comments.php:90
msgid "Log out of this account" msgid "Log out of this account"
msgstr "Déconnexion de ce compte" msgstr "Déconnexion de ce compte"
#: templates/comments.php:80 #: templates/comments.php:90
msgid "Log out &raquo;" msgid "Log out &raquo;"
msgstr "Déconnexion &raquo;" msgstr "Déconnexion &raquo;"
#: templates/comments.php:82 #: templates/comments.php:92
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: templates/comments.php:82 #: templates/comments.php:92
#: templates/comments.php:84 #: templates/comments.php:94
msgid " (required)" msgid " (required)"
msgstr "(obligatoire)" msgstr " (obligatoire)"
#: templates/comments.php:84 #: templates/comments.php:94
msgid "Email (will not be published)" msgid "Email (will not be published)"
msgstr "Email (ne sera pas publié)" msgstr "Email (ne sera pas publié)"
#: templates/comments.php:86 #: templates/comments.php:96
msgid "Website" msgid "Website"
msgstr "Site web" msgstr "Site web"
#: templates/comments.php:89 #: templates/comments.php:99
msgid "Comment" msgid "Comment"
msgstr "Commentaire" msgstr "Commentaire"
#: templates/comments.php:91 #: templates/comments.php:101
msgid "Submit Comment" msgid "Submit Comment"
msgstr "Ajouter un commentaire" msgstr "Ajouter un commentaire"
@@ -243,55 +285,24 @@ msgstr "Pages :"
msgid "Sorry, no results were found." msgid "Sorry, no results were found."
msgstr "Désolé, aucun résultat n'a été trouvé." msgstr "Désolé, aucun résultat n'a été trouvé."
#: templates/content.php:26 #: templates/content.php:28
#: templates/content.php:30
msgid "&larr; Older posts" msgid "&larr; Older posts"
msgstr "&larr; Articles plus anciens" msgstr "&larr; Articles plus anciens"
#: templates/content.php:27 #: templates/content.php:33
#: templates/content.php:35
msgid "Newer posts &rarr;" msgid "Newer posts &rarr;"
msgstr "Commentaires plus récents &rarr;" msgstr "Articles plus récents &rarr;"
#: templates/entry-meta.php:1 #: templates/entry-meta.php:1
#, php-format #, php-format
msgid "Posted on %s at %s." msgid "Posted on %s at %s."
msgstr "Ajouté le %s à %s." msgstr "Publié le %s à %s."
#: templates/entry-meta.php:2 #: templates/entry-meta.php:2
msgid "Written by" msgid "Written by"
msgstr "Ecrit par" msgstr "Rédigé par"
#: templates/page-header.php:8
msgid "Latest Posts"
msgstr "Derniers Articles"
#: templates/page-header.php:17
#, php-format
msgid "Daily Archives: %s"
msgstr "Archives quotidiennes : %s"
#: templates/page-header.php:19
#, php-format
msgid "Monthly Archives: %s"
msgstr "Archives mensuelles : %s"
#: templates/page-header.php:21
#, php-format
msgid "Yearly Archives: %s"
msgstr "Archives annuelles : %s"
#: templates/page-header.php:25
#, php-format
msgid "Author Archives: %s"
msgstr "Archives d'auteurs : %s"
#: templates/page-header.php:30
#, php-format
msgid "Search Results for %s"
msgstr "Résultats de la recherche pour %s"
#: templates/page-header.php:32
msgid "File Not Found"
msgstr "Fichier non trouvé"
#: templates/searchform.php:2 #: templates/searchform.php:2
msgid "Search for:" msgid "Search for:"
@@ -302,23 +313,24 @@ msgstr "Rechercher pour :"
msgid "Search" msgid "Search"
msgstr "Recherche" msgstr "Recherche"
#~ msgid "Title (optional):" msgid "Title (optional):"
#~ msgstr "Titre (facultatif) :" msgstr "Titre (facultatif) :"
#~ msgid "Street Address:" msgid "Street Address:"
#~ msgstr "Rue :" msgstr "Rue :"
#~ msgid "City/Locality:" msgid "City/Locality:"
#~ msgstr "Ville/Localité :" msgstr "Ville/Localité :"
#~ msgid "State/Region:" msgid "State/Region:"
#~ msgstr "Etat/Région :" msgstr "État/Région :"
#~ msgid "Zipcode/Postal Code:" msgid "Zipcode/Postal Code:"
#~ msgstr "Code Zip/Code postal :" msgstr "Code Postal :"
#~ msgid "Telephone:" msgid "Telephone:"
#~ msgstr "Téléphone :" msgstr "Téléphone :"
msgid "Email:"
msgstr "Email :"
#~ msgid "Email:"
#~ msgstr "Email :"

Binary file not shown.

210
lang/ko_KR.po Executable file → Normal file
View File

@@ -2,15 +2,16 @@ msgid ""
msgstr "" msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Project-Id-Version: Roots Theme Korean Translation\n" "Project-Id-Version: Roots\n"
"POT-Creation-Date: \n" "POT-Creation-Date: \n"
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: Alex Lim <contact@simonalex.com>\n" "Last-Translator: Alex Lim <contact@simonalex.com>\n"
"Language-Team: Redfrost <contact@simonalex.com>\n" "Language-Team: Redfrost <contact@simonalex.com>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"X-Generator: Poedit 1.5.5\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"Language: ko_KR\n"
"X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-SourceCharset: UTF-8\n"
"Language: Korean\n"
"X-Generator: Poedit 1.5.4\n"
#: 404.php:5 #: 404.php:5
msgid "" msgid ""
@@ -18,7 +19,7 @@ msgid ""
"or is temporarily unavailable." "or is temporarily unavailable."
msgstr "" msgstr ""
"요청하신 페이지를 찾을 수 없습니다. 페이지가 삭제되었거나 이름이 변경되었거" "요청하신 페이지를 찾을 수 없습니다. 페이지가 삭제되었거나 이름이 변경되었거"
"나 일시적으로 사용할 수 없습니다." "나, 일시적으로 사용할 수 없습니다."
#: 404.php:8 #: 404.php:8
msgid "Please try the following:" msgid "Please try the following:"
@@ -29,7 +30,6 @@ msgid "Check your spelling"
msgstr "주소의 철자법을 확인" msgstr "주소의 철자법을 확인"
#: 404.php:11 #: 404.php:11
#, php-format
msgid "Return to the <a href=\"%s\">home page</a>" msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "<a href=\"%s\">홈페이지</a>로 돌아가기" msgstr "<a href=\"%s\">홈페이지</a>로 돌아가기"
@@ -37,150 +37,137 @@ msgstr "<a href=\"%s\">홈페이지</a>로 돌아가기"
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button" msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "<a href=\"javascript:history.back()\">이전 페이지</a>로 돌아가기" msgstr "<a href=\"javascript:history.back()\">이전 페이지</a>로 돌아가기"
#: functions.php:28 #: lib/activation.php:31 lib/activation.php:32
msgid "Primary Navigation"
msgstr "메인메뉴"
#: lib/activation.php:32 lib/activation.php:33
msgid "Theme Activation" msgid "Theme Activation"
msgstr "테마 활성화" msgstr "테마 활성화"
#: lib/activation.php:72 #: lib/activation.php:68
#, php-format
msgid "%s Theme Activation" msgid "%s Theme Activation"
msgstr "%s 테마를 활성화 합니다" msgstr "%s 테마를 활성화 합니다"
#: lib/activation.php:87 lib/activation.php:89 #: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?" msgid "Create static front page?"
msgstr "고정 대문 페이지를 만드시겠습니까?" msgstr "고정 대문 페이지를 만드시겠습니까?"
#: lib/activation.php:91 lib/activation.php:104 lib/activation.php:117 #: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: lib/activation.php:130 lib/activation.php:143 #: lib/activation.php:126 lib/activation.php:139
msgid "Yes" msgid "Yes"
msgstr "네" msgstr "네"
#: lib/activation.php:92 lib/activation.php:105 lib/activation.php:118 #: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: lib/activation.php:131 lib/activation.php:144 #: lib/activation.php:127 lib/activation.php:140
msgid "No" msgid "No"
msgstr "아니오" msgstr "아니오"
#: lib/activation.php:95 #: lib/activation.php:91
msgid "Create a page called Home and set it to be the static front page" msgid "Create a page called Home and set it to be the static front page"
msgstr "Home이라는 이름의 페이지를 만들고 대문 페이지로 등록합니다." msgstr "Home이라는 이름의 페이지를 만들고 대문 페이지로 등록합니다."
#: lib/activation.php:100 #: lib/activation.php:96
msgid "Change permalink structure?" msgid "Change permalink structure?"
msgstr "고유주소(permalink) 구조를 변경하시겠습니까?" msgstr "고유주소(permalink) 구조를 변경하시겠습니까?"
#: lib/activation.php:102 #: lib/activation.php:98
msgid "Update permalink structure?" msgid "Update permalink structure?"
msgstr "고유주소(permalink) 구조를 업데이트 하시겠습니까?" msgstr "고유주소(permalink) 구조를 업데이트 하시겠습니까?"
#: lib/activation.php:108 #: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/" msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "/&#37;postname&#37;/ 으로 고유주소(permalink)를 변경합니다." msgstr "/&#37;postname&#37;/ 으로 고유주소(permalink)를 변경합니다."
#: lib/activation.php:113 #: lib/activation.php:109
msgid "Change uploads folder?" msgid "Change uploads folder?"
msgstr "업로드 폴더를 변경하시겠습니까?" msgstr "업로드 폴더를 변경하시겠습니까?"
#: lib/activation.php:115 #: lib/activation.php:111
msgid "Update uploads folder?" msgid "Update uploads folder?"
msgstr "업로드 폴더를 업데이트 하시겠습니까?" msgstr "업로드 폴더를 업데이트 하시겠습니까?"
#: lib/activation.php:121 #: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/" msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr "기존의 업로드 경로 /wp-content/uploads를 /assets/으로 변경합니다." msgstr "기존의 업로드 경로 /wp-content/uploads를 /assets/으로 변경합니다."
#: lib/activation.php:126 lib/activation.php:128 #: lib/activation.php:122 lib/activation.php:124
msgid "Create navigation menu?" msgid "Create navigation menu?"
msgstr "네비게이션 메뉴를 만드시겠습니까?" msgstr "네비게이션 메뉴를 만드시겠습니까?"
#: lib/activation.php:134 #: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location" msgid "Create the Primary Navigation menu and set the location"
msgstr "기본 네비게이션 메뉴를 생성합니다." msgstr "기본 네비게이션 메뉴를 생성합니다."
#: lib/activation.php:139 lib/activation.php:141 #: lib/activation.php:135 lib/activation.php:137
msgid "Add pages to menu?" msgid "Add pages to menu?"
msgstr "페이지를 메뉴에 등록하시겠습니까?" msgstr "페이지를 메뉴에 등록하시겠습니까?"
#: lib/activation.php:147 #: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation" msgid "Add all current published pages to the Primary Navigation"
msgstr "생성된 모든 페이지를 기본 메뉴에 등록합니다." msgstr "생성된 모든 페이지를 기본 메뉴에 등록합니다."
#: lib/cleanup.php:404 #: lib/cleanup.php:388
msgid "Continued" msgid "Continued"
msgstr "더보기" msgstr "더보기"
#: lib/htaccess.php:26 #: lib/htaccess.php:25
#, php-format
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable " msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr "<a href=\"%s\">.htaccess</a> 파일의 쓰기 권한을 확인하시기 바랍니다." msgstr "<a href=\"%s\">.htaccess</a> 파일의 쓰기 권한을 확인하시기 바랍니다."
#: lib/template-tags.php:5 #: lib/init.php:13
#, php-format msgid "Primary Navigation"
msgid "Posted on %s at %s." msgstr "메인메뉴"
msgstr "%s %s에 작성"
#: lib/template-tags.php:6 #: lib/utils.php:14
msgid "Written by" msgid "Latest Posts"
msgstr "작성자:" msgstr "최근 포스트"
#: lib/utils.php:23
msgid "Daily Archives: %s"
msgstr "일일 아카이브: %s"
#: lib/utils.php:25
msgid "Monthly Archives: %s"
msgstr "월별 아카이브: %s"
#: lib/utils.php:27
msgid "Yearly Archives: %s"
msgstr "연간 아카이브: %s"
#: lib/utils.php:31
msgid "Author Archives: %s"
msgstr "저자별 아카이브: %s"
#: lib/utils.php:36
msgid "Search Results for %s"
msgstr "%s의 검색 결과"
#: lib/utils.php:38
msgid "File Not Found"
msgstr "파일을 찾을 수 없습니다"
#: lib/widgets.php:6 #: lib/widgets.php:6
msgid "Primary Sidebar" msgid "Primary Sidebar"
msgstr "기본 사이드바" msgstr "기본 사이드바"
#: lib/widgets.php:14 #: lib/widgets.php:15
msgid "Footer" msgid "Footer"
msgstr "Footer" msgstr "Footer"
#: lib/widgets.php:30 #: lib/widgets.php:41
msgid "Use this widget to add a vCard" msgid "Use this widget to add a vCard"
msgstr "vCard를 등록하려면 이 위젯을 사용합니다." msgstr "vCard를 등록하려면 이 위젯을 사용합니다."
#: lib/widgets.php:31 #: lib/widgets.php:43
msgid "Roots: vCard" msgid "Roots: vCard"
msgstr "Roots: vCard" msgstr "Roots: vCard"
#: lib/widgets.php:58 #: lib/widgets.php:70
msgid "vCard" msgid "vCard"
msgstr "vCard" msgstr "vCard"
#: lib/widgets.php:124
msgid "Title (optional):"
msgstr "제목(선택사항):"
#: lib/widgets.php:128
msgid "Street Address:"
msgstr "주소:"
#: lib/widgets.php:132
msgid "City/Locality:"
msgstr "시:"
#: lib/widgets.php:136
msgid "State/Region:"
msgstr "도:"
#: lib/widgets.php:140
msgid "Zipcode/Postal Code:"
msgstr "우편번호:"
#: lib/widgets.php:144
msgid "Telephone:"
msgstr "전화:"
#: lib/widgets.php:148
msgid "Email:"
msgstr "이메일:"
#: templates/comments.php:7 #: templates/comments.php:7
#, php-format
msgid "<cite class=\"fn\">%s</cite>" msgid "<cite class=\"fn\">%s</cite>"
msgstr "<cite class=\"fn\">%s</cite>" msgstr "<cite class=\"fn\">%s</cite>"
#: templates/comments.php:8 #: templates/comments.php:8
#, php-format
msgid "%1$s" msgid "%1$s"
msgstr "%1$s" msgstr "%1$s"
@@ -197,66 +184,68 @@ msgid "This post is password protected. Enter the password to view comments."
msgstr "" msgstr ""
"보안된 페이지입니다. 내용을 확인하려면 패스워드를 입력해 주시기 바랍니다." "보안된 페이지입니다. 내용을 확인하려면 패스워드를 입력해 주시기 바랍니다."
#: templates/comments.php:49 #: templates/comments.php:39
msgid "One Response to &ldquo;%2$s&rdquo;"
msgid_plural "%1$s Responses to &ldquo;%2$s&rdquo;"
msgstr[0] "&ldquo;%2$s&rdquo;에 %1$s개의 댓글이 있습니다."
#: templates/comments.php:49 templates/comments.php:51
msgid "&larr; Older comments" msgid "&larr; Older comments"
msgstr "&larr; 이전 댓글" msgstr "&larr; 이전 댓글"
#: templates/comments.php:50 #: templates/comments.php:54 templates/comments.php:56
msgid "Newer comments &rarr;" msgid "Newer comments &rarr;"
msgstr "최신 댓글 &rarr;" msgstr "최신 댓글 &rarr;"
#: templates/comments.php:58 templates/comments.php:68 #: templates/comments.php:66 templates/comments.php:76
msgid "Comments are closed." msgid "Comments are closed."
msgstr "댓글을 달 수 없는 글입니다." msgstr "댓글을 달 수 없는 글입니다."
#: templates/comments.php:75 #: templates/comments.php:83
msgid "Leave a Reply" msgid "Leave a Reply"
msgstr "댓글 쓰기" msgstr "댓글 쓰기"
#: templates/comments.php:75 #: templates/comments.php:83
#, php-format
msgid "Leave a Reply to %s" msgid "Leave a Reply to %s"
msgstr "%s님에게 댓글 쓰기" msgstr "%s님에게 댓글 쓰기"
#: templates/comments.php:78 #: templates/comments.php:86
#, php-format
msgid "You must be <a href=\"%s\">logged in</a> to post a comment." msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "<a href=\"%s\">로그인</a>해야만 글을 작성할 수 있습니다." msgstr "<a href=\"%s\">로그인</a>해야만 글을 작성할 수 있습니다."
#: templates/comments.php:82 #: templates/comments.php:90
#, php-format
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>." msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a>님으로 로그인 되어 있습니다." msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a>님으로 로그인 되어 있습니다."
#: templates/comments.php:82 #: templates/comments.php:90
msgid "Log out of this account" msgid "Log out of this account"
msgstr "이 계정에서 로그아웃" msgstr "이 계정에서 로그아웃"
#: templates/comments.php:82 #: templates/comments.php:90
msgid "Log out &raquo;" msgid "Log out &raquo;"
msgstr "로그아웃 하기 &raquo;" msgstr "로그아웃 하기 &raquo;"
#: templates/comments.php:84 #: templates/comments.php:92
msgid "Name" msgid "Name"
msgstr "이름" msgstr "이름"
#: templates/comments.php:84 templates/comments.php:86 #: templates/comments.php:92 templates/comments.php:94
msgid " (required)" msgid " (required)"
msgstr "(필수 입력)" msgstr "(필수 입력)"
#: templates/comments.php:86 #: templates/comments.php:94
msgid "Email (will not be published)" msgid "Email (will not be published)"
msgstr "이메일 주소 (공개되지 않습니다)" msgstr "이메일 주소 (공개되지 않습니다)"
#: templates/comments.php:88 #: templates/comments.php:96
msgid "Website" msgid "Website"
msgstr "웹사이트" msgstr "웹사이트"
#: templates/comments.php:91 #: templates/comments.php:99
msgid "Comment" msgid "Comment"
msgstr "댓글" msgstr "댓글"
#: templates/comments.php:93 #: templates/comments.php:101
msgid "Submit Comment" msgid "Submit Comment"
msgstr "댓글 쓰기" msgstr "댓글 쓰기"
@@ -268,46 +257,21 @@ msgstr "페이지:"
msgid "Sorry, no results were found." msgid "Sorry, no results were found."
msgstr "죄송합니다, 검색 결과가 없습니다." msgstr "죄송합니다, 검색 결과가 없습니다."
#: templates/content.php:26 #: templates/content.php:28 templates/content.php:30
msgid "&larr; Older posts" msgid "&larr; Older posts"
msgstr "&larr; 이전 포스트" msgstr "&larr; 이전 포스트"
#: templates/content.php:27 #: templates/content.php:33 templates/content.php:35
msgid "Newer posts &rarr;" msgid "Newer posts &rarr;"
msgstr "다음 포스트 &rarr;" msgstr "다음 포스트 &rarr;"
#: templates/page-header.php:8 #: templates/entry-meta.php:1
msgid "Latest Posts" msgid "Posted on %s at %s."
msgstr "최근 포스트" msgstr "%s %s에 작성"
#: templates/page-header.php:17 #: templates/entry-meta.php:2
#, php-format msgid "Written by"
msgid "Daily Archives: %s" msgstr "작성자:"
msgstr "일일 아카이브: %s"
#: templates/page-header.php:19
#, php-format
msgid "Monthly Archives: %s"
msgstr "월별 아카이브: %s"
#: templates/page-header.php:21
#, php-format
msgid "Yearly Archives: %s"
msgstr "연간 아카이브: %s"
#: templates/page-header.php:25
#, php-format
msgid "Author Archives: %s"
msgstr "저자별 아카이브: %s"
#: templates/page-header.php:30
#, php-format
msgid "Search Results for %s"
msgstr "%s의 검색 결과"
#: templates/page-header.php:32
msgid "File Not Found"
msgstr "파일을 찾을 수 없습니다"
#: templates/searchform.php:2 #: templates/searchform.php:2
msgid "Search for:" msgid "Search for:"

BIN
lang/mk_MK.mo Normal file → Executable file

Binary file not shown.

662
lang/mk_MK.po Normal file → Executable file
View File

@@ -1,365 +1,297 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Content-Type: text/plain; charset=utf-8\n" "Project-Id-Version: roots WP theme\n"
"Content-Transfer-Encoding: 8bit\n" "Report-Msgid-Bugs-To: \n"
"Project-Id-Version: \n" "POT-Creation-Date: \n"
"POT-Creation-Date: \n" "PO-Revision-Date: \n"
"PO-Revision-Date: \n" "Last-Translator: dejan <panovskidejan@gmail.com>\n"
"Last-Translator: Dejan Panovski <panovskidejan@gmail.com>\n" "Language-Team: \n"
"Language-Team: \n" "Language: mk_MK\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
#. Text in echo "Content-Transfer-Encoding: 8bit\n"
#: comments.php:80 "X-Poedit-SourceCharset: UTF-8\n"
#: comments.php:84 "X-Generator: Poedit 1.5.4\n"
msgid " (required)" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgstr "(Задолжително)"
#: 404.php:5
#. Text in echo msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
#: inc/roots-options.php:127 msgstr "Страницата која ја барате може да е тргната, преместена или да е привремено недостапна."
#: inc/roots-options.php:129
msgid "#main CSS Classes" #: 404.php:8
msgstr "#CSS класа за главниот лев дел" msgid "Please try the following:"
msgstr "Ве молиме, пробајте го следното:"
#. Text in echo
#: inc/roots-options.php:137 #: 404.php:10
#: inc/roots-options.php:139 msgid "Check your spelling"
msgid "#sidebar CSS Classes" msgstr "Проверете го правописот."
msgstr "#CSS класа за десниот дел"
#: 404.php:11
#. Text in function msgid "Return to the <a href=\"%s\">home page</a>"
#: comments.php:46 msgstr "Вратете се на <a href=\"%s\">почетната страница</a>."
msgid "% Responses to"
msgstr "% Одговорите на" #: 404.php:12
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
#. Text in function msgstr "Кликнете на копчето <a href=\"javascript:history.back()\">Назад</a>."
#: comments.php:8
msgid "%1$s" #: lib/activation.php:31
msgstr "%1$s" #: lib/activation.php:32
msgid "Theme Activation"
#. Text in function msgstr "Активирање"
#: inc/roots-options.php:94
msgid "%s Theme Options" #: lib/activation.php:68
msgstr "%s Опции на Темата" msgid "%s Theme Activation"
msgstr "%s активирање на темата"
#. Text in function
#: comments.php:53 #: lib/activation.php:83
msgid "&larr; Older comments" #: lib/activation.php:85
msgstr "&larr; Претходни коментари" msgid "Create static front page?"
msgstr "Сакате ли да креирате статична почетна страница?"
#. Text in function
#: loop-search.php:33 #: lib/activation.php:87
#: loop.php:37 #: lib/activation.php:100
msgid "&larr; Older posts" #: lib/activation.php:113
msgstr "&larr; Претходни мислења" #: lib/activation.php:126
#: lib/activation.php:139
#. Text in function msgid "Yes"
#: comments.php:9 msgstr "Да"
msgid "(Edit)"
msgstr "(Измени)" #: lib/activation.php:88
#: lib/activation.php:101
#. Text in function #: lib/activation.php:114
#: inc/roots-options.php:1 #: lib/activation.php:127
msgid "1140" #: lib/activation.php:140
msgstr "1140" msgid "No"
msgstr "Не"
#. Text in function
#: inc/roots-options.php:1 #: lib/activation.php:91
msgid "960gs (12 cols)" msgid "Create a page called Home and set it to be the static front page"
msgstr "960gs (12 колони)" msgstr "Креирај страница наречена Почетна и постави ја како статична почетна страница"
#. Text in function #: lib/activation.php:96
#: inc/roots-options.php:1 msgid "Change permalink structure?"
msgid "960gs (16 cols)" msgstr "Да се промени ли структурата на линковите?"
msgstr "960gs (16 колони)"
#: lib/activation.php:98
#. Text in function msgid "Update permalink structure?"
#: inc/roots-options.php:1 msgstr "Сакате ли да обновите структурата на линковите?"
msgid "960gs (24 cols)"
msgstr "960gs (24 колони)" #: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/"
#. Text in function msgstr "Смени ја структурата на линковите во /&#37;postname&#37;/"
#: comments.php:7
msgid "<cite class=\"fn\">%s</cite>" #: lib/activation.php:109
msgstr "<cite class=\"fn\">%s</cite>" msgid "Change uploads folder?"
msgstr "Да се промени ли директориумот за уплоадирани фајлови?"
#. Text in function
#: inc/roots-options.php:1 #: lib/activation.php:111
msgid "Adapt.js" msgid "Update uploads folder?"
msgstr "Adapt.js" msgstr "Сакате ли да го обновите директориумот за уплоадирани фајлови?"
#. Text in echo #: lib/activation.php:117
#: page-sitemap.php:18 msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgid "Archives" msgstr "Промени го директориумот за уплоадирани фајлови во /assets/, наместо /wp-content/uploads/"
msgstr "Архиви"
#: lib/activation.php:122
#. Text in function #: lib/activation.php:124
#: inc/roots-options.php:1 msgid "Create navigation menu?"
msgid "Blueprint CSS" msgstr "Сакате ли да креирате навигационо мени?"
msgstr "Blueprint CSS"
#: lib/activation.php:130
#. Text in echo msgid "Create the Primary Navigation menu and set the location"
#: inc/roots-options.php:106 msgstr "Креирај го Примарното навигационо мени и сетирај му ја локацијата"
#: inc/roots-options.php:108
msgid "CSS Grid Framework" #: lib/activation.php:135
msgstr "CSS Grid Framework" #: lib/activation.php:137
msgid "Add pages to menu?"
#. Text in echo msgstr "Сакате ли да додадете страници на менито?"
#: 404.php:13
msgid "Check your spelling" #: lib/activation.php:143
msgstr "Проверете го правописот" msgid "Add all current published pages to the Primary Navigation"
msgstr "Додади ги сите објавени страници на Примарното навигационо мени"
#. Text in echo
#: inc/roots-widgets.php:61 #: lib/cleanup.php:388
msgid "City/Locality:" msgid "Continued"
msgstr "Град/Локација:" msgstr "Повеќе"
#. Text in echo #: lib/htaccess.php:25
#: 404.php:15 msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button" msgstr "Ве молиме, уверете се дека вашиот <a href=\"%s\">.htaccess</a> може да се едитира"
msgstr "Кликнете на <a href=\"javascript:history.back()\">Назад</a> копчето"
#: lib/init.php:13
#. Text in echo msgid "Primary Navigation"
#: comments.php:93 msgstr "Примарно Навигационо Мени"
msgid "Comment"
msgstr "Коментар" #: lib/utils.php:14
msgid "Latest Posts"
#. Text in echo msgstr "Најнови Постови"
#: comments.php:63
msgid "Comments are closed." #: lib/utils.php:23
msgstr "Коментарите се затворени." msgid "Daily Archives: %s"
msgstr "Дневни Архиви: %s"
#. Text in function
#: inc/roots-cleanup.php:1 #: lib/utils.php:25
msgid "Continued" msgid "Monthly Archives: %s"
msgstr "Продолжено" msgstr "Месечни Архиви: %s"
#. Text in function #: lib/utils.php:27
#: inc/roots-options.php:132 msgid "Yearly Archives: %s"
#: inc/roots-options.php:142 msgstr "Годишни Архиви: %s"
msgid "Default: %s"
msgstr "Вообичаено: %s" #: lib/utils.php:31
msgid "Author Archives: %s"
#. Text in echo msgstr "Архиви на Авторот: %s"
#: comments.php:84
msgid "Email (will not be published)" #: lib/utils.php:36
msgstr "Е-маилот (нема да биде објавен)" msgid "Search Results for %s"
msgstr "Резултати од пребарувањето на %s"
#. Text in echo
#: inc/roots-widgets.php:77 #: lib/utils.php:38
msgid "Email:" msgid "File Not Found"
msgstr "Е-маил:" msgstr "Страницата не е пронајдена"
#. Text in function #: lib/widgets.php:6
#: inc/roots-options.php:152 msgid "Primary Sidebar"
msgid "Enter your UA-XXXXX-X ID" msgstr "Главен Сајдбар"
msgstr "Внесете го вашето UA-XXXXX-X ID"
#: lib/widgets.php:15
#. Text in echo msgid "Footer"
#: 404.php:7 msgstr "Футер"
msgid "File Not Found"
msgstr "Датотеката не е пронајдена" #: lib/widgets.php:41
msgid "Use this widget to add a vCard"
#. Text in echo msgstr "Користи го овој виџет, за да додадеш vCard"
#: inc/roots-options.php:147
#: inc/roots-options.php:149 #: lib/widgets.php:43
msgid "Google Analytics ID" msgid "Roots: vCard"
msgstr "Google Analytics ID" msgstr "Roots: vCard"
#. Text in echo #: lib/widgets.php:70
#: index.php:7 msgid "vCard"
msgid "Latest Posts" msgstr "vCard"
msgstr "Најнови мислења"
#: templates/comments.php:7
#. Text in function msgid "<cite class=\"fn\">%s</cite>"
#: comments.php:70 msgstr "<cite class=\"fn\">%s</cite>"
msgid "Leave a Reply"
msgstr "Остави Одговор" #: templates/comments.php:8
msgid "%1$s"
#. Text in function msgstr "%1$s"
#: comments.php:70
msgid "Leave a Reply to %s" #: templates/comments.php:9
msgstr "Остави Одговор на %s" msgid "(Edit)"
msgstr "(Едитирај)"
#. Text in echo
#: comments.php:77 #: templates/comments.php:15
msgid "Log out &raquo;" msgid "Your comment is awaiting moderation."
msgstr "Излез &raquo;" msgstr "Твојот Коментар чека на одобрение."
#. Text in function #: templates/comments.php:32
#: comments.php:77 msgid "This post is password protected. Enter the password to view comments."
msgid "Log out of this account" msgstr "Овој пост е зашитен со лозинка. Внесете лозинка, за да ги видите коментарите."
msgstr "Излези од оваа сметка"
#: templates/comments.php:39
#. Text in function msgid "One Response to &ldquo;%2$s&rdquo;"
#: comments.php:77 msgid_plural "%1$s Responses to &ldquo;%2$s&rdquo;"
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>." msgstr[0] "Еден одговор за &ldquo;%2$s&rdquo;"
msgstr "Најавен како <a href=\"%s/wp-admin/profile.php\">%s</a>." msgstr[1] "%1$s одговори за &ldquo;%2$s&rdquo;"
#. Text in echo #: templates/comments.php:49
#: comments.php:80 #: templates/comments.php:51
msgid "Name" msgid "&larr; Older comments"
msgstr "Име" msgstr "&larr; Постари коментари"
#. Text in function #: templates/comments.php:54
#: comments.php:54 #: templates/comments.php:56
msgid "Newer comments &rarr;" msgid "Newer comments &rarr;"
msgstr "Понови коментари &rarr;" msgstr "Понови коментари &rarr;"
#. Text in function #: templates/comments.php:66
#: loop-search.php:34 #: templates/comments.php:76
#: loop.php:38 msgid "Comments are closed."
msgid "Newer posts &rarr;" msgstr "Коментарите са исклучени"
msgstr "Понови постови &rarr;"
#: templates/comments.php:83
#. Text in function msgid "Leave a Reply"
#: comments.php:46 msgstr "Оставете коментар"
msgid "No Responses to"
msgstr "Нема Одговори на" #: templates/comments.php:83
msgid "Leave a Reply to %s"
#. Text in function msgstr "Оставете коментар за %s"
#: comments.php:46
msgid "One Response to" #: templates/comments.php:86
msgstr "Еден одговор на" msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "Треба да сте <a href=\"%s\">логиран</a>, за да објавите коментар."
#. Text in echo
#: page-sitemap.php:14 #: templates/comments.php:90
msgid "Pages" msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "Страници" msgstr "Логиран како: <a href=\"%s/wp-admin/profile.php\">%s</a>."
#. Text in function #: templates/comments.php:90
#: loop-page.php:7 msgid "Log out of this account"
#: loop-single.php:17 msgstr "Одлогирај се од овој профил"
msgid "Pages:"
msgstr "Страници:" #: templates/comments.php:90
msgid "Log out &raquo;"
#. Text in function msgstr "Излез &raquo;"
#: comments.php:28
msgid "Please do not load this page directly. Thanks!" #: templates/comments.php:92
msgstr "Ве молиме не ја отварајте оваа страница директно. Благодарам!" msgid "Name"
msgstr "Име"
#. Text in function
#: inc/roots-htaccess.php:1 #: templates/comments.php:92
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writeable " #: templates/comments.php:94
msgstr "Ве молиме бидете сигурни дека вашаиот <a href=\"%s\">.htaccess</a> датотека може да се запишува" msgid " (required)"
msgstr " (задолжително)"
#. Text in echo
#: 404.php:11 #: templates/comments.php:94
msgid "Please try the following:" msgid "Email (will not be published)"
msgstr "Ве молиме обидете се со следново:" msgstr "Емаил-адреса (нема да биде прикажана)"
#. Text in function #: templates/comments.php:96
#: inc/roots-admin.php:1 msgid "Website"
msgid "Please update your <a href=\"%s\">site tagline</a>" msgstr "Вебсајт"
msgstr "Ве молиме обновете го вашиот <a href=\"%s\">site tagline</a>"
#: templates/comments.php:99
#. Text in function msgid "Comment"
#: loop-single.php:8 msgstr "Коментар"
#: loop-search.php:16
#: loop.php:16 #: templates/comments.php:101
msgid "Posted on %s at %s." msgid "Submit Comment"
msgstr "Објавено на %s во %s." msgstr "Испрати Коментар"
#. Text in echo #: templates/content-single.php:11
#: page-sitemap.php:16 msgid "Pages:"
msgid "Posts" msgstr "Страници:"
msgstr "Постови"
#: templates/content.php:4
#. Text in function msgid "Sorry, no results were found."
#: 404.php:14 msgstr "Жалиме, нема пронајдени резултати"
msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "Врати се на <a href=\"%s\">главна страница</a>" #: templates/content.php:28
#: templates/content.php:30
#. Text in function msgid "&larr; Older posts"
#: inc/roots-widgets.php:1 msgstr "&larr; Постари постови"
msgid "Roots: vCard"
msgstr "Roots: vCard" #: templates/content.php:33
#: templates/content.php:35
#. Text in echo msgid "Newer posts &rarr;"
#: searchform.php:3 msgstr "Понови постови &rarr;"
#: searchform.php:4
msgid "Search" #: templates/entry-meta.php:1
msgstr "Барај" msgid "Posted on %s at %s."
msgstr "Публикувано на %s в %s."
#. Text in echo
#: search.php:7 #: templates/entry-meta.php:2
msgid "Search Results for" msgid "Written by"
msgstr "Резултати од пребарувањето за" msgstr "Автор"
#. Text in echo #: templates/searchform.php:2
#: searchform.php:2 msgid "Search for:"
msgid "Search for:" msgstr "Барање на:"
msgstr "Пребарај за:"
#: templates/searchform.php:3
#. Text in echo #: templates/searchform.php:4
#: loop-search.php:4 msgid "Search"
#: loop.php:4 msgstr "Барај"
msgid "Sorry, no results were found."
msgstr "За жал, нема резултати по пребарувањето."
#. Text in echo
#: inc/roots-widgets.php:65
msgid "State/Region:"
msgstr "Држава/регион:"
#. Text in echo
#: inc/roots-widgets.php:57
msgid "Street Address:"
msgstr "Улица и број:"
#. Text in echo
#: comments.php:96
msgid "Submit Comment"
msgstr "Прати коментар"
#. Text in echo
#: inc/roots-widgets.php:73
msgid "Telephone:"
msgstr "Телефон:"
#. Text in echo
#: 404.php:9
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
msgstr "Страната која ја баравте може да е избришана, да и е сменето името, или да е привремено недостапна."
#. Text in function
#: inc/roots-options.php:1
msgid "Theme Options"
msgstr "Опции на Темата"
#. Text in echo
#: comments.php:36
msgid "This post is password protected. Enter the password to view comments."
msgstr "Овој пост е заштитен со лозинка. Внесете ја лозинката за да ги видите коментарите."
#. Text in echo
#: inc/roots-widgets.php:53
msgid "Title (optional):"
msgstr "Наслов (опционално):"
#. Text in echo
#: comments.php:88
msgid "Website"
msgstr "Веб-страница"
#. Text in echo
#: loop-single.php:10
#: loop-search.php:17
msgid "Written by"
msgstr "Напишано од"
#. Text in function
#: comments.php:73
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "Мора да бидете <a href=\"%s\">најавени</a> за да испратите коментар."
#. Text in echo
#: comments.php:14
msgid "Your comment is awaiting moderation."
msgstr "Вашиот коментар чека модерација."
#. Text in echo
#: inc/roots-widgets.php:69
msgid "Zipcode/Postal Code:"
msgstr "Поштенски код/​​Поштенски код:"

View File

@@ -1,24 +1,10 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: \n" "Content-Type: text/plain; charset=utf-8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-28 11:22-0300\n"
"PO-Revision-Date: 2012-08-28 11:22-0300\n"
"Last-Translator: Weslly Honorato <weslly.honorato@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
"X-Poedit-Basepath: ../\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ./templates\n"
"X-Poedit-SearchPath-2: ./lib\n"
#: 404.php:5 #: 404.php:5
msgid "" msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
"The page you are looking for might have been removed, had its name changed, "
"or is temporarily unavailable."
msgstr "" msgstr ""
#: 404.php:8 #: 404.php:8
@@ -30,7 +16,6 @@ msgid "Check your spelling"
msgstr "" msgstr ""
#: 404.php:11 #: 404.php:11
#, php-format
msgid "Return to the <a href=\"%s\">home page</a>" msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "" msgstr ""
@@ -38,150 +23,137 @@ msgstr ""
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button" msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "" msgstr ""
#: functions.php:28 #: lib/activation.php:31 lib/activation.php:32
msgid "Primary Navigation"
msgstr ""
#: lib/activation.php:32 lib/activation.php:33
msgid "Theme Activation" msgid "Theme Activation"
msgstr "" msgstr ""
#: lib/activation.php:72 #: lib/activation.php:68
#, php-format
msgid "%s Theme Activation" msgid "%s Theme Activation"
msgstr "" msgstr ""
#: lib/activation.php:87 lib/activation.php:89 #: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?" msgid "Create static front page?"
msgstr "" msgstr ""
#: lib/activation.php:91 lib/activation.php:104 lib/activation.php:117 #: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: lib/activation.php:130 lib/activation.php:143 #: lib/activation.php:126 lib/activation.php:139
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: lib/activation.php:92 lib/activation.php:105 lib/activation.php:118 #: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: lib/activation.php:131 lib/activation.php:144 #: lib/activation.php:127 lib/activation.php:140
msgid "No" msgid "No"
msgstr "" msgstr ""
#: lib/activation.php:95 #: lib/activation.php:91
msgid "Create a page called Home and set it to be the static front page" msgid "Create a page called Home and set it to be the static front page"
msgstr "" msgstr ""
#: lib/activation.php:100 #: lib/activation.php:96
msgid "Change permalink structure?" msgid "Change permalink structure?"
msgstr "" msgstr ""
#: lib/activation.php:102 #: lib/activation.php:98
msgid "Update permalink structure?" msgid "Update permalink structure?"
msgstr "" msgstr ""
#: lib/activation.php:108 #: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/" msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "" msgstr ""
#: lib/activation.php:113 #: lib/activation.php:109
msgid "Change uploads folder?" msgid "Change uploads folder?"
msgstr "" msgstr ""
#: lib/activation.php:115 #: lib/activation.php:111
msgid "Update uploads folder?" msgid "Update uploads folder?"
msgstr "" msgstr ""
#: lib/activation.php:121 #: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/" msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr "" msgstr ""
#: lib/activation.php:126 lib/activation.php:128 #: lib/activation.php:122 lib/activation.php:124
msgid "Create navigation menu?" msgid "Create navigation menu?"
msgstr "" msgstr ""
#: lib/activation.php:134 #: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location" msgid "Create the Primary Navigation menu and set the location"
msgstr "" msgstr ""
#: lib/activation.php:139 lib/activation.php:141 #: lib/activation.php:135 lib/activation.php:137
msgid "Add pages to menu?" msgid "Add pages to menu?"
msgstr "" msgstr ""
#: lib/activation.php:147 #: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation" msgid "Add all current published pages to the Primary Navigation"
msgstr "" msgstr ""
#: lib/cleanup.php:404 #: lib/cleanup.php:388
msgid "Continued" msgid "Continued"
msgstr "" msgstr ""
#: lib/htaccess.php:26 #: lib/htaccess.php:25
#, php-format
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable " msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr "" msgstr ""
#: lib/template-tags.php:5 #: lib/init.php:13
#, php-format msgid "Primary Navigation"
msgid "Posted on %s at %s."
msgstr "" msgstr ""
#: lib/template-tags.php:6 #: lib/utils.php:14
msgid "Written by" msgid "Latest Posts"
msgstr ""
#: lib/utils.php:23
msgid "Daily Archives: %s"
msgstr ""
#: lib/utils.php:25
msgid "Monthly Archives: %s"
msgstr ""
#: lib/utils.php:27
msgid "Yearly Archives: %s"
msgstr ""
#: lib/utils.php:31
msgid "Author Archives: %s"
msgstr ""
#: lib/utils.php:36
msgid "Search Results for %s"
msgstr ""
#: lib/utils.php:38
msgid "File Not Found"
msgstr "" msgstr ""
#: lib/widgets.php:6 #: lib/widgets.php:6
msgid "Primary Sidebar" msgid "Primary Sidebar"
msgstr "" msgstr ""
#: lib/widgets.php:14 #: lib/widgets.php:15
msgid "Footer" msgid "Footer"
msgstr "" msgstr ""
#: lib/widgets.php:30 #: lib/widgets.php:41
msgid "Use this widget to add a vCard" msgid "Use this widget to add a vCard"
msgstr "" msgstr ""
#: lib/widgets.php:31 #: lib/widgets.php:43
msgid "Roots: vCard" msgid "Roots: vCard"
msgstr "" msgstr ""
#: lib/widgets.php:58 #: lib/widgets.php:70
msgid "vCard" msgid "vCard"
msgstr "" msgstr ""
#: lib/widgets.php:124
msgid "Title (optional):"
msgstr ""
#: lib/widgets.php:128
msgid "Street Address:"
msgstr ""
#: lib/widgets.php:132
msgid "City/Locality:"
msgstr ""
#: lib/widgets.php:136
msgid "State/Region:"
msgstr ""
#: lib/widgets.php:140
msgid "Zipcode/Postal Code:"
msgstr ""
#: lib/widgets.php:144
msgid "Telephone:"
msgstr ""
#: lib/widgets.php:148
msgid "Email:"
msgstr ""
#: templates/comments.php:7 #: templates/comments.php:7
#, php-format
msgid "<cite class=\"fn\">%s</cite>" msgid "<cite class=\"fn\">%s</cite>"
msgstr "" msgstr ""
#: templates/comments.php:8 #: templates/comments.php:8
#, php-format
msgid "%1$s" msgid "%1$s"
msgstr "" msgstr ""
@@ -197,66 +169,69 @@ msgstr ""
msgid "This post is password protected. Enter the password to view comments." msgid "This post is password protected. Enter the password to view comments."
msgstr "" msgstr ""
#: templates/comments.php:49 #: templates/comments.php:39
msgid "One Response to &ldquo;%2$s&rdquo;"
msgid_plural "%1$s Responses to &ldquo;%2$s&rdquo;"
msgstr[0] ""
msgstr[1] ""
#: templates/comments.php:49 templates/comments.php:51
msgid "&larr; Older comments" msgid "&larr; Older comments"
msgstr "" msgstr ""
#: templates/comments.php:50 #: templates/comments.php:54 templates/comments.php:56
msgid "Newer comments &rarr;" msgid "Newer comments &rarr;"
msgstr "" msgstr ""
#: templates/comments.php:58 templates/comments.php:68 #: templates/comments.php:66 templates/comments.php:76
msgid "Comments are closed." msgid "Comments are closed."
msgstr "" msgstr ""
#: templates/comments.php:75 #: templates/comments.php:83
msgid "Leave a Reply" msgid "Leave a Reply"
msgstr "" msgstr ""
#: templates/comments.php:75 #: templates/comments.php:83
#, php-format
msgid "Leave a Reply to %s" msgid "Leave a Reply to %s"
msgstr "" msgstr ""
#: templates/comments.php:78 #: templates/comments.php:86
#, php-format
msgid "You must be <a href=\"%s\">logged in</a> to post a comment." msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "" msgstr ""
#: templates/comments.php:82 #: templates/comments.php:90
#, php-format
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>." msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "" msgstr ""
#: templates/comments.php:82 #: templates/comments.php:90
msgid "Log out of this account" msgid "Log out of this account"
msgstr "" msgstr ""
#: templates/comments.php:82 #: templates/comments.php:90
msgid "Log out &raquo;" msgid "Log out &raquo;"
msgstr "" msgstr ""
#: templates/comments.php:84 #: templates/comments.php:92
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: templates/comments.php:84 templates/comments.php:86 #: templates/comments.php:92 templates/comments.php:94
msgid " (required)" msgid " (required)"
msgstr "" msgstr ""
#: templates/comments.php:86 #: templates/comments.php:94
msgid "Email (will not be published)" msgid "Email (will not be published)"
msgstr "" msgstr ""
#: templates/comments.php:88 #: templates/comments.php:96
msgid "Website" msgid "Website"
msgstr "" msgstr ""
#: templates/comments.php:91 #: templates/comments.php:99
msgid "Comment" msgid "Comment"
msgstr "" msgstr ""
#: templates/comments.php:93 #: templates/comments.php:101
msgid "Submit Comment" msgid "Submit Comment"
msgstr "" msgstr ""
@@ -268,45 +243,20 @@ msgstr ""
msgid "Sorry, no results were found." msgid "Sorry, no results were found."
msgstr "" msgstr ""
#: templates/content.php:26 #: templates/content.php:28 templates/content.php:30
msgid "&larr; Older posts" msgid "&larr; Older posts"
msgstr "" msgstr ""
#: templates/content.php:27 #: templates/content.php:33 templates/content.php:35
msgid "Newer posts &rarr;" msgid "Newer posts &rarr;"
msgstr "" msgstr ""
#: templates/page-header.php:8 #: templates/entry-meta.php:1
msgid "Latest Posts" msgid "Posted on %s at %s."
msgstr "" msgstr ""
#: templates/page-header.php:17 #: templates/entry-meta.php:2
#, php-format msgid "Written by"
msgid "Daily Archives: %s"
msgstr ""
#: templates/page-header.php:19
#, php-format
msgid "Monthly Archives: %s"
msgstr ""
#: templates/page-header.php:21
#, php-format
msgid "Yearly Archives: %s"
msgstr ""
#: templates/page-header.php:25
#, php-format
msgid "Author Archives: %s"
msgstr ""
#: templates/page-header.php:30
#, php-format
msgid "Search Results for %s"
msgstr ""
#: templates/page-header.php:32
msgid "File Not Found"
msgstr "" msgstr ""
#: templates/searchform.php:2 #: templates/searchform.php:2

Binary file not shown.

View File

@@ -5,516 +5,389 @@ msgstr ""
"PO-Revision-Date: \n" "PO-Revision-Date: \n"
"Last-Translator: Emre Erkan <kara@karalamalar.net>\n" "Last-Translator: Emre Erkan <kara@karalamalar.net>\n"
"Language-Team: karalamalar.net <kara@karalamalar.net>\n" "Language-Team: karalamalar.net <kara@karalamalar.net>\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Poedit-Language: Turkish\n"
"X-Poedit-Country: TURKEY\n"
"X-Poedit-SourceCharset: utf-8\n" "X-Poedit-SourceCharset: utf-8\n"
"X-Generator: Poedit 1.5.4\n"
#. Text in echo #: 404.php:5
#: comments.php:72 msgid ""
#: comments.php:76 "The page you are looking for might have been removed, had its name changed, "
msgid " (required)" "or is temporarily unavailable."
msgstr "(gerekli)" msgstr ""
"Görüntülemek istediğiniz sayfa kaldırılmış olabilir, ismi değişmiş olabilir "
"ya da geçici olarak ulaşılamıyor olabilir."
#. Text in echo #: 404.php:8
#: inc/roots-options.php:260
msgid "#fullwidth CSS Classes"
msgstr "#fullwidth CSS sınıfları"
#. Text in echo
#: inc/roots-options.php:238
#: inc/roots-options.php:240
msgid "#main CSS Classes"
msgstr "#main CSS sınıfları"
#. Text in echo
#: inc/roots-options.php:248
#: inc/roots-options.php:250
msgid "#sidebar CSS Classes"
msgstr "#sidebar CSS sınıfları"
#. Text in function
#: comments.php:8
msgid "%1$s"
msgstr "%1$s"
#. Text in function
#: inc/roots-activation.php:70
msgid "%s Theme Activation"
msgstr "%s tema etkinleştirme"
#. Text in function
#: inc/roots-options.php:214
msgid "%s Theme Options"
msgstr "%s Tema seçenekleri"
#. Text in function
#: comments.php:43
msgid "&larr; Older comments"
msgstr "&larr; Eski yorumlar"
#. Text in function
#: loop.php:34
msgid "&larr; Older posts"
msgstr "&larr; Eski yazılar"
#. Text in function
#: comments.php:9
msgid "(Edit)"
msgstr "(Düzenle)"
#. Text in function
#: inc/roots-options.php:1
msgid "1140"
msgstr "1140"
#. Text in function
#: inc/roots-options.php:1
msgid "960gs (12 cols)"
msgstr "960gs (12 kolon)"
#. Text in function
#: inc/roots-options.php:1
msgid "960gs (16 cols)"
msgstr "960gs (16 kolon)"
#. Text in function
#: inc/roots-options.php:1
msgid "960gs (24 cols)"
msgstr "960gs (24 kolon)"
#. Text in function
#: comments.php:7
msgid "<cite class=\"fn\">%s</cite>"
msgstr "<cite class=\"fn\">%s</cite>"
#. Text in function
#: inc/roots-options.php:1
msgid "Adapt.js"
msgstr "Adapt.js"
#. Text in function
#: inc/roots-activation.php:145
msgid "Add all current published pages to the Primary Navigation"
msgstr "Tüm yayınlanmış sayfaları birincil dolaşıma ekle"
#. Text in echo
#: inc/roots-activation.php:137
#: inc/roots-activation.php:139
msgid "Add pages to menu?"
msgstr "Sayfalar menüye eklensin mi?"
#. Text in function
#: archive.php:8
msgid "Author Archives: %s"
msgstr "Yazar arşivi: %s"
#. Text in function
#: inc/roots-options.php:1
msgid "Blueprint CSS"
msgstr "Blueprint CSS"
#. Text in function
#: inc/roots-options.php:1
msgid "Bootstrap"
msgstr "Bootstrap"
#. Text in echo
#: inc/roots-options.php:282
msgid "Bootstrap Javascript Packages"
msgstr "Bootstrap Javascript paketleri"
#. Text in function
#: inc/roots-options.php:1
msgid "Bootstrap w/ Less"
msgstr "Less ile Bootstrap"
#. Text in echo
#: inc/roots-options.php:226
#: inc/roots-options.php:228
msgid "CSS Grid Framework"
msgstr "CSS Grid Framework"
#. Text in function
#: inc/roots-activation.php:106
msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "Kalıcı bağlantı yapısını /&#37;yazi_ismi&#37;/ olarak değiştir"
#. Text in echo
#: inc/roots-activation.php:98
msgid "Change permalink structure?"
msgstr "Kalıcı bağlantı yapısı değiştirilsin mi?"
#. Text in function
#: inc/roots-activation.php:119
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr "Yükleme klasörünü /wp-content/uploads/ yerine /assets/ olarak değiştir"
#. Text in echo
#: inc/roots-activation.php:111
msgid "Change uploads folder?"
msgstr "Yükleme klasörü değiştirilsin mi?"
#. Text in echo
#: 404.php:11
msgid "Check your spelling"
msgstr "İmla kontrolü"
#. Text in echo
#: inc/roots-widgets.php:107
msgid "City/Locality:"
msgstr "Şehir/Yerel:"
#. Text in echo
#: inc/roots-options.php:315
#: inc/roots-options.php:317
msgid "Cleanup Menu Output"
msgstr "Menü çıktısını temizle"
#. Text in echo
#: 404.php:13
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "<a href=\"javascript:history.back()\">Geri</a> tuşuna basın"
#. Text in echo
#: comments.php:85
msgid "Comment"
msgstr "Yorum"
#. Text in echo
#: comments.php:49
#: comments.php:56
msgid "Comments are closed."
msgstr "Yorumlar kapalı."
#. Text in function
#: inc/roots-cleanup.php:1
msgid "Continued"
msgstr "Devamı"
#. Text in function
#: inc/roots-activation.php:93
msgid "Create a page called Home and set it to be the static front page"
msgstr "Ana sayfa isminde bir sayfa oluşturun ve giriş sayfası olarak sabitleyin"
#. Text in echo
#: inc/roots-activation.php:124
#: inc/roots-activation.php:126
msgid "Create navigation menus?"
msgstr "Dolaşım menüleri oluşturulsun mu?"
#. Text in echo
#: inc/roots-activation.php:85
#: inc/roots-activation.php:87
msgid "Create static front page?"
msgstr "Sabit ana sayfa oluşturulsun mu?"
#. Text in function
#: inc/roots-activation.php:132
msgid "Create the Primary and Utility Navigation menus and set their locations"
msgstr "Birincil dolaşım menüsü ve araçlar dolaşım menüsünü oluşturup yerlerini belirleyin"
#. Text in function
#: archive.php:8
msgid "Daily Archives: %s"
msgstr "Günlük Arşiv: %s"
#. Text in echo
#: inc/roots-options.php:243
#: inc/roots-options.php:253
#: inc/roots-options.php:263
msgid "Default:"
msgstr "Varsayılan:"
#. Text in echo
#: comments.php:76
msgid "Email (will not be published)"
msgstr "E-posta (Yayınlanmayacak)"
#. Text in echo
#: inc/roots-widgets.php:123
msgid "Email:"
msgstr "E-posta:"
#. Text in echo
#: inc/roots-options.php:284
msgid "Enable Bootstrap Javascript"
msgstr "Bootstrap Javascript&#8217;i etkinleştir"
#. Text in echo
#: inc/roots-options.php:304
#: inc/roots-options.php:306
msgid "Enable Root Relative URLs"
msgstr "Root bağıl adresleri etkinleştir"
#. Text in function
#: inc/roots-options.php:299
msgid "Enter your UA-XXXXX-X ID"
msgstr "UA-XXXXX-X Numaranızı girin"
#. Text in echo
#: 404.php:7
msgid "File Not Found"
msgstr "Dosya bulunamadı"
#. Text in function
#: inc/roots-options.php:1
msgid "Foundation"
msgstr "Temel"
#. Text in echo
#: inc/roots-options.php:258
msgid "Full Width CSS Classes"
msgstr "Tam genişlik CSS sınıfları"
#. Text in echo
#: inc/roots-options.php:294
#: inc/roots-options.php:296
msgid "Google Analytics ID"
msgstr "Google Analytics ID"
#. Text in echo
#: index.php:7
msgid "Latest Posts"
msgstr "Son yazılar"
#. Text in function
#: comments.php:62
msgid "Leave a Reply"
msgstr "Bir yant bırakın"
#. Text in function
#: comments.php:62
msgid "Leave a Reply to %s"
msgstr "%s için bir yanıt bırakın"
#. Text in function
#: inc/roots-options.php:1
msgid "Less Framework 4"
msgstr "Less Framework 4"
#. Text in echo
#: comments.php:69
msgid "Log out &raquo;"
msgstr "Çıkış &raquo;"
#. Text in function
#: comments.php:69
msgid "Log out of this account"
msgstr "Bu hesaptan çıkış yapın"
#. Text in function
#: comments.php:69
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a> olarak giriş yapılmış."
#. Text in function
#: archive.php:8
msgid "Monthly Archives: %s"
msgstr "Aylık arşiv: %s"
#. Text in echo
#: comments.php:72
msgid "Name"
msgstr "İsim"
#. Text in function
#: comments.php:44
msgid "Newer comments &rarr;"
msgstr "Yeni yorumlar &arr;"
#. Text in function
#: loop.php:35
msgid "Newer posts &rarr;"
msgstr "Yeni yazılar &rarr;"
#. Text in echo
#: inc/roots-activation.php:142
#: inc/roots-options.php:274
#: inc/roots-options.php:287
#: inc/roots-options.php:309
#: inc/roots-options.php:320
msgid "No"
msgstr "Hayır"
#. Text in function
#: inc/roots-options.php:1
msgid "None"
msgstr "Hiçbiri"
#. Text in function
#: loop-single.php:14
#: loop-page.php:7
msgid "Pages:"
msgstr "Sayfalar:"
#. Text in function
#: inc/roots-htaccess.php:1
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr "<a href=\"%s\">.htaccess</a> dosyasının yazılabilir olduğundan emin olun"
#. Text in echo
#: 404.php:9
msgid "Please try the following:" msgid "Please try the following:"
msgstr "Lütfen şunu deneyin:" msgstr "Lütfen şunu deneyin:"
#. Text in function #: 404.php:10
#: inc/roots-cleanup.php:1 msgid "Check your spelling"
msgid "Please update your <a href=\"%s\">site tagline</a> <a href=\"%s\" style=\"float: right;\">Hide Notice</a>" msgstr "İmla kontrolü"
msgstr "Lütfen sitenizin <a href=\"%s\">sloganını</a> güncelleyin <a href=\"%s\" style=\"float: right;\">Bu notu gizle</a>"
#. Text in function #: 404.php:11
#: functions.php:1
msgid "Posted on %s at %s."
msgstr "%s - %s için gönderildi"
#. Text in function
#: functions.php:1
msgid "Primary Navigation"
msgstr "Birincil dolaşım"
#. Text in function
#: 404.php:12
msgid "Return to the <a href=\"%s\">home page</a>" msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "<a href=\"%s\">Ana sayfa</a>ya dön" msgstr "<a href=\"%s\">Ana sayfa</a>ya dön"
#. Text in function #: 404.php:12
#: inc/roots-widgets.php:1 msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgid "Roots: vCard" msgstr "<a href=\"javascript:history.back()\">Geri</a> tuşuna basın"
msgstr "Roots: vCard"
#. Text in echo #: lib/activation.php:31 lib/activation.php:32
#: searchform.php:3
#: searchform.php:4
msgid "Search"
msgstr "Ara"
#. Text in echo
#: search.php:7
msgid "Search Results for"
msgstr "Arama sonuçları"
#. Text in echo
#: searchform.php:2
msgid "Search for:"
msgstr "Ara:"
#. Text in echo
#: loop.php:3
msgid "Sorry, no results were found."
msgstr "Üzgünüz, sonuç bulunamadı."
#. Text in echo
#: inc/roots-widgets.php:111
msgid "State/Region:"
msgstr "İlçe:"
#. Text in echo
#: inc/roots-widgets.php:103
msgid "Street Address:"
msgstr "Adres:"
#. Text in echo
#: comments.php:88
msgid "Submit Comment"
msgstr "Yorumu gönder"
#. Text in echo
#: inc/roots-widgets.php:119
msgid "Telephone:"
msgstr "Telefon:"
#. Text in echo
#: 404.php:8
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
msgstr "Görüntülemek istediğiniz sayfa kaldırılmış olabilir, ismi değişmiş olabilir ya da geçici olarak ulaşılamıyor olabilir."
#. Text in function
#: inc/roots-activation.php:1
msgid "Theme Activation" msgid "Theme Activation"
msgstr "Tema Etkinleştirme" msgstr "Tema Etkinleştirme"
#. Text in function #: lib/activation.php:68
#: inc/roots-options.php:1 msgid "%s Theme Activation"
msgid "Theme Options" msgstr "%s tema etkinleştirme"
msgstr "Tema Seçenekleri"
#. Text in echo #: lib/activation.php:83 lib/activation.php:85
#: comments.php:27 msgid "Create static front page?"
msgid "This post is password protected. Enter the password to view comments." msgstr "Sabit ana sayfa oluşturulsun mu?"
msgstr "Bu yazı parola korumalıdır. Yorumları görmek için parolayı giriniz."
#. Text in echo #: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: inc/roots-widgets.php:99 #: lib/activation.php:126 lib/activation.php:139
msgid "Title (optional):"
msgstr "Başlık (isteğe bağlı):"
#. Text in echo
#: inc/roots-activation.php:100
msgid "Update permalink structure?"
msgstr "Kalıcı bağlantı yapısı güncellensin mi?"
#. Text in echo
#: inc/roots-activation.php:113
msgid "Update uploads folder?"
msgstr "Yükleme klasörü güncellensin mi?"
#. Text in function
#: inc/roots-widgets.php:1
msgid "Use this widget to add a vCard"
msgstr "Bir vCard eklemek için bu bileşeni kullanın"
#. Text in function
#: functions.php:1
msgid "Utility Navigation"
msgstr "Araçlar dolaşımı"
#. Text in echo
#: comments.php:80
msgid "Website"
msgstr "Websitesi"
#. Text in function
#: functions.php:1
msgid "Written by"
msgstr "Yazar"
#. Text in function
#: archive.php:8
msgid "Yearly Archives: %s"
msgstr "Yıllık arşiv: %s"
#. Text in echo
#: inc/roots-activation.php:141
#: inc/roots-options.php:273
#: inc/roots-options.php:286
#: inc/roots-options.php:308
#: inc/roots-options.php:319
msgid "Yes" msgid "Yes"
msgstr "Evet" msgstr "Evet"
#. Text in function #: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: comments.php:65 #: lib/activation.php:127 lib/activation.php:140
msgid "You must be <a href=\"%s\">logged in</a> to post a comment." msgid "No"
msgstr "Yorum yapmak için <a href=\"%s\">giriş</a> yapmış olmalısınız." msgstr "Hayır"
#. Text in echo #: lib/activation.php:91
#: comments.php:13 msgid "Create a page called Home and set it to be the static front page"
msgstr ""
"Ana sayfa isminde bir sayfa oluşturun ve giriş sayfası olarak sabitleyin"
#: lib/activation.php:96
msgid "Change permalink structure?"
msgstr "Kalıcı bağlantı yapısı değiştirilsin mi?"
#: lib/activation.php:98
msgid "Update permalink structure?"
msgstr "Kalıcı bağlantı yapısı güncellensin mi?"
#: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "Kalıcı bağlantı yapısını /&#37;yazi_ismi&#37;/ olarak değiştir"
#: lib/activation.php:109
msgid "Change uploads folder?"
msgstr "Yükleme klasörü değiştirilsin mi?"
#: lib/activation.php:111
msgid "Update uploads folder?"
msgstr "Yükleme klasörü güncellensin mi?"
#: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr "Yükleme klasörünü /wp-content/uploads/ yerine /assets/ olarak değiştir"
#: lib/activation.php:122 lib/activation.php:124
msgid "Create navigation menu?"
msgstr "Dolaşım menüsü oluşturulsun mu?"
#: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location"
msgstr "Birincil dolaşım menüsünü oluşturup yerini belirleyin"
#: lib/activation.php:135 lib/activation.php:137
msgid "Add pages to menu?"
msgstr "Sayfalar menüye eklensin mi?"
#: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation"
msgstr "Tüm yayınlanmış sayfaları birincil dolaşıma ekle"
#: lib/cleanup.php:388
msgid "Continued"
msgstr "Devamı"
#: lib/htaccess.php:25
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr ""
"<a href=\"%s\">.htaccess</a> dosyasının yazılabilir olduğundan emin olun"
#: lib/init.php:13
msgid "Primary Navigation"
msgstr "Birincil dolaşım"
#: lib/utils.php:14
msgid "Latest Posts"
msgstr "Son yazılar"
#: lib/utils.php:23
msgid "Daily Archives: %s"
msgstr "Günlük Arşiv: %s"
#: lib/utils.php:25
msgid "Monthly Archives: %s"
msgstr "Aylık arşiv: %s"
#: lib/utils.php:27
msgid "Yearly Archives: %s"
msgstr "Yıllık arşiv: %s"
#: lib/utils.php:31
msgid "Author Archives: %s"
msgstr "Yazar arşivi: %s"
#: lib/utils.php:36
msgid "Search Results for %s"
msgstr "%s için arama sonuçları"
#: lib/utils.php:38
msgid "File Not Found"
msgstr "Dosya bulunamadı"
#: lib/widgets.php:6
msgid "Primary Sidebar"
msgstr "Birincil yan menü"
#: lib/widgets.php:15
msgid "Footer"
msgstr "Alt bölüm"
#: lib/widgets.php:41
msgid "Use this widget to add a vCard"
msgstr "Bir vCard eklemek için bu bileşeni kullanın"
#: lib/widgets.php:43
msgid "Roots: vCard"
msgstr "Roots: vCard"
#: lib/widgets.php:70
msgid "vCard"
msgstr "vCard"
#: templates/comments.php:7
msgid "<cite class=\"fn\">%s</cite>"
msgstr "<cite class=\"fn\">%s</cite>"
#: templates/comments.php:8
msgid "%1$s"
msgstr "%1$s"
#: templates/comments.php:9
msgid "(Edit)"
msgstr "(Düzenle)"
#: templates/comments.php:15
msgid "Your comment is awaiting moderation." msgid "Your comment is awaiting moderation."
msgstr "Yorumunuz onay bekliyor." msgstr "Yorumunuz onay bekliyor."
#. Text in echo #: templates/comments.php:32
#: inc/roots-widgets.php:115 msgid "This post is password protected. Enter the password to view comments."
msgid "Zipcode/Postal Code:" msgstr "Bu yazı parola korumalıdır. Yorumları görmek için parolayı giriniz."
msgstr "Posta kodu:"
#. Text in function #: templates/comments.php:39
#: inc/roots-widgets.php:1 msgid "One Response to &ldquo;%2$s&rdquo;"
msgid "vCard" msgid_plural "%1$s Responses to &ldquo;%2$s&rdquo;"
msgstr "vCard" msgstr[0] "&ldquo;%2$s&rdquo; için bir yanıt"
msgstr[1] "&ldquo;%2$s&rdquo; için %1$s yanıt"
#: templates/comments.php:49 templates/comments.php:51
msgid "&larr; Older comments"
msgstr "&larr; Eski yorumlar"
#: templates/comments.php:54 templates/comments.php:56
msgid "Newer comments &rarr;"
msgstr "Yeni yorumlar &arr;"
#: templates/comments.php:66 templates/comments.php:76
msgid "Comments are closed."
msgstr "Yorumlar kapalı."
#: templates/comments.php:83
msgid "Leave a Reply"
msgstr "Bir yant bırakın"
#: templates/comments.php:83
msgid "Leave a Reply to %s"
msgstr "%s için bir yanıt bırakın"
#: templates/comments.php:86
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr "Yorum yapmak için <a href=\"%s\">giriş</a> yapmış olmalısınız."
#: templates/comments.php:90
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a> olarak giriş yapılmış."
#: templates/comments.php:90
msgid "Log out of this account"
msgstr "Bu hesaptan çıkış yapın"
#: templates/comments.php:90
msgid "Log out &raquo;"
msgstr "Çıkış &raquo;"
#: templates/comments.php:92
msgid "Name"
msgstr "İsim"
#: templates/comments.php:92 templates/comments.php:94
msgid " (required)"
msgstr "(gerekli)"
#: templates/comments.php:94
msgid "Email (will not be published)"
msgstr "E-posta (Yayınlanmayacak)"
#: templates/comments.php:96
msgid "Website"
msgstr "Websitesi"
#: templates/comments.php:99
msgid "Comment"
msgstr "Yorum"
#: templates/comments.php:101
msgid "Submit Comment"
msgstr "Yorumu gönder"
#: templates/content-single.php:11
msgid "Pages:"
msgstr "Sayfalar:"
#: templates/content.php:4
msgid "Sorry, no results were found."
msgstr "Üzgünüz, sonuç bulunamadı."
#: templates/content.php:28 templates/content.php:30
msgid "&larr; Older posts"
msgstr "&larr; Eski yazılar"
#: templates/content.php:33 templates/content.php:35
msgid "Newer posts &rarr;"
msgstr "Yeni yazılar &rarr;"
#: templates/entry-meta.php:1
msgid "Posted on %s at %s."
msgstr "%s - %s için gönderildi"
#: templates/entry-meta.php:2
msgid "Written by"
msgstr "Yazar"
#: templates/searchform.php:2
msgid "Search for:"
msgstr "Ara:"
#: templates/searchform.php:3 templates/searchform.php:4
msgid "Search"
msgstr "Ara"
#~ msgid "#fullwidth CSS Classes"
#~ msgstr "#fullwidth CSS sınıfları"
#~ msgid "#main CSS Classes"
#~ msgstr "#main CSS sınıfları"
#~ msgid "#sidebar CSS Classes"
#~ msgstr "#sidebar CSS sınıfları"
#~ msgid "%s Theme Options"
#~ msgstr "%s Tema seçenekleri"
#~ msgid "1140"
#~ msgstr "1140"
#~ msgid "960gs (12 cols)"
#~ msgstr "960gs (12 kolon)"
#~ msgid "960gs (16 cols)"
#~ msgstr "960gs (16 kolon)"
#~ msgid "960gs (24 cols)"
#~ msgstr "960gs (24 kolon)"
#~ msgid "Adapt.js"
#~ msgstr "Adapt.js"
#~ msgid "Blueprint CSS"
#~ msgstr "Blueprint CSS"
#~ msgid "Bootstrap"
#~ msgstr "Bootstrap"
#~ msgid "Bootstrap Javascript Packages"
#~ msgstr "Bootstrap Javascript paketleri"
#~ msgid "Bootstrap w/ Less"
#~ msgstr "Less ile Bootstrap"
#~ msgid "CSS Grid Framework"
#~ msgstr "CSS Grid Framework"
#~ msgid "City/Locality:"
#~ msgstr "Şehir/Yerel:"
#~ msgid "Cleanup Menu Output"
#~ msgstr "Menü çıktısını temizle"
#~ msgid "Default:"
#~ msgstr "Varsayılan:"
#~ msgid "Email:"
#~ msgstr "E-posta:"
#~ msgid "Enable Bootstrap Javascript"
#~ msgstr "Bootstrap Javascript&#8217;i etkinleştir"
#~ msgid "Enable Root Relative URLs"
#~ msgstr "Root bağıl adresleri etkinleştir"
#~ msgid "Enter your UA-XXXXX-X ID"
#~ msgstr "UA-XXXXX-X Numaranızı girin"
#~ msgid "Foundation"
#~ msgstr "Temel"
#~ msgid "Full Width CSS Classes"
#~ msgstr "Tam genişlik CSS sınıfları"
#~ msgid "Google Analytics ID"
#~ msgstr "Google Analytics ID"
#~ msgid "Less Framework 4"
#~ msgstr "Less Framework 4"
#~ msgid "None"
#~ msgstr "Hiçbiri"
#~ msgid ""
#~ "Please update your <a href=\"%s\">site tagline</a> <a href=\"%s\" style="
#~ "\"float: right;\">Hide Notice</a>"
#~ msgstr ""
#~ "Lütfen sitenizin <a href=\"%s\">sloganını</a> güncelleyin <a href=\"%s\" "
#~ "style=\"float: right;\">Bu notu gizle</a>"
#~ msgid "State/Region:"
#~ msgstr "İlçe:"
#~ msgid "Street Address:"
#~ msgstr "Adres:"
#~ msgid "Telephone:"
#~ msgstr "Telefon:"
#~ msgid "Theme Options"
#~ msgstr "Tema Seçenekleri"
#~ msgid "Title (optional):"
#~ msgstr "Başlık (isteğe bağlı):"
#~ msgid "Utility Navigation"
#~ msgstr "Araçlar dolaşımı"
#~ msgid "Zipcode/Postal Code:"
#~ msgstr "Posta kodu:"
#~ msgid "% Responses to" #~ msgid "% Responses to"
#~ msgstr "% yanıt" #~ msgstr "% yanıt"
@@ -522,9 +395,6 @@ msgstr "vCard"
#~ msgid "No Responses to" #~ msgid "No Responses to"
#~ msgstr "Yanıt yok" #~ msgstr "Yanıt yok"
#~ msgid "One Response to"
#~ msgstr "Bir yanıt"
#~ msgid "Pages" #~ msgid "Pages"
#~ msgstr "Sayfalar" #~ msgstr "Sayfalar"

View File

@@ -360,8 +360,10 @@ function roots_gallery($attr) {
return $output; return $output;
} }
remove_shortcode('gallery'); if (current_theme_supports('bootstrap-gallery')) {
add_shortcode('gallery', 'roots_gallery'); remove_shortcode('gallery');
add_shortcode('gallery', 'roots_gallery');
}
/** /**
* Remove unnecessary dashboard widgets * Remove unnecessary dashboard widgets
@@ -488,7 +490,9 @@ function roots_nice_search_redirect() {
} }
} }
add_action('template_redirect', 'roots_nice_search_redirect'); if (current_theme_supports('nice-search')) {
add_action('template_redirect', 'roots_nice_search_redirect');
}
/** /**
* Fix for empty search queries redirecting to home page * Fix for empty search queries redirecting to home page

View File

@@ -1,14 +1,42 @@
<?php <?php
/**
* Roots configuration
*/
// Enable theme features /**
* Enable theme features
*/
add_theme_support('root-relative-urls'); // Enable relative URLs add_theme_support('root-relative-urls'); // Enable relative URLs
add_theme_support('rewrite-urls'); // Enable URL rewrites add_theme_support('rewrites'); // Enable URL rewrites
add_theme_support('h5bp-htaccess'); // Enable HTML5 Boilerplate's .htaccess add_theme_support('h5bp-htaccess'); // Enable HTML5 Boilerplate's .htaccess
add_theme_support('bootstrap-top-navbar'); // Enable Bootstrap's fixed navbar add_theme_support('bootstrap-top-navbar'); // Enable Bootstrap's fixed navbar
add_theme_support('bootstrap-gallery'); // Enable Bootstrap's thumbnails component on [gallery]
add_theme_support('nice-search'); // Enable /?s= to /search/ redirect
/**
* Configuration values
*/
define('GOOGLE_ANALYTICS_ID', ''); // UA-XXXXX-Y
define('POST_EXCERPT_LENGTH', 40);
/**
* .main classes
*/
function roots_main_class() {
if (roots_display_sidebar()) {
// Classes on pages with the sidebar
$class = 'span8';
} else {
// Classes on full width pages
$class = 'span12';
}
return $class;
}
/**
* .sidebar classes
*/
function roots_sidebar_class() {
return 'span4';
}
/** /**
* Define which pages shouldn't have the sidebar * Define which pages shouldn't have the sidebar
@@ -43,33 +71,11 @@ function roots_display_sidebar() {
return $sidebar_config->display; return $sidebar_config->display;
} }
// #main CSS classes
function roots_main_class() {
if (roots_display_sidebar()) {
$class = 'span8';
} else {
$class = 'span12';
}
return $class;
}
// #sidebar CSS classes
function roots_sidebar_class() {
return 'span4';
}
// Configuration values
define('GOOGLE_ANALYTICS_ID', ''); // UA-XXXXX-Y
define('POST_EXCERPT_LENGTH', 40);
/** /**
* $content_width is a global variable used by WordPress for max image upload sizes and media embeds (in pixels) * $content_width is a global variable used by WordPress for max image upload sizes
* * and media embeds (in pixels).
* Example: If the content area is 640px wide, set $content_width = 620; so images and videos will not overflow. *
* * Example: If the content area is 640px wide, set $content_width = 620; so images and videos will not overflow.
* Default: 940px is the default Bootstrap container width. * Default: 940px is the default Bootstrap container width.
* */
* This is not required or used by Roots.
*/
if (!isset($content_width)) { $content_width = 940; } if (!isset($content_width)) { $content_width = 940; }

View File

@@ -1,95 +1,28 @@
<?php <?php
/** /**
* URL rewriting and addition of HTML5 Boilerplate's .htaccess * Add HTML5 Boilerplate's .htaccess via WordPress
*
* Rewrites currently do not happen for child themes (or network installs)
* @todo https://github.com/retlehs/roots/issues/461
*
* Rewrite:
* /wp-content/themes/themename/css/ to /css/
* /wp-content/themes/themename/js/ to /js/
* /wp-content/themes/themename/img/ to /img/
* /wp-content/plugins/ to /plugins/
*
* If you aren't using Apache, alternate configuration settings can be found in the docs.
*
* @link https://github.com/retlehs/roots/blob/master/doc/rewrites.md
*/ */
if (stristr($_SERVER['SERVER_SOFTWARE'], 'apache') || stristr($_SERVER['SERVER_SOFTWARE'], 'litespeed') !== false) { // Add the contents of h5bp-htaccess into .htaccess
function roots_add_h5bp_htaccess($content) {
global $wp_rewrite;
$home_path = function_exists('get_home_path') ? get_home_path() : ABSPATH;
$htaccess_file = $home_path . '.htaccess';
$mod_rewrite_enabled = function_exists('got_mod_rewrite') ? got_mod_rewrite() : false;
// Show an admin notice if .htaccess isn't writable if ((!file_exists($htaccess_file) && is_writable($home_path) && $wp_rewrite->using_mod_rewrite_permalinks()) || is_writable($htaccess_file)) {
function roots_htaccess_writable() { if ($mod_rewrite_enabled) {
if (!is_writable(get_home_path() . '.htaccess')) { $h5bp_rules = extract_from_markers($htaccess_file, 'HTML5 Boilerplate');
if (current_user_can('administrator')) { if ($h5bp_rules === array()) {
add_action('admin_notices', create_function('', "echo '<div class=\"error\"><p>" . sprintf(__('Please make sure your <a href="%s">.htaccess</a> file is writable ', 'roots'), admin_url('options-permalink.php')) . "</p></div>';")); $filename = dirname(__FILE__) . '/h5bp-htaccess';
return insert_with_markers($htaccess_file, 'HTML5 Boilerplate', extract_from_markers($filename, 'HTML5 Boilerplate'));
} }
} }
} }
add_action('admin_init', 'roots_htaccess_writable'); return $content;
}
function roots_add_rewrites($content) { if (current_theme_supports('h5bp-htaccess')) {
global $wp_rewrite; add_action('generate_rewrite_rules', 'roots_add_h5bp_htaccess');
$roots_new_non_wp_rules = array( }
'assets/css/(.*)' => THEME_PATH . '/assets/css/$1',
'assets/js/(.*)' => THEME_PATH . '/assets/js/$1',
'assets/img/(.*)' => THEME_PATH . '/assets/img/$1',
'plugins/(.*)' => RELATIVE_PLUGIN_PATH . '/$1'
);
$wp_rewrite->non_wp_rules = array_merge($wp_rewrite->non_wp_rules, $roots_new_non_wp_rules);
return $content;
}
function roots_clean_urls($content) {
if (strpos($content, FULL_RELATIVE_PLUGIN_PATH) === 0) {
return str_replace(FULL_RELATIVE_PLUGIN_PATH, WP_BASE . '/plugins', $content);
} else {
return str_replace('/' . THEME_PATH, '', $content);
}
}
if (!is_multisite() && !is_child_theme() && get_option('permalink_structure')) {
if (current_theme_supports('rewrite-urls')) {
add_action('generate_rewrite_rules', 'roots_add_rewrites');
}
if (current_theme_supports('h5bp-htaccess')) {
add_action('generate_rewrite_rules', 'roots_add_h5bp_htaccess');
}
if (!is_admin() && current_theme_supports('rewrite-urls')) {
$tags = array(
'plugins_url',
'bloginfo',
'stylesheet_directory_uri',
'template_directory_uri',
'script_loader_src',
'style_loader_src'
);
add_filters($tags, 'roots_clean_urls');
}
}
// Add the contents of h5bp-htaccess into the .htaccess file
function roots_add_h5bp_htaccess($content) {
global $wp_rewrite;
$home_path = function_exists('get_home_path') ? get_home_path() : ABSPATH;
$htaccess_file = $home_path . '.htaccess';
$mod_rewrite_enabled = function_exists('got_mod_rewrite') ? got_mod_rewrite() : false;
if ((!file_exists($htaccess_file) && is_writable($home_path) && $wp_rewrite->using_mod_rewrite_permalinks()) || is_writable($htaccess_file)) {
if ($mod_rewrite_enabled) {
$h5bp_rules = extract_from_markers($htaccess_file, 'HTML5 Boilerplate');
if ($h5bp_rules === array()) {
$filename = dirname(__FILE__) . '/h5bp-htaccess';
return insert_with_markers($htaccess_file, 'HTML5 Boilerplate', extract_from_markers($filename, 'HTML5 Boilerplate'));
}
}
}
return $content;
}
}

View File

@@ -22,7 +22,7 @@ function roots_setup() {
// add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat')); // add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat'));
// Tell the TinyMCE editor to use a custom stylesheet // Tell the TinyMCE editor to use a custom stylesheet
add_editor_style('assets/css/editor-style.css'); add_editor_style('/assets/css/editor-style.css');
} }

56
lib/rewrites.php Normal file
View File

@@ -0,0 +1,56 @@
<?php
/**
* URL rewriting
*
* Rewrites currently do not happen for child themes (or network installs)
* @todo https://github.com/retlehs/roots/issues/461
*
* Rewrite:
* /wp-content/themes/themename/css/ to /css/
* /wp-content/themes/themename/js/ to /js/
* /wp-content/themes/themename/img/ to /img/
* /wp-content/plugins/ to /plugins/
*
* If you aren't using Apache, alternate configuration settings can be found in the docs.
*
* @link https://github.com/retlehs/roots/blob/master/doc/rewrites.md
*/
function roots_add_rewrites($content) {
global $wp_rewrite;
$roots_new_non_wp_rules = array(
'assets/css/(.*)' => THEME_PATH . '/assets/css/$1',
'assets/js/(.*)' => THEME_PATH . '/assets/js/$1',
'assets/img/(.*)' => THEME_PATH . '/assets/img/$1',
'plugins/(.*)' => RELATIVE_PLUGIN_PATH . '/$1'
);
$wp_rewrite->non_wp_rules = array_merge($wp_rewrite->non_wp_rules, $roots_new_non_wp_rules);
return $content;
}
function roots_clean_urls($content) {
if (strpos($content, FULL_RELATIVE_PLUGIN_PATH) === 0) {
return str_replace(FULL_RELATIVE_PLUGIN_PATH, WP_BASE . '/plugins', $content);
} else {
return str_replace('/' . THEME_PATH, '', $content);
}
}
if (!is_multisite() && !is_child_theme() && get_option('permalink_structure')) {
if (current_theme_supports('rewrites')) {
add_action('generate_rewrite_rules', 'roots_add_rewrites');
}
if (!is_admin() && current_theme_supports('rewrites')) {
$tags = array(
'plugins_url',
'bloginfo',
'stylesheet_directory_uri',
'template_directory_uri',
'script_loader_src',
'style_loader_src'
);
add_filters($tags, 'roots_clean_urls');
}
}

View File

@@ -6,26 +6,56 @@
* 1. /theme/assets/css/main.min.css * 1. /theme/assets/css/main.min.css
* *
* Enqueue scripts in the following order: * Enqueue scripts in the following order:
* 1. /theme/assets/js/vendor/modernizr-2.6.2.min.js (in head.php) * 1. /theme/assets/js/vendor/modernizr-2.6.2.min.js
* 2. jquery-1.9.0.min.js via Google CDN (in head.php) * 2. jquery-1.9.0.min.js via Google CDN
* 3. /theme/assets/js/plugins.js * 3. /theme/assets/js/scripts.min.js
* 4. /theme/assets/js/main.js
*/ */
function roots_scripts() { function roots_scripts() {
wp_enqueue_style('roots_main', get_template_directory_uri() . '/assets/css/main.min.css', false, '78911fc28d7ea4e9571fa2f37ad1bfd2'); wp_enqueue_style('roots_main', get_template_directory_uri() . '/assets/css/main.min.css', false, '78911fc28d7ea4e9571fa2f37ad1bfd2');
// Load style.css from child theme
if (is_child_theme()) {
wp_enqueue_style('roots_child', get_stylesheet_uri(), false, null);
}
// jQuery is loaded using the same method from HTML5 Boilerplate:
// Grab Google CDN's latest jQuery with a protocol relative URL; fallback to local if offline
// It's kept in the header instead of footer to avoid conflicts with plugins.
if (!is_admin()) { if (!is_admin()) {
wp_deregister_script('jquery'); wp_deregister_script('jquery');
wp_register_script('jquery', '', '', '1.9.0', false); wp_register_script('jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js', array('modernizr'), null, false);
} }
if (is_single() && comments_open() && get_option('thread_comments')) { if (is_single() && comments_open() && get_option('thread_comments')) {
wp_enqueue_script('comment-reply'); wp_enqueue_script('comment-reply');
} }
wp_register_script('roots_scripts', get_template_directory_uri() . '/assets/js/scripts.min.js', false, 'c40d165aabf0bf4734675f9fc726f3e6', true); wp_register_script('modernizr', get_template_directory_uri() . '/assets/js/vendor/modernizr-2.6.2.min.js', false, null, false);
wp_register_script('roots_scripts', get_template_directory_uri() . '/assets/js/scripts.min.js', false, 'c40d165aabf0bf4734675f9fc726f3e6', false);
wp_enqueue_script('modernizr');
wp_enqueue_script('jquery');
wp_enqueue_script('roots_scripts'); wp_enqueue_script('roots_scripts');
} }
add_action('wp_enqueue_scripts', 'roots_scripts', 100); add_action('wp_enqueue_scripts', 'roots_scripts', 100);
// http://wordpress.stackexchange.com/a/12450
function roots_jquery_local_fallback($src, $handle) {
static $add_jquery_fallback = false;
if ($add_jquery_fallback) {
echo '<script>window.jQuery || document.write(\'<script src="' . get_template_directory_uri() . '/assets/js/vendor/jquery-1.9.0.min.js"><\/script>\')</script>' . "\n";
$add_jquery_fallback = false;
}
if ($handle === 'jquery') {
$add_jquery_fallback = true;
}
return $src;
}
if (!is_admin()) {
add_filter('script_loader_src', 'roots_jquery_local_fallback', 10, 2);
}

View File

@@ -5,7 +5,56 @@
* *
* @link http://scribu.net/wordpress/theme-wrappers.html * @link http://scribu.net/wordpress/theme-wrappers.html
*/ */
function roots_template_path() {
return Roots_Wrapping::$main_template;
}
function roots_sidebar_path() {
return Roots_Wrapping::sidebar();
}
class Roots_Wrapping {
// Stores the full path to the main template file
static $main_template;
// Stores the base name of the template file; e.g. 'page' for 'page.php' etc.
static $base;
static function wrap($template) {
self::$main_template = $template;
self::$base = substr(basename(self::$main_template), 0, -4);
if (self::$base === 'index') {
self::$base = false;
}
$templates = array('base.php');
if (self::$base) {
array_unshift($templates, sprintf('base-%s.php', self::$base));
}
return locate_template($templates);
}
static function sidebar() {
$templates = array('templates/sidebar.php');
if (self::$base) {
array_unshift($templates, sprintf('templates/sidebar-%s.php', self::$base));
}
return locate_template($templates);
}
}
add_filter('template_include', array('Roots_Wrapping', 'wrap'), 99);
/**
* Page titles
*/
function roots_title() { function roots_title() {
if (is_home()) { if (is_home()) {
if (get_option('page_for_posts', true)) { if (get_option('page_for_posts', true)) {
@@ -41,38 +90,18 @@ function roots_title() {
} }
} }
function roots_template_path() { /**
return Roots_Wrapping::$main_template; * Show an admin notice if .htaccess isn't writable
} */
function roots_htaccess_writable() {
class Roots_Wrapping { if (!is_writable(get_home_path() . '.htaccess')) {
if (current_user_can('administrator')) {
// Stores the full path to the main template file add_action('admin_notices', create_function('', "echo '<div class=\"error\"><p>" . sprintf(__('Please make sure your <a href="%s">.htaccess</a> file is writable ', 'roots'), admin_url('options-permalink.php')) . "</p></div>';"));
static $main_template;
// Stores the base name of the template file; e.g. 'page' for 'page.php' etc.
static $base;
static function wrap($template) {
self::$main_template = $template;
self::$base = substr(basename(self::$main_template), 0, -4);
if (self::$base === 'index') {
self::$base = false;
} }
$templates = array('base.php');
if (self::$base) {
array_unshift($templates, sprintf('base-%s.php', self::$base ));
}
return locate_template($templates);
} }
} }
add_filter('template_include', array('Roots_Wrapping', 'wrap'), 99); add_action('admin_init', 'roots_htaccess_writable');
// returns WordPress subdirectory if applicable // returns WordPress subdirectory if applicable
function wp_base_dir() { function wp_base_dir() {

View File

@@ -5,7 +5,7 @@ function roots_widgets_init() {
register_sidebar(array( register_sidebar(array(
'name' => __('Primary Sidebar', 'roots'), 'name' => __('Primary Sidebar', 'roots'),
'id' => 'sidebar-primary', 'id' => 'sidebar-primary',
'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-inner">', 'before_widget' => '<section class="widget %1$s %2$s"><div class="widget-inner">',
'after_widget' => '</div></section>', 'after_widget' => '</div></section>',
'before_title' => '<h3>', 'before_title' => '<h3>',
'after_title' => '</h3>', 'after_title' => '</h3>',
@@ -14,7 +14,7 @@ function roots_widgets_init() {
register_sidebar(array( register_sidebar(array(
'name' => __('Footer', 'roots'), 'name' => __('Footer', 'roots'),
'id' => 'sidebar-footer', 'id' => 'sidebar-footer',
'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-inner">', 'before_widget' => '<section class="widget %1$s %2$s"><div class="widget-inner">',
'after_widget' => '</div></section>', 'after_widget' => '</div></section>',
'before_title' => '<h3>', 'before_title' => '<h3>',
'after_title' => '</h3>', 'after_title' => '</h3>',

View File

@@ -1,7 +1,7 @@
<?php function roots_comment($comment, $args, $depth) { <?php function roots_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?> $GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?>> <li <?php comment_class(); ?>>
<article id="comment-<?php comment_ID(); ?>"> <article class="comment-<?php comment_ID(); ?>">
<header class="comment-author vcard"> <header class="comment-author vcard">
<?php echo get_avatar($comment, $size = '32'); ?> <?php echo get_avatar($comment, $size = '32'); ?>
<?php printf(__('<cite class="fn">%s</cite>', 'roots'), get_comment_author_link()); ?> <?php printf(__('<cite class="fn">%s</cite>', 'roots'), get_comment_author_link()); ?>
@@ -43,7 +43,7 @@
</ol> </ol>
<?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : // are there comments to navigate through ?> <?php if (get_comment_pages_count() > 1 && get_option('page_comments')) : // are there comments to navigate through ?>
<nav id="comments-nav" class="pager"> <nav>
<ul class="pager"> <ul class="pager">
<?php if (get_previous_comments_link()) : ?> <?php if (get_previous_comments_link()) : ?>
<li class="previous"><?php previous_comments_link(__('&larr; Older comments', 'roots')); ?></li> <li class="previous"><?php previous_comments_link(__('&larr; Older comments', 'roots')); ?></li>

View File

@@ -1,5 +1,5 @@
<?php while (have_posts()) : the_post(); ?> <?php while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>"> <article <?php post_class(); ?>>
<header> <header>
<h1 class="entry-title"><?php the_title(); ?></h1> <h1 class="entry-title"><?php the_title(); ?></h1>
<?php get_template_part('templates/entry-meta'); ?> <?php get_template_part('templates/entry-meta'); ?>
@@ -8,7 +8,7 @@
<?php the_content(); ?> <?php the_content(); ?>
</div> </div>
<footer> <footer>
<?php wp_link_pages(array('before' => '<nav id="page-nav"><p>' . __('Pages:', 'roots'), 'after' => '</p></nav>')); ?> <?php wp_link_pages(array('before' => '<nav class="page-nav"><p>' . __('Pages:', 'roots'), 'after' => '</p></nav>')); ?>
<?php the_tags('<ul class="entry-tags"><li>','</li><li>','</li></ul>'); ?> <?php the_tags('<ul class="entry-tags"><li>','</li><li>','</li></ul>'); ?>
</footer> </footer>
<?php comments_template('/templates/comments.php'); ?> <?php comments_template('/templates/comments.php'); ?>

View File

@@ -7,7 +7,7 @@
<?php endif; ?> <?php endif; ?>
<?php while (have_posts()) : the_post(); ?> <?php while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <article <?php post_class(); ?>>
<header> <header>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php get_template_part('templates/entry-meta'); ?> <?php get_template_part('templates/entry-meta'); ?>
@@ -22,7 +22,7 @@
<?php endwhile; ?> <?php endwhile; ?>
<?php if ($wp_query->max_num_pages > 1) : ?> <?php if ($wp_query->max_num_pages > 1) : ?>
<nav id="post-nav"> <nav class="post-nav">
<ul class="pager"> <ul class="pager">
<?php if (get_next_posts_link()) : ?> <?php if (get_next_posts_link()) : ?>
<li class="previous"><?php next_posts_link(__('&larr; Older posts', 'roots')); ?></li> <li class="previous"><?php next_posts_link(__('&larr; Older posts', 'roots')); ?></li>

View File

@@ -1,6 +1,8 @@
<footer id="content-info" class="container" role="contentinfo"> <footer class="content-info" role="contentinfo">
<?php dynamic_sidebar('sidebar-footer'); ?> <div class="container">
<p>&copy; <?php echo date('Y'); ?> <?php bloginfo('name'); ?></p> <?php dynamic_sidebar('sidebar-footer'); ?>
<p>&copy; <?php echo date('Y'); ?> <?php bloginfo('name'); ?></p>
</div>
</footer> </footer>
<?php if (GOOGLE_ANALYTICS_ID) : ?> <?php if (GOOGLE_ANALYTICS_ID) : ?>
@@ -12,4 +14,4 @@
</script> </script>
<?php endif; ?> <?php endif; ?>
<?php wp_footer(); ?> <?php wp_footer(); ?>

View File

@@ -8,14 +8,7 @@
<title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title> <title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/vendor/modernizr-2.6.2.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="<?php echo get_template_directory_uri(); ?>/assets/js/vendor/jquery-1.9.0.min.js"><\/script>')</script>
<?php wp_head(); ?> <?php wp_head(); ?>
<?php if (wp_count_posts()->publish > 0) : ?>
<link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name'); ?> Feed" href="<?php echo home_url(); ?>/feed/"> <link rel="alternate" type="application/rss+xml" title="<?php echo get_bloginfo('name'); ?> Feed" href="<?php echo home_url(); ?>/feed/">
<?php endif; ?>
</head> </head>

View File

@@ -1,4 +1,4 @@
<header id="banner" class="navbar navbar-fixed-top" role="banner"> <header class="banner navbar navbar-fixed-top" role="banner">
<div class="navbar-inner"> <div class="navbar-inner">
<div class="container"> <div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
@@ -9,7 +9,7 @@
<a class="brand" href="<?php echo home_url(); ?>/"> <a class="brand" href="<?php echo home_url(); ?>/">
<?php bloginfo('name'); ?> <?php bloginfo('name'); ?>
</a> </a>
<nav id="nav-main" class="nav-collapse" role="navigation"> <nav class="nav-main nav-collapse" role="navigation">
<?php <?php
if (has_nav_menu('primary_navigation')) : if (has_nav_menu('primary_navigation')) :
wp_nav_menu(array('theme_location' => 'primary_navigation', 'menu_class' => 'nav')); wp_nav_menu(array('theme_location' => 'primary_navigation', 'menu_class' => 'nav'));

View File

@@ -1,7 +1,7 @@
<header id="banner" role="banner"> <header class="banner" role="banner">
<div class="container"> <div class="container">
<a class="brand" href="<?php echo home_url(); ?>/"><?php bloginfo('name'); ?></a> <a class="brand" href="<?php echo home_url(); ?>/"><?php bloginfo('name'); ?></a>
<nav id="nav-main" role="navigation"> <nav class="nav-main" role="navigation">
<?php <?php
if (has_nav_menu('primary_navigation')) : if (has_nav_menu('primary_navigation')) :
wp_nav_menu(array('theme_location' => 'primary_navigation', 'menu_class' => 'nav nav-pills')); wp_nav_menu(array('theme_location' => 'primary_navigation', 'menu_class' => 'nav nav-pills'));