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
* 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
### 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
* 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
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.
## 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
@@ -32,11 +32,11 @@ Take a look at the [documentation table of contents](/retlehs/roots/blob/master/
## 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))
* 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
* Fixing [issues](https://github.com/retlehs/roots/issues)
* Replying to questions on the [Google Group](http://groups.google.com/group/roots-theme)

View File

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

View File

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

View File

@@ -13,7 +13,7 @@ This file handles the various WordPress clean up. [About the clean up](cleanup.m
### 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
@@ -23,6 +23,7 @@ This file is used to enable various theme features, define which pages get the s
2. [Rewrites](rewrites.md)
3. HTML5 Boilerplate's `.htaccess`
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.
@@ -44,7 +45,7 @@ This file contains HTML5 Boilerplate's `.htaccess` which is automatically added
### 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
@@ -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.
### rewrites.php
This file handles the clean URL rewrites. [About the rewrites](rewrites.md).
### scripts.php
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:
1. `/theme/assets/js/vendor/modernizr-2.6.2.min.js` (in `head.php`)
2. `jquery-1.9.0.min.js` via Google CDN with local fallback (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
3. `/theme/assets/js/plugins.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:
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`)
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 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:
@@ -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.
## Alternative configuration
First remove the `if` statement that wraps everything, since if you're not on Apache or Litespeed then Roots will not apply the functionality.
## Alternative server configurations
### Nginx
if (!-e $request_filename) {
rewrite ^/assets/css/(.*)$ /wp-content/themes/roots/assets/css/$1 last;
rewrite ^/assets/js/(.*)$ /wp-content/themes/roots/assets/js/$1 last;
rewrite ^/assets/img/(.*)$ /wp-content/themes/roots/assets/img/$1 last;
rewrite ^/plugins/(.*)$ /wp-content/plugins/$1 last;
break;
location ~ ^/assets/(img|js|css)/(.*)$ {
try_files $uri $uri/ /wp-content/themes/roots/assets/$1/$2;
}
location ~ ^/plugins/(.*)$ {
try_files $uri $uri/ /wp-content/plugins/$1;
}
### Lighttpd

View File

@@ -42,6 +42,7 @@ A basic Roots theme initially looks like this:
│ ├── htaccess.php
│ ├── init.php
│ ├── nav.php
│ ├── rewrites.php
│ ├── scripts.php
│ ├── sidebar.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/cleanup.php'); // Cleanup
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/scripts.php'); // Scripts and stylesheets
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/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 ""
"Project-Id-Version: roots WP theme\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-13 16:17-0300\n"
"POT-Creation-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: bg_BG\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Bulgarian\n"
"X-Poedit-Country: BULGARIA\n"
"X-Poedit-SourceCharset: utf-8\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 1.5.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: 404.php:7
msgid "File Not Found"
msgstr "Страницата не е намерена"
#: 404.php:5
msgid ""
"The page you are looking for might have been removed, had its name changed, "
"or is temporarily unavailable."
msgstr ""
"Страницата, която търсите може би е премахната, преместена или временно "
"недостъпна."
#: 404.php:11
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
msgstr "Страницата, която търсите може би е премахната, преместена или временно недостъпна."
#: 404.php:13
#: 404.php:8
msgid "Please try the following:"
msgstr "Моля, опитайте следното:"
#: 404.php:15
#: 404.php:10
msgid "Check your spelling"
msgstr "Проверете правописа."
#: 404.php:16
#, php-format
#: 404.php:11
msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "Върнете се към <a href=\"%s\">началната страница</a>."
#: 404.php:17
#: 404.php:12
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "Натиснете бутон <a href=\"javascript:history.back()\">Назад</a>."
#: archive.php:13
#, 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
#: lib/activation.php:31 lib/activation.php:32
msgid "Theme Activation"
msgstr "Активиране"
#: inc/roots-activation.php:70
#, php-format
#: lib/activation.php:68
msgid "%s Theme Activation"
msgstr "%s активиране"
#: inc/roots-activation.php:85
#: inc/roots-activation.php:87
#: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?"
msgstr "Искате ли да създадете статична начална страница?"
#: inc/roots-activation.php:89
#: inc/roots-activation.php:102
#: inc/roots-activation.php:115
#: inc/roots-activation.php:128
#: inc/roots-activation.php:141
#: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: lib/activation.php:126 lib/activation.php:139
msgid "Yes"
msgstr "Да"
#: inc/roots-activation.php:90
#: inc/roots-activation.php:103
#: inc/roots-activation.php:116
#: inc/roots-activation.php:129
#: inc/roots-activation.php:142
#: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: lib/activation.php:127 lib/activation.php:140
msgid "No"
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"
msgstr "Създаване на страница наречена Начало и задаването й като статична начална страница"
msgstr ""
"Създаване на страница наречена Начало и задаването й като статична начална "
"страница"
#: inc/roots-activation.php:98
#: lib/activation.php:96
msgid "Change permalink structure?"
msgstr "Да се промени ли структурата на възките?"
#: inc/roots-activation.php:100
#: lib/activation.php:98
msgid "Update permalink structure?"
msgstr "Искате ли да обновите структурата на връзките?"
#: inc/roots-activation.php:106
#: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "Промяна структурата на връзките: /&#37;postname&#37;/"
#: inc/roots-activation.php:111
#: lib/activation.php:109
msgid "Change uploads folder?"
msgstr "Да се промени ли папката за качени файлове?"
#: inc/roots-activation.php:113
#: lib/activation.php:111
msgid "Update uploads folder?"
msgstr "Искате ли да обновите папката за качени файлове?"
#: inc/roots-activation.php:119
#: lib/activation.php:117
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
#: inc/roots-activation.php:126
#: lib/activation.php:122 lib/activation.php:124
msgid "Create navigation menu?"
msgstr "Искате ли да създадете меню?"
#: inc/roots-activation.php:132
#: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location"
msgstr "Създаване на Основно меню и задаване на местоположението му"
#: inc/roots-activation.php:137
#: inc/roots-activation.php:139
#: lib/activation.php:135 lib/activation.php:137
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"
msgstr "Добавяне на всички публикувани страници към Основното меню"
#: inc/roots-cleanup.php:370
#: lib/cleanup.php:388
msgid "Continued"
msgstr "Още"
#: inc/roots-cleanup.php:538
#, 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
#: lib/htaccess.php:25
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"
msgstr "Използвайте тази джаджа, за да добавите vCard"
#: inc/roots-widgets.php:6
#: lib/widgets.php:43
msgid "Roots: vCard"
msgstr "Roots: vCard"
#: inc/roots-widgets.php:33
#: lib/widgets.php:70
msgid "vCard"
msgstr "vCard"
#: inc/roots-widgets.php:99
msgid "Title (optional):"
msgstr "Заглавие (незадълж.)"
#: templates/comments.php:7
msgid "<cite class=\"fn\">%s</cite>"
msgstr "<cite class=\"fn\">%s</cite>"
#: inc/roots-widgets.php:103
msgid "Street Address:"
msgstr "Улица:"
#: templates/comments.php:8
msgid "%1$s"
msgstr "%1$s"
#: inc/roots-widgets.php:107
msgid "City/Locality:"
msgstr "Град:"
#: templates/comments.php:9
msgid "(Edit)"
msgstr "(редакт.)"
#: inc/roots-widgets.php:111
msgid "State/Region:"
msgstr "Държава:"
#: templates/comments.php:15
msgid "Your comment is awaiting moderation."
msgstr "Коментарът Ви изчаква одобрение."
#: inc/roots-widgets.php:115
msgid "Zipcode/Postal Code:"
msgstr "Пощенски код:"
#: templates/comments.php:32
msgid "This post is password protected. Enter the password to view comments."
msgstr ""
"Тази публикация е защитена с парола. Въведете паролата, за да видите "
"коментарите."
#: inc/roots-widgets.php:119
msgid "Telephone:"
msgstr "Телефон:"
#: 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;"
msgstr[1] "%1$s отговора към &ldquo;%2$s&rdquo;"
#: inc/roots-widgets.php:123
msgid "Email:"
msgstr "Е-поща:"
#: templates/comments.php:49 templates/comments.php:51
msgid "&larr; Older comments"
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 ""
"Project-Id-Version: \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"
"Last-Translator: \n"
"Language-Team: \n"
@@ -13,13 +13,14 @@ msgstr ""
"X-Poedit-Basepath: ../\n"
"X-Poedit-Language: French\n"
"X-Poedit-Country: FRANCE\n"
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
"X-Poedit-SearchPath-0: .\n"
"X-Poedit-SearchPath-1: ./templates\n"
"X-Poedit-SearchPath-2: ./lib\n"
#: 404.php:5
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
msgid "Please try the following:"
@@ -27,7 +28,7 @@ msgstr "Veuillez essayer les actions suivantes :"
#: 404.php:10
msgid "Check your spelling"
msgstr "Vérifier votre syntaxe"
msgstr "Vérifiez votre syntaxe"
#: 404.php:11
#, 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"
msgstr "Cliquer sur le bouton <a href=\"javascript:history.back()\">Retour</a>"
#: lib/activation.php:31
#: lib/activation.php:32
#: lib/activation.php:33
msgid "Theme Activation"
msgstr "Activation du thème"
#: lib/activation.php:72
#: lib/activation.php:68
#, php-format
msgid "%s Theme Activation"
msgstr "Activation du thème %s"
#: lib/activation.php:87
#: lib/activation.php:89
#: lib/activation.php:83
#: lib/activation.php:85
msgid "Create static front page?"
msgstr "Créer une page d'accueil ?"
#: lib/activation.php:91
#: lib/activation.php:104
#: lib/activation.php:117
#: lib/activation.php:130
#: lib/activation.php:143
#: lib/activation.php:87
#: lib/activation.php:100
#: lib/activation.php:113
#: lib/activation.php:126
#: lib/activation.php:139
msgid "Yes"
msgstr "Oui"
#: lib/activation.php:92
#: lib/activation.php:105
#: lib/activation.php:118
#: lib/activation.php:131
#: lib/activation.php:144
#: lib/activation.php:88
#: lib/activation.php:101
#: lib/activation.php:114
#: lib/activation.php:127
#: lib/activation.php:140
msgid "No"
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"
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?"
msgstr "Modifier la structure des permaliens ?"
#: lib/activation.php:102
#: lib/activation.php:98
msgid "Update permalink structure?"
msgstr "Mettre à jour la structure des permaliens ?"
#: lib/activation.php:108
#: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "Changer la structure permaliens en /&#37;postname&#37;/"
#: lib/activation.php:113
#: lib/activation.php:109
msgid "Change uploads folder?"
msgstr "Changer le dossier d'upload ?"
#: lib/activation.php:115
#: lib/activation.php:111
msgid "Update uploads folder?"
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/"
msgstr "Changer le dossier d'upload en /assets/ à la place de /wp-content/uploads/"
#: lib/activation.php:126
#: lib/activation.php:128
#: lib/activation.php:122
#: lib/activation.php:124
msgid "Create navigation menu?"
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"
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:141
#: lib/activation.php:135
#: lib/activation.php:137
msgid "Add pages to 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"
msgstr "Ajouter toutes les pages actuellement publiées à la navigation primaire"
#: lib/cleanup.php:404
#: lib/cleanup.php:388
msgid "Continued"
msgstr "Suite"
#: lib/htaccess.php:26
#: lib/htaccess.php:25
#, php-format
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
msgid "Primary Navigation"
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
msgid "Primary Sidebar"
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."
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"
msgstr "&larr; Commentaires plus anciens"
#: templates/comments.php:48
#: templates/comments.php:54
#: templates/comments.php:56
msgid "Newer comments &rarr;"
msgstr "Commentaires plus récents &rarr;"
#: templates/comments.php:56
#: templates/comments.php:66
#: templates/comments.php:76
msgid "Comments are closed."
msgstr "Les commentaires sont fermés."
#: templates/comments.php:73
#: templates/comments.php:83
msgid "Leave a Reply"
msgstr "Répondre"
#: templates/comments.php:73
#: templates/comments.php:83
#, php-format
msgid "Leave a Reply to %s"
msgstr "Répondre à %s"
#: templates/comments.php:76
#: templates/comments.php:86
#, php-format
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."
#: templates/comments.php:80
#: templates/comments.php:90
#, php-format
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>."
#: templates/comments.php:80
#: templates/comments.php:90
msgid "Log out of this account"
msgstr "Déconnexion de ce compte"
#: templates/comments.php:80
#: templates/comments.php:90
msgid "Log out &raquo;"
msgstr "Déconnexion &raquo;"
#: templates/comments.php:82
#: templates/comments.php:92
msgid "Name"
msgstr "Nom"
#: templates/comments.php:82
#: templates/comments.php:84
#: templates/comments.php:92
#: templates/comments.php:94
msgid " (required)"
msgstr "(obligatoire)"
msgstr " (obligatoire)"
#: templates/comments.php:84
#: templates/comments.php:94
msgid "Email (will not be published)"
msgstr "Email (ne sera pas publié)"
#: templates/comments.php:86
#: templates/comments.php:96
msgid "Website"
msgstr "Site web"
#: templates/comments.php:89
#: templates/comments.php:99
msgid "Comment"
msgstr "Commentaire"
#: templates/comments.php:91
#: templates/comments.php:101
msgid "Submit Comment"
msgstr "Ajouter un commentaire"
@@ -243,55 +285,24 @@ msgstr "Pages :"
msgid "Sorry, no results were found."
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"
msgstr "&larr; Articles plus anciens"
#: templates/content.php:27
#: templates/content.php:33
#: templates/content.php:35
msgid "Newer posts &rarr;"
msgstr "Commentaires plus récents &rarr;"
msgstr "Articles plus récents &rarr;"
#: templates/entry-meta.php:1
#, php-format
msgid "Posted on %s at %s."
msgstr "Ajouté le %s à %s."
msgstr "Publié le %s à %s."
#: templates/entry-meta.php:2
msgid "Written by"
msgstr "Ecrit 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é"
msgstr "Rédigé par"
#: templates/searchform.php:2
msgid "Search for:"
@@ -302,23 +313,24 @@ msgstr "Rechercher pour :"
msgid "Search"
msgstr "Recherche"
#~ msgid "Title (optional):"
#~ msgstr "Titre (facultatif) :"
msgid "Title (optional):"
msgstr "Titre (facultatif) :"
#~ msgid "Street Address:"
#~ msgstr "Rue :"
msgid "Street Address:"
msgstr "Rue :"
#~ msgid "City/Locality:"
#~ msgstr "Ville/Localité :"
msgid "City/Locality:"
msgstr "Ville/Localité :"
#~ msgid "State/Region:"
#~ msgstr "Etat/Région :"
msgid "State/Region:"
msgstr "État/Région :"
#~ msgid "Zipcode/Postal Code:"
#~ msgstr "Code Zip/Code postal :"
msgid "Zipcode/Postal Code:"
msgstr "Code Postal :"
#~ msgid "Telephone:"
#~ msgstr "Téléphone :"
msgid "Telephone:"
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 ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Project-Id-Version: Roots Theme Korean Translation\n"
"Project-Id-Version: Roots\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: Alex Lim <contact@simonalex.com>\n"
"Language-Team: Redfrost <contact@simonalex.com>\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"
"Language: Korean\n"
"X-Generator: Poedit 1.5.4\n"
#: 404.php:5
msgid ""
@@ -18,7 +19,7 @@ msgid ""
"or is temporarily unavailable."
msgstr ""
"요청하신 페이지를 찾을 수 없습니다. 페이지가 삭제되었거나 이름이 변경되었거"
"나 일시적으로 사용할 수 없습니다."
"나, 일시적으로 사용할 수 없습니다."
#: 404.php:8
msgid "Please try the following:"
@@ -29,7 +30,6 @@ msgid "Check your spelling"
msgstr "주소의 철자법을 확인"
#: 404.php:11
#, php-format
msgid "Return to the <a href=\"%s\">home page</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"
msgstr "<a href=\"javascript:history.back()\">이전 페이지</a>로 돌아가기"
#: functions.php:28
msgid "Primary Navigation"
msgstr "메인메뉴"
#: lib/activation.php:32 lib/activation.php:33
#: lib/activation.php:31 lib/activation.php:32
msgid "Theme Activation"
msgstr "테마 활성화"
#: lib/activation.php:72
#, php-format
#: lib/activation.php:68
msgid "%s Theme Activation"
msgstr "%s 테마를 활성화 합니다"
#: lib/activation.php:87 lib/activation.php:89
#: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?"
msgstr "고정 대문 페이지를 만드시겠습니까?"
#: lib/activation.php:91 lib/activation.php:104 lib/activation.php:117
#: lib/activation.php:130 lib/activation.php:143
#: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: lib/activation.php:126 lib/activation.php:139
msgid "Yes"
msgstr "네"
#: lib/activation.php:92 lib/activation.php:105 lib/activation.php:118
#: lib/activation.php:131 lib/activation.php:144
#: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: lib/activation.php:127 lib/activation.php:140
msgid "No"
msgstr "아니오"
#: lib/activation.php:95
#: lib/activation.php:91
msgid "Create a page called Home and set it to be the static front page"
msgstr "Home이라는 이름의 페이지를 만들고 대문 페이지로 등록합니다."
#: lib/activation.php:100
#: lib/activation.php:96
msgid "Change permalink structure?"
msgstr "고유주소(permalink) 구조를 변경하시겠습니까?"
#: lib/activation.php:102
#: lib/activation.php:98
msgid "Update permalink structure?"
msgstr "고유주소(permalink) 구조를 업데이트 하시겠습니까?"
#: lib/activation.php:108
#: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "/&#37;postname&#37;/ 으로 고유주소(permalink)를 변경합니다."
#: lib/activation.php:113
#: lib/activation.php:109
msgid "Change uploads folder?"
msgstr "업로드 폴더를 변경하시겠습니까?"
#: lib/activation.php:115
#: lib/activation.php:111
msgid "Update uploads folder?"
msgstr "업로드 폴더를 업데이트 하시겠습니까?"
#: lib/activation.php:121
#: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
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?"
msgstr "네비게이션 메뉴를 만드시겠습니까?"
#: lib/activation.php:134
#: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location"
msgstr "기본 네비게이션 메뉴를 생성합니다."
#: lib/activation.php:139 lib/activation.php:141
#: lib/activation.php:135 lib/activation.php:137
msgid "Add pages to menu?"
msgstr "페이지를 메뉴에 등록하시겠습니까?"
#: lib/activation.php:147
#: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation"
msgstr "생성된 모든 페이지를 기본 메뉴에 등록합니다."
#: lib/cleanup.php:404
#: lib/cleanup.php:388
msgid "Continued"
msgstr "더보기"
#: lib/htaccess.php:26
#, php-format
#: lib/htaccess.php:25
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr "<a href=\"%s\">.htaccess</a> 파일의 쓰기 권한을 확인하시기 바랍니다."
#: lib/template-tags.php:5
#, php-format
msgid "Posted on %s at %s."
msgstr "%s %s에 작성"
#: lib/init.php:13
msgid "Primary Navigation"
msgstr "메인메뉴"
#: lib/template-tags.php:6
msgid "Written by"
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:14
#: lib/widgets.php:15
msgid "Footer"
msgstr "Footer"
#: lib/widgets.php:30
#: lib/widgets.php:41
msgid "Use this widget to add a vCard"
msgstr "vCard를 등록하려면 이 위젯을 사용합니다."
#: lib/widgets.php:31
#: lib/widgets.php:43
msgid "Roots: vCard"
msgstr "Roots: vCard"
#: lib/widgets.php:58
#: lib/widgets.php:70
msgid "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
#, php-format
msgid "<cite class=\"fn\">%s</cite>"
msgstr "<cite class=\"fn\">%s</cite>"
#: templates/comments.php:8
#, php-format
msgid "%1$s"
msgstr "%1$s"
@@ -197,66 +184,68 @@ msgid "This post is password protected. Enter the password to view comments."
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"
msgstr "&larr; 이전 댓글"
#: templates/comments.php:50
#: templates/comments.php:54 templates/comments.php:56
msgid "Newer comments &rarr;"
msgstr "최신 댓글 &rarr;"
#: templates/comments.php:58 templates/comments.php:68
#: templates/comments.php:66 templates/comments.php:76
msgid "Comments are closed."
msgstr "댓글을 달 수 없는 글입니다."
#: templates/comments.php:75
#: templates/comments.php:83
msgid "Leave a Reply"
msgstr "댓글 쓰기"
#: templates/comments.php:75
#, php-format
#: templates/comments.php:83
msgid "Leave a Reply to %s"
msgstr "%s님에게 댓글 쓰기"
#: templates/comments.php:78
#, php-format
#: 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:82
#, php-format
#: 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:82
#: templates/comments.php:90
msgid "Log out of this account"
msgstr "이 계정에서 로그아웃"
#: templates/comments.php:82
#: templates/comments.php:90
msgid "Log out &raquo;"
msgstr "로그아웃 하기 &raquo;"
#: templates/comments.php:84
#: templates/comments.php:92
msgid "Name"
msgstr "이름"
#: templates/comments.php:84 templates/comments.php:86
#: templates/comments.php:92 templates/comments.php:94
msgid " (required)"
msgstr "(필수 입력)"
#: templates/comments.php:86
#: templates/comments.php:94
msgid "Email (will not be published)"
msgstr "이메일 주소 (공개되지 않습니다)"
#: templates/comments.php:88
#: templates/comments.php:96
msgid "Website"
msgstr "웹사이트"
#: templates/comments.php:91
#: templates/comments.php:99
msgid "Comment"
msgstr "댓글"
#: templates/comments.php:93
#: templates/comments.php:101
msgid "Submit Comment"
msgstr "댓글 쓰기"
@@ -268,46 +257,21 @@ msgstr "페이지:"
msgid "Sorry, no results were found."
msgstr "죄송합니다, 검색 결과가 없습니다."
#: templates/content.php:26
#: templates/content.php:28 templates/content.php:30
msgid "&larr; Older posts"
msgstr "&larr; 이전 포스트"
#: templates/content.php:27
#: templates/content.php:33 templates/content.php:35
msgid "Newer posts &rarr;"
msgstr "다음 포스트 &rarr;"
#: templates/page-header.php:8
msgid "Latest Posts"
msgstr "최근 포스트"
#: templates/entry-meta.php:1
msgid "Posted on %s at %s."
msgstr "%s %s에 작성"
#: templates/page-header.php:17
#, php-format
msgid "Daily Archives: %s"
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/entry-meta.php:2
msgid "Written by"
msgstr "작성자:"
#: templates/searchform.php:2
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 ""
msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Project-Id-Version: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: Dejan Panovski <panovskidejan@gmail.com>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
#. Text in echo
#: comments.php:80
#: comments.php:84
msgid " (required)"
msgstr "(Задолжително)"
#. Text in echo
#: inc/roots-options.php:127
#: inc/roots-options.php:129
msgid "#main CSS Classes"
msgstr "#CSS класа за главниот лев дел"
#. Text in echo
#: inc/roots-options.php:137
#: inc/roots-options.php:139
msgid "#sidebar CSS Classes"
msgstr "#CSS класа за десниот дел"
#. Text in function
#: comments.php:46
msgid "% Responses to"
msgstr "% Одговорите на"
#. Text in function
#: comments.php:8
msgid "%1$s"
msgstr "%1$s"
#. Text in function
#: inc/roots-options.php:94
msgid "%s Theme Options"
msgstr "%s Опции на Темата"
#. Text in function
#: comments.php:53
msgid "&larr; Older comments"
msgstr "&larr; Претходни коментари"
#. Text in function
#: loop-search.php:33
#: loop.php:37
msgid "&larr; Older posts"
msgstr "&larr; Претходни мислења"
#. Text in function
#: comments.php:9
msgid "(Edit)"
msgstr "(Измени)"
#. 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 колони)"
#. Text in function
#: inc/roots-options.php:1
msgid "960gs (16 cols)"
msgstr "960gs (16 колони)"
#. Text in function
#: inc/roots-options.php:1
msgid "960gs (24 cols)"
msgstr "960gs (24 колони)"
#. 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 echo
#: page-sitemap.php:18
msgid "Archives"
msgstr "Архиви"
#. Text in function
#: inc/roots-options.php:1
msgid "Blueprint CSS"
msgstr "Blueprint CSS"
#. Text in echo
#: inc/roots-options.php:106
#: inc/roots-options.php:108
msgid "CSS Grid Framework"
msgstr "CSS Grid Framework"
#. Text in echo
#: 404.php:13
msgid "Check your spelling"
msgstr "Проверете го правописот"
#. Text in echo
#: inc/roots-widgets.php:61
msgid "City/Locality:"
msgstr "Град/Локација:"
#. Text in echo
#: 404.php:15
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "Кликнете на <a href=\"javascript:history.back()\">Назад</a> копчето"
#. Text in echo
#: comments.php:93
msgid "Comment"
msgstr "Коментар"
#. Text in echo
#: comments.php:63
msgid "Comments are closed."
msgstr "Коментарите се затворени."
#. Text in function
#: inc/roots-cleanup.php:1
msgid "Continued"
msgstr "Продолжено"
#. Text in function
#: inc/roots-options.php:132
#: inc/roots-options.php:142
msgid "Default: %s"
msgstr "Вообичаено: %s"
#. Text in echo
#: comments.php:84
msgid "Email (will not be published)"
msgstr "Е-маилот (нема да биде објавен)"
#. Text in echo
#: inc/roots-widgets.php:77
msgid "Email:"
msgstr "Е-маил:"
#. Text in function
#: inc/roots-options.php:152
msgid "Enter your UA-XXXXX-X ID"
msgstr "Внесете го вашето UA-XXXXX-X ID"
#. Text in echo
#: 404.php:7
msgid "File Not Found"
msgstr "Датотеката не е пронајдена"
#. Text in echo
#: inc/roots-options.php:147
#: inc/roots-options.php:149
msgid "Google Analytics ID"
msgstr "Google Analytics ID"
#. Text in echo
#: index.php:7
msgid "Latest Posts"
msgstr "Најнови мислења"
#. Text in function
#: comments.php:70
msgid "Leave a Reply"
msgstr "Остави Одговор"
#. Text in function
#: comments.php:70
msgid "Leave a Reply to %s"
msgstr "Остави Одговор на %s"
#. Text in echo
#: comments.php:77
msgid "Log out &raquo;"
msgstr "Излез &raquo;"
#. Text in function
#: comments.php:77
msgid "Log out of this account"
msgstr "Излези од оваа сметка"
#. Text in function
#: comments.php:77
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr "Најавен како <a href=\"%s/wp-admin/profile.php\">%s</a>."
#. Text in echo
#: comments.php:80
msgid "Name"
msgstr "Име"
#. Text in function
#: comments.php:54
msgid "Newer comments &rarr;"
msgstr "Понови коментари &rarr;"
#. Text in function
#: loop-search.php:34
#: loop.php:38
msgid "Newer posts &rarr;"
msgstr "Понови постови &rarr;"
#. Text in function
#: comments.php:46
msgid "No Responses to"
msgstr "Нема Одговори на"
#. Text in function
#: comments.php:46
msgid "One Response to"
msgstr "Еден одговор на"
#. Text in echo
#: page-sitemap.php:14
msgid "Pages"
msgstr "Страници"
#. Text in function
#: loop-page.php:7
#: loop-single.php:17
msgid "Pages:"
msgstr "Страници:"
#. Text in function
#: comments.php:28
msgid "Please do not load this page directly. Thanks!"
msgstr "Ве молиме не ја отварајте оваа страница директно. Благодарам!"
#. Text in function
#: inc/roots-htaccess.php:1
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writeable "
msgstr "Ве молиме бидете сигурни дека вашаиот <a href=\"%s\">.htaccess</a> датотека може да се запишува"
#. Text in echo
#: 404.php:11
msgid "Please try the following:"
msgstr "Ве молиме обидете се со следново:"
#. Text in function
#: inc/roots-admin.php:1
msgid "Please update your <a href=\"%s\">site tagline</a>"
msgstr "Ве молиме обновете го вашиот <a href=\"%s\">site tagline</a>"
#. Text in function
#: loop-single.php:8
#: loop-search.php:16
#: loop.php:16
msgid "Posted on %s at %s."
msgstr "Објавено на %s во %s."
#. Text in echo
#: page-sitemap.php:16
msgid "Posts"
msgstr "Постови"
#. Text in function
#: 404.php:14
msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "Врати се на <a href=\"%s\">главна страница</a>"
#. Text in function
#: inc/roots-widgets.php:1
msgid "Roots: vCard"
msgstr "Roots: vCard"
#. Text in echo
#: searchform.php:3
#: searchform.php:4
msgid "Search"
msgstr "Барај"
#. Text in echo
#: search.php:7
msgid "Search Results for"
msgstr "Резултати од пребарувањето за"
#. Text in echo
#: searchform.php:2
msgid "Search for:"
msgstr "Пребарај за:"
#. Text in echo
#: loop-search.php:4
#: loop.php:4
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 "Поштенски код/​​Поштенски код:"
msgid ""
msgstr ""
"Project-Id-Version: roots WP theme\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: dejan <panovskidejan@gmail.com>\n"
"Language-Team: \n"
"Language: mk_MK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-SourceCharset: UTF-8\n"
"X-Generator: Poedit 1.5.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: 404.php:5
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
msgstr "Страницата која ја барате може да е тргната, преместена или да е привремено недостапна."
#: 404.php:8
msgid "Please try the following:"
msgstr "Ве молиме, пробајте го следното:"
#: 404.php:10
msgid "Check your spelling"
msgstr "Проверете го правописот."
#: 404.php:11
msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "Вратете се на <a href=\"%s\">почетната страница</a>."
#: 404.php:12
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr "Кликнете на копчето <a href=\"javascript:history.back()\">Назад</a>."
#: lib/activation.php:31
#: lib/activation.php:32
msgid "Theme Activation"
msgstr "Активирање"
#: lib/activation.php:68
msgid "%s Theme Activation"
msgstr "%s активирање на темата"
#: lib/activation.php:83
#: lib/activation.php:85
msgid "Create static front page?"
msgstr "Сакате ли да креирате статична почетна страница?"
#: lib/activation.php:87
#: lib/activation.php:100
#: lib/activation.php:113
#: lib/activation.php:126
#: lib/activation.php:139
msgid "Yes"
msgstr "Да"
#: lib/activation.php:88
#: lib/activation.php:101
#: lib/activation.php:114
#: lib/activation.php:127
#: lib/activation.php:140
msgid "No"
msgstr "Не"
#: lib/activation.php:91
msgid "Create a page called Home and set it to be the static front page"
msgstr "Креирај страница наречена Почетна и постави ја како статична почетна страница"
#: lib/activation.php:96
msgid "Change permalink structure?"
msgstr "Да се промени ли структурата на линковите?"
#: lib/activation.php:98
msgid "Update permalink structure?"
msgstr "Сакате ли да обновите структурата на линковите?"
#: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr "Смени ја структурата на линковите во /&#37;postname&#37;/"
#: lib/activation.php:109
msgid "Change uploads folder?"
msgstr "Да се промени ли директориумот за уплоадирани фајлови?"
#: lib/activation.php:111
msgid "Update uploads folder?"
msgstr "Сакате ли да го обновите директориумот за уплоадирани фајлови?"
#: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr "Промени го директориумот за уплоадирани фајлови во /assets/, наместо /wp-content/uploads/"
#: lib/activation.php:122
#: lib/activation.php:124
msgid "Create navigation menu?"
msgstr "Сакате ли да креирате навигационо мени?"
#: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location"
msgstr "Креирај го Примарното навигационо мени и сетирај му ја локацијата"
#: lib/activation.php:135
#: lib/activation.php:137
msgid "Add pages to menu?"
msgstr "Сакате ли да додадете страници на менито?"
#: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation"
msgstr "Додади ги сите објавени страници на Примарното навигационо мени"
#: lib/cleanup.php:388
msgid "Continued"
msgstr "Повеќе"
#: lib/htaccess.php:25
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr "Ве молиме, уверете се дека вашиот <a href=\"%s\">.htaccess</a> може да се едитира"
#: 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"
msgstr "Користи го овој виџет, за да додадеш vCard"
#: 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 "(Едитирај)"
#: templates/comments.php:15
msgid "Your comment is awaiting moderation."
msgstr "Твојот Коментар чека на одобрение."
#: templates/comments.php:32
msgid "This post is password protected. Enter the password to view comments."
msgstr "Овој пост е зашитен со лозинка. Внесете лозинка, за да ги видите коментарите."
#: 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;"
msgstr[1] "%1$s одговори за &ldquo;%2$s&rdquo;"
#: templates/comments.php:49
#: templates/comments.php:51
msgid "&larr; Older comments"
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 "Барај"

View File

@@ -1,24 +1,10 @@
msgid ""
msgstr ""
"Project-Id-Version: \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-Type: text/plain; charset=utf-8\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
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 ""
#: 404.php:8
@@ -30,7 +16,6 @@ msgid "Check your spelling"
msgstr ""
#: 404.php:11
#, php-format
msgid "Return to the <a href=\"%s\">home page</a>"
msgstr ""
@@ -38,150 +23,137 @@ msgstr ""
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
msgstr ""
#: functions.php:28
msgid "Primary Navigation"
msgstr ""
#: lib/activation.php:32 lib/activation.php:33
#: lib/activation.php:31 lib/activation.php:32
msgid "Theme Activation"
msgstr ""
#: lib/activation.php:72
#, php-format
#: lib/activation.php:68
msgid "%s Theme Activation"
msgstr ""
#: lib/activation.php:87 lib/activation.php:89
#: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?"
msgstr ""
#: lib/activation.php:91 lib/activation.php:104 lib/activation.php:117
#: lib/activation.php:130 lib/activation.php:143
#: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: lib/activation.php:126 lib/activation.php:139
msgid "Yes"
msgstr ""
#: lib/activation.php:92 lib/activation.php:105 lib/activation.php:118
#: lib/activation.php:131 lib/activation.php:144
#: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: lib/activation.php:127 lib/activation.php:140
msgid "No"
msgstr ""
#: lib/activation.php:95
#: lib/activation.php:91
msgid "Create a page called Home and set it to be the static front page"
msgstr ""
#: lib/activation.php:100
#: lib/activation.php:96
msgid "Change permalink structure?"
msgstr ""
#: lib/activation.php:102
#: lib/activation.php:98
msgid "Update permalink structure?"
msgstr ""
#: lib/activation.php:108
#: lib/activation.php:104
msgid "Change permalink structure to /&#37;postname&#37;/"
msgstr ""
#: lib/activation.php:113
#: lib/activation.php:109
msgid "Change uploads folder?"
msgstr ""
#: lib/activation.php:115
#: lib/activation.php:111
msgid "Update uploads folder?"
msgstr ""
#: lib/activation.php:121
#: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
msgstr ""
#: lib/activation.php:126 lib/activation.php:128
#: lib/activation.php:122 lib/activation.php:124
msgid "Create navigation menu?"
msgstr ""
#: lib/activation.php:134
#: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location"
msgstr ""
#: lib/activation.php:139 lib/activation.php:141
#: lib/activation.php:135 lib/activation.php:137
msgid "Add pages to menu?"
msgstr ""
#: lib/activation.php:147
#: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation"
msgstr ""
#: lib/cleanup.php:404
#: lib/cleanup.php:388
msgid "Continued"
msgstr ""
#: lib/htaccess.php:26
#, php-format
#: lib/htaccess.php:25
msgid "Please make sure your <a href=\"%s\">.htaccess</a> file is writable "
msgstr ""
#: lib/template-tags.php:5
#, php-format
msgid "Posted on %s at %s."
#: lib/init.php:13
msgid "Primary Navigation"
msgstr ""
#: lib/template-tags.php:6
msgid "Written by"
#: lib/utils.php:14
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 ""
#: lib/widgets.php:6
msgid "Primary Sidebar"
msgstr ""
#: lib/widgets.php:14
#: lib/widgets.php:15
msgid "Footer"
msgstr ""
#: lib/widgets.php:30
#: lib/widgets.php:41
msgid "Use this widget to add a vCard"
msgstr ""
#: lib/widgets.php:31
#: lib/widgets.php:43
msgid "Roots: vCard"
msgstr ""
#: lib/widgets.php:58
#: lib/widgets.php:70
msgid "vCard"
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
#, php-format
msgid "<cite class=\"fn\">%s</cite>"
msgstr ""
#: templates/comments.php:8
#, php-format
msgid "%1$s"
msgstr ""
@@ -197,66 +169,69 @@ msgstr ""
msgid "This post is password protected. Enter the password to view comments."
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"
msgstr ""
#: templates/comments.php:50
#: templates/comments.php:54 templates/comments.php:56
msgid "Newer comments &rarr;"
msgstr ""
#: templates/comments.php:58 templates/comments.php:68
#: templates/comments.php:66 templates/comments.php:76
msgid "Comments are closed."
msgstr ""
#: templates/comments.php:75
#: templates/comments.php:83
msgid "Leave a Reply"
msgstr ""
#: templates/comments.php:75
#, php-format
#: templates/comments.php:83
msgid "Leave a Reply to %s"
msgstr ""
#: templates/comments.php:78
#, php-format
#: templates/comments.php:86
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr ""
#: templates/comments.php:82
#, php-format
#: templates/comments.php:90
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
msgstr ""
#: templates/comments.php:82
#: templates/comments.php:90
msgid "Log out of this account"
msgstr ""
#: templates/comments.php:82
#: templates/comments.php:90
msgid "Log out &raquo;"
msgstr ""
#: templates/comments.php:84
#: templates/comments.php:92
msgid "Name"
msgstr ""
#: templates/comments.php:84 templates/comments.php:86
#: templates/comments.php:92 templates/comments.php:94
msgid " (required)"
msgstr ""
#: templates/comments.php:86
#: templates/comments.php:94
msgid "Email (will not be published)"
msgstr ""
#: templates/comments.php:88
#: templates/comments.php:96
msgid "Website"
msgstr ""
#: templates/comments.php:91
#: templates/comments.php:99
msgid "Comment"
msgstr ""
#: templates/comments.php:93
#: templates/comments.php:101
msgid "Submit Comment"
msgstr ""
@@ -268,45 +243,20 @@ msgstr ""
msgid "Sorry, no results were found."
msgstr ""
#: templates/content.php:26
#: templates/content.php:28 templates/content.php:30
msgid "&larr; Older posts"
msgstr ""
#: templates/content.php:27
#: templates/content.php:33 templates/content.php:35
msgid "Newer posts &rarr;"
msgstr ""
#: templates/page-header.php:8
msgid "Latest Posts"
#: templates/entry-meta.php:1
msgid "Posted on %s at %s."
msgstr ""
#: templates/page-header.php:17
#, php-format
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"
#: templates/entry-meta.php:2
msgid "Written by"
msgstr ""
#: templates/searchform.php:2

Binary file not shown.

View File

@@ -5,516 +5,389 @@ msgstr ""
"PO-Revision-Date: \n"
"Last-Translator: Emre Erkan <kara@karalamalar.net>\n"
"Language-Team: karalamalar.net <kara@karalamalar.net>\n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\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-Generator: Poedit 1.5.4\n"
#. Text in echo
#: comments.php:72
#: comments.php:76
msgid " (required)"
msgstr "(gerekli)"
#: 404.php:5
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 echo
#: 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
#: 404.php:8
msgid "Please try the following:"
msgstr "Lütfen şunu deneyin:"
#. Text in function
#: inc/roots-cleanup.php:1
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>"
#: 404.php:10
msgid "Check your spelling"
msgstr "İmla kontrolü"
#. Text in function
#: 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
#: 404.php:11
msgid "Return to the <a href=\"%s\">home page</a>"
msgstr "<a href=\"%s\">Ana sayfa</a>ya dön"
#. Text in function
#: inc/roots-widgets.php:1
msgid "Roots: vCard"
msgstr "Roots: vCard"
#: 404.php:12
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
#: 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
#: lib/activation.php:31 lib/activation.php:32
msgid "Theme Activation"
msgstr "Tema Etkinleştirme"
#. Text in function
#: inc/roots-options.php:1
msgid "Theme Options"
msgstr "Tema Seçenekleri"
#: lib/activation.php:68
msgid "%s Theme Activation"
msgstr "%s tema etkinleştirme"
#. Text in echo
#: comments.php:27
msgid "This post is password protected. Enter the password to view comments."
msgstr "Bu yazı parola korumalıdır. Yorumları görmek için parolayı giriniz."
#: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?"
msgstr "Sabit ana sayfa oluşturulsun mu?"
#. Text in echo
#: inc/roots-widgets.php:99
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
#: lib/activation.php:87 lib/activation.php:100 lib/activation.php:113
#: lib/activation.php:126 lib/activation.php:139
msgid "Yes"
msgstr "Evet"
#. Text in function
#: comments.php:65
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."
#: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
#: lib/activation.php:127 lib/activation.php:140
msgid "No"
msgstr "Hayır"
#. Text in echo
#: comments.php:13
#: lib/activation.php:91
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."
msgstr "Yorumunuz onay bekliyor."
#. Text in echo
#: inc/roots-widgets.php:115
msgid "Zipcode/Postal Code:"
msgstr "Posta kodu:"
#: templates/comments.php:32
msgid "This post is password protected. Enter the password to view comments."
msgstr "Bu yazı parola korumalıdır. Yorumları görmek için parolayı giriniz."
#. Text in function
#: inc/roots-widgets.php:1
msgid "vCard"
msgstr "vCard"
#: 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; 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"
#~ msgstr "% yanıt"
@@ -522,9 +395,6 @@ msgstr "vCard"
#~ msgid "No Responses to"
#~ msgstr "Yanıt yok"
#~ msgid "One Response to"
#~ msgstr "Bir yanıt"
#~ msgid "Pages"
#~ msgstr "Sayfalar"

View File

@@ -360,8 +360,10 @@ function roots_gallery($attr) {
return $output;
}
remove_shortcode('gallery');
add_shortcode('gallery', 'roots_gallery');
if (current_theme_supports('bootstrap-gallery')) {
remove_shortcode('gallery');
add_shortcode('gallery', 'roots_gallery');
}
/**
* 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

View File

@@ -1,14 +1,42 @@
<?php
/**
* Roots configuration
*/
// Enable theme features
/**
* Enable theme features
*/
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('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
@@ -43,33 +71,11 @@ function roots_display_sidebar() {
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)
*
* 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.
*
* This is not required or used by Roots.
*/
* $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.
* Default: 940px is the default Bootstrap container width.
*/
if (!isset($content_width)) { $content_width = 940; }

View File

@@ -1,95 +1,28 @@
<?php
/**
* URL rewriting and addition of HTML5 Boilerplate's .htaccess
*
* 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
* Add HTML5 Boilerplate's .htaccess via WordPress
*/
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
function roots_htaccess_writable() {
if (!is_writable(get_home_path() . '.htaccess')) {
if (current_user_can('administrator')) {
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>';"));
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'));
}
}
}
add_action('admin_init', 'roots_htaccess_writable');
return $content;
}
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('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;
}
}
if (current_theme_supports('h5bp-htaccess')) {
add_action('generate_rewrite_rules', 'roots_add_h5bp_htaccess');
}

View File

@@ -22,7 +22,7 @@ function roots_setup() {
// add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat'));
// 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
*
* Enqueue scripts in the following order:
* 1. /theme/assets/js/vendor/modernizr-2.6.2.min.js (in head.php)
* 2. jquery-1.9.0.min.js via Google CDN (in head.php)
* 3. /theme/assets/js/plugins.js
* 4. /theme/assets/js/main.js
* 1. /theme/assets/js/vendor/modernizr-2.6.2.min.js
* 2. jquery-1.9.0.min.js via Google CDN
* 3. /theme/assets/js/scripts.min.js
*/
function roots_scripts() {
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()) {
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')) {
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');
}
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
*/
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() {
if (is_home()) {
if (get_option('page_for_posts', true)) {
@@ -41,38 +90,18 @@ function roots_title() {
}
}
function roots_template_path() {
return Roots_Wrapping::$main_template;
}
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;
/**
* Show an admin notice if .htaccess isn't writable
*/
function roots_htaccess_writable() {
if (!is_writable(get_home_path() . '.htaccess')) {
if (current_user_can('administrator')) {
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>';"));
}
$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
function wp_base_dir() {

View File

@@ -5,7 +5,7 @@ function roots_widgets_init() {
register_sidebar(array(
'name' => __('Primary Sidebar', 'roots'),
'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>',
'before_title' => '<h3>',
'after_title' => '</h3>',
@@ -14,7 +14,7 @@ function roots_widgets_init() {
register_sidebar(array(
'name' => __('Footer', 'roots'),
'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>',
'before_title' => '<h3>',
'after_title' => '</h3>',

View File

@@ -1,7 +1,7 @@
<?php function roots_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment; ?>
<li <?php comment_class(); ?>>
<article id="comment-<?php comment_ID(); ?>">
<article class="comment-<?php comment_ID(); ?>">
<header class="comment-author vcard">
<?php echo get_avatar($comment, $size = '32'); ?>
<?php printf(__('<cite class="fn">%s</cite>', 'roots'), get_comment_author_link()); ?>
@@ -43,7 +43,7 @@
</ol>
<?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">
<?php if (get_previous_comments_link()) : ?>
<li class="previous"><?php previous_comments_link(__('&larr; Older comments', 'roots')); ?></li>

View File

@@ -1,5 +1,5 @@
<?php while (have_posts()) : the_post(); ?>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<article <?php post_class(); ?>>
<header>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php get_template_part('templates/entry-meta'); ?>
@@ -8,7 +8,7 @@
<?php the_content(); ?>
</div>
<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>'); ?>
</footer>
<?php comments_template('/templates/comments.php'); ?>

View File

@@ -7,7 +7,7 @@
<?php endif; ?>
<?php while (have_posts()) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<article <?php post_class(); ?>>
<header>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php get_template_part('templates/entry-meta'); ?>
@@ -22,7 +22,7 @@
<?php endwhile; ?>
<?php if ($wp_query->max_num_pages > 1) : ?>
<nav id="post-nav">
<nav class="post-nav">
<ul class="pager">
<?php if (get_next_posts_link()) : ?>
<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">
<?php dynamic_sidebar('sidebar-footer'); ?>
<p>&copy; <?php echo date('Y'); ?> <?php bloginfo('name'); ?></p>
<footer class="content-info" role="contentinfo">
<div class="container">
<?php dynamic_sidebar('sidebar-footer'); ?>
<p>&copy; <?php echo date('Y'); ?> <?php bloginfo('name'); ?></p>
</div>
</footer>
<?php if (GOOGLE_ANALYTICS_ID) : ?>
@@ -12,4 +14,4 @@
</script>
<?php endif; ?>
<?php wp_footer(); ?>
<?php wp_footer(); ?>

View File

@@ -8,14 +8,7 @@
<title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title>
<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 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/">
<?php endif; ?>
</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="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
@@ -9,7 +9,7 @@
<a class="brand" href="<?php echo home_url(); ?>/">
<?php bloginfo('name'); ?>
</a>
<nav id="nav-main" class="nav-collapse" role="navigation">
<nav class="nav-main nav-collapse" role="navigation">
<?php
if (has_nav_menu('primary_navigation')) :
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">
<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
if (has_nav_menu('primary_navigation')) :
wp_nav_menu(array('theme_location' => 'primary_navigation', 'menu_class' => 'nav nav-pills'));