diff --git a/CHANGELOG.md b/CHANGELOG.md index d9d1ff9..baf1eb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index d4bdaf4..0057774 100644 --- a/README.md +++ b/README.md @@ -5,17 +5,17 @@ Roots is a starting WordPress theme made for developers that’s 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) diff --git a/assets/css/less/app.less b/assets/css/less/app.less index 50a2f7f..c543ee8 100644 --- a/assets/css/less/app.less +++ b/assets/css/less/app.less @@ -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 { } diff --git a/base.php b/base.php index 9133ed7..5a661b7 100644 --- a/base.php +++ b/base.php @@ -12,18 +12,18 @@ } ?> -
-
-
+
+
+
-
+
- + -
-
+
+
diff --git a/doc/TOC.md b/doc/TOC.md index 4760dc2..9b5fa3a 100755 --- a/doc/TOC.md +++ b/doc/TOC.md @@ -15,5 +15,5 @@ Roots is a starting WordPress theme made for developers that’s 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. diff --git a/doc/lib.md b/doc/lib.md index 0eac4cb..e551202 100644 --- a/doc/lib.md +++ b/doc/lib.md @@ -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. diff --git a/doc/rewrites.md b/doc/rewrites.md index 2a06b8f..87b9d5f 100644 --- a/doc/rewrites.md +++ b/doc/rewrites.md @@ -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 diff --git a/doc/usage.md b/doc/usage.md index 2cf580d..b1291b5 100755 --- a/doc/usage.md +++ b/doc/usage.md @@ -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 diff --git a/functions.php b/functions.php index fd3960c..ad98cfd 100644 --- a/functions.php +++ b/functions.php @@ -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 diff --git a/index.php b/index.php index 4002ffe..7d33b88 100644 --- a/index.php +++ b/index.php @@ -1,2 +1,5 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/lang/bg_BG.mo b/lang/bg_BG.mo index 60261e2..41216ab 100644 Binary files a/lang/bg_BG.mo and b/lang/bg_BG.mo differ diff --git a/lang/bg_BG.po b/lang/bg_BG.po index 32ac674..58577f3 100644 --- a/lang/bg_BG.po +++ b/lang/bg_BG.po @@ -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 \n" +"Last-Translator: yulian yordanov \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 home page" msgstr "Върнете се към началната страница." -#: 404.php:17 +#: 404.php:12 msgid "Click the Back button" msgstr "Натиснете бутон Назад." -#: 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 "%s" -msgstr "%s" - -#: 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 "← Older comments" -msgstr "← По-стари коментари" - -#: comments.php:50 -msgid "Newer comments →" -msgstr "По-нови коментари →" - -#: 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 logged in to post a comment." -msgstr "Трябва да сте вписан, за да публикувате коментар." - -#: comments.php:82 -#, php-format -msgid "Logged in as %s." -msgstr "Вписан като: %s." - -#: comments.php:82 -msgid "Log out of this account" -msgstr "Излизане от този профил" - -#: comments.php:82 -msgid "Log out »" -msgstr "Изход »" - -#: 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 "← Older posts" -msgstr "← По-стари публикации" - -#: loop.php:38 -msgid "Newer posts →" -msgstr "По-нови публикации →" - -#: 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 /%postname%/" msgstr "Промяна структурата на връзките: /%postname%/" -#: 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 site tagline Hide Notice" -msgstr "Моля, редактирайте описанието на сайта. Скриване" - -#: inc/roots-htaccess.php:11 -#, php-format +#: lib/htaccess.php:25 msgid "Please make sure your .htaccess file is writable " -msgstr "Моля, уверете се че файлът .htaccess може да се редактира" +msgstr "" +"Моля, уверете се че файлът .htaccess може да се редактира" -#: 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 "%s" +msgstr "%s" -#: 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 “%2$s”" +msgid_plural "%1$s Responses to “%2$s”" +msgstr[0] "Един отговор към “%2$s”" +msgstr[1] "%1$s отговора към “%2$s”" -#: inc/roots-widgets.php:123 -msgid "Email:" -msgstr "Е-поща:" +#: templates/comments.php:49 templates/comments.php:51 +msgid "← Older comments" +msgstr "← По-стари коментари" +#: templates/comments.php:54 templates/comments.php:56 +msgid "Newer comments →" +msgstr "По-нови коментари →" + +#: 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 logged in to post a comment." +msgstr "Трябва да сте вписан, за да публикувате коментар." + +#: templates/comments.php:90 +msgid "Logged in as %s." +msgstr "Вписан като: %s." + +#: templates/comments.php:90 +msgid "Log out of this account" +msgstr "Излизане от този профил" + +#: templates/comments.php:90 +msgid "Log out »" +msgstr "Изход »" + +#: 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 "← Older posts" +msgstr "← По-стари публикации" + +#: templates/content.php:33 templates/content.php:35 +msgid "Newer posts →" +msgstr "По-нови публикации →" + +#: 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 site tagline Hide Notice" +#~ msgstr "" +#~ "Моля, редактирайте описанието на сайта. Скриване" + +#~ 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 "Е-поща:" diff --git a/lang/fr_FR.mo b/lang/fr_FR.mo index 27879fb..40f1e7a 100644 Binary files a/lang/fr_FR.mo and b/lang/fr_FR.mo differ diff --git a/lang/fr_FR.po b/lang/fr_FR.po index 6964964..f786c98 100644 --- a/lang/fr_FR.po +++ b/lang/fr_FR.po @@ -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 page d'accueil" msgid "Click the Back button" msgstr "Cliquer sur le bouton Retour" +#: 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 /%postname%/" msgstr "Changer la structure permaliens en /%postname%/" -#: 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 .htaccess file is writable " -msgstr "Veuillez vérifier que votre fichier .htaccess est accessible en écriture" +msgstr "Veuillez vérifier que votre fichier .htaccess 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 “%2$s”" +msgid_plural "%1$s Responses to “%2$s”" +msgstr[0] "Une réponse à “%2$s”" +msgstr[1] "%1$s résponses à “%2$s”" + +#: templates/comments.php:49 +#: templates/comments.php:51 msgid "← Older comments" msgstr "← Commentaires plus anciens" -#: templates/comments.php:48 +#: templates/comments.php:54 +#: templates/comments.php:56 msgid "Newer comments →" msgstr "Commentaires plus récents →" -#: 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 logged in to post a comment." msgstr "Vous devez être connecté pour ajouter un commentaire." -#: templates/comments.php:80 +#: templates/comments.php:90 #, php-format msgid "Logged in as %s." msgstr "Connecté en tant que %s." -#: 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 »" msgstr "Déconnexion »" -#: 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 "← Older posts" msgstr "← Articles plus anciens" -#: templates/content.php:27 +#: templates/content.php:33 +#: templates/content.php:35 msgid "Newer posts →" -msgstr "Commentaires plus récents →" +msgstr "Articles plus récents →" #: 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 :" diff --git a/lang/ko_KR.mo b/lang/ko_KR.mo index 72c7ce0..cdd968a 100644 Binary files a/lang/ko_KR.mo and b/lang/ko_KR.mo differ diff --git a/lang/ko_KR.po b/lang/ko_KR.po old mode 100755 new mode 100644 index 3341bcd..9c8b752 --- a/lang/ko_KR.po +++ b/lang/ko_KR.po @@ -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 \n" "Language-Team: Redfrost \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 home page" msgstr "홈페이지로 돌아가기" @@ -37,150 +37,137 @@ msgstr "홈페이지로 돌아가기" msgid "Click the Back 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 "%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 /%postname%/" msgstr "/%postname%/ 으로 고유주소(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 .htaccess file is writable " msgstr ".htaccess 파일의 쓰기 권한을 확인하시기 바랍니다." -#: 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 "%s" msgstr "%s" #: 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 “%2$s”" +msgid_plural "%1$s Responses to “%2$s”" +msgstr[0] "“%2$s”에 %1$s개의 댓글이 있습니다." + +#: templates/comments.php:49 templates/comments.php:51 msgid "← Older comments" msgstr "← 이전 댓글" -#: templates/comments.php:50 +#: templates/comments.php:54 templates/comments.php:56 msgid "Newer comments →" 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 "%s님에게 댓글 쓰기" -#: templates/comments.php:78 -#, php-format +#: templates/comments.php:86 msgid "You must be logged in to post a comment." msgstr "로그인해야만 글을 작성할 수 있습니다." -#: templates/comments.php:82 -#, php-format +#: templates/comments.php:90 msgid "Logged in as %s." msgstr "%s님으로 로그인 되어 있습니다." -#: 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 »" 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,46 +257,21 @@ msgstr "페이지:" msgid "Sorry, no results were found." msgstr "죄송합니다, 검색 결과가 없습니다." -#: templates/content.php:26 +#: templates/content.php:28 templates/content.php:30 msgid "← Older posts" msgstr "← 이전 포스트" -#: templates/content.php:27 +#: templates/content.php:33 templates/content.php:35 msgid "Newer posts →" msgstr "다음 포스트 →" -#: 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:" diff --git a/lang/mk_MK.mo b/lang/mk_MK.mo old mode 100644 new mode 100755 index 9ac537c..adeae0c Binary files a/lang/mk_MK.mo and b/lang/mk_MK.mo differ diff --git a/lang/mk_MK.po b/lang/mk_MK.po old mode 100644 new mode 100755 index 903a55b..d72c463 --- a/lang/mk_MK.po +++ b/lang/mk_MK.po @@ -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 \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 "← Older comments" -msgstr "← Претходни коментари" - -#. Text in function -#: loop-search.php:33 -#: loop.php:37 -msgid "← Older posts" -msgstr "← Претходни мислења" - -#. 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 "%s" -msgstr "%s" - -#. 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 Back button" -msgstr "Кликнете на Назад копчето" - -#. 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 »" -msgstr "Излез »" - -#. Text in function -#: comments.php:77 -msgid "Log out of this account" -msgstr "Излези од оваа сметка" - -#. Text in function -#: comments.php:77 -msgid "Logged in as %s." -msgstr "Најавен како %s." - -#. Text in echo -#: comments.php:80 -msgid "Name" -msgstr "Име" - -#. Text in function -#: comments.php:54 -msgid "Newer comments →" -msgstr "Понови коментари →" - -#. Text in function -#: loop-search.php:34 -#: loop.php:38 -msgid "Newer posts →" -msgstr "Понови постови →" - -#. 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 .htaccess file is writeable " -msgstr "Ве молиме бидете сигурни дека вашаиот .htaccess датотека може да се запишува" - -#. Text in echo -#: 404.php:11 -msgid "Please try the following:" -msgstr "Ве молиме обидете се со следново:" - -#. Text in function -#: inc/roots-admin.php:1 -msgid "Please update your site tagline" -msgstr "Ве молиме обновете го вашиот site tagline" - -#. 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 home page" -msgstr "Врати се на главна страница" - -#. 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 logged in to post a comment." -msgstr "Мора да бидете најавени за да испратите коментар." - -#. 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 \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 home page" +msgstr "Вратете се на почетната страница." + +#: 404.php:12 +msgid "Click the Back button" +msgstr "Кликнете на копчето Назад." + +#: 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 /%postname%/" +msgstr "Смени ја структурата на линковите во /%postname%/" + +#: 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 .htaccess file is writable " +msgstr "Ве молиме, уверете се дека вашиот .htaccess може да се едитира" + +#: 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 "%s" +msgstr "%s" + +#: 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 “%2$s”" +msgid_plural "%1$s Responses to “%2$s”" +msgstr[0] "Еден одговор за “%2$s”" +msgstr[1] "%1$s одговори за “%2$s”" + +#: templates/comments.php:49 +#: templates/comments.php:51 +msgid "← Older comments" +msgstr "← Постари коментари" + +#: templates/comments.php:54 +#: templates/comments.php:56 +msgid "Newer comments →" +msgstr "Понови коментари →" + +#: 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 logged in to post a comment." +msgstr "Треба да сте логиран, за да објавите коментар." + +#: templates/comments.php:90 +msgid "Logged in as %s." +msgstr "Логиран како: %s." + +#: templates/comments.php:90 +msgid "Log out of this account" +msgstr "Одлогирај се од овој профил" + +#: templates/comments.php:90 +msgid "Log out »" +msgstr "Излез »" + +#: 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 "← Older posts" +msgstr "← Постари постови" + +#: templates/content.php:33 +#: templates/content.php:35 +msgid "Newer posts →" +msgstr "Понови постови →" + +#: 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 "Барај" + diff --git a/lang/roots.pot b/lang/roots.pot index 30ab322..a8db949 100644 --- a/lang/roots.pot +++ b/lang/roots.pot @@ -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 \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 home page" msgstr "" @@ -38,150 +23,137 @@ msgstr "" msgid "Click the Back 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 /%postname%/" 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 .htaccess 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 "%s" 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 “%2$s”" +msgid_plural "%1$s Responses to “%2$s”" +msgstr[0] "" +msgstr[1] "" + +#: templates/comments.php:49 templates/comments.php:51 msgid "← Older comments" msgstr "" -#: templates/comments.php:50 +#: templates/comments.php:54 templates/comments.php:56 msgid "Newer comments →" 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 logged in to post a comment." msgstr "" -#: templates/comments.php:82 -#, php-format +#: templates/comments.php:90 msgid "Logged in as %s." 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 »" 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 "← Older posts" msgstr "" -#: templates/content.php:27 +#: templates/content.php:33 templates/content.php:35 msgid "Newer posts →" 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 diff --git a/lang/tr_TR.mo b/lang/tr_TR.mo index 522f317..bc1767f 100644 Binary files a/lang/tr_TR.mo and b/lang/tr_TR.mo differ diff --git a/lang/tr_TR.po b/lang/tr_TR.po index 88106b3..2439ad5 100644 --- a/lang/tr_TR.po +++ b/lang/tr_TR.po @@ -5,516 +5,389 @@ msgstr "" "PO-Revision-Date: \n" "Last-Translator: Emre Erkan \n" "Language-Team: 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 "← Older comments" -msgstr "← Eski yorumlar" - -#. Text in function -#: loop.php:34 -msgid "← Older posts" -msgstr "← 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 "%s" -msgstr "%s" - -#. 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 /%postname%/" -msgstr "Kalıcı bağlantı yapısını /%yazi_ismi%/ 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 Back button" -msgstr "Geri 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’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 »" -msgstr "Çıkış »" - -#. 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 %s." -msgstr "%s 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 →" -msgstr "Yeni yorumlar &arr;" - -#. Text in function -#: loop.php:35 -msgid "Newer posts →" -msgstr "Yeni yazılar →" - -#. 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 .htaccess file is writable " -msgstr ".htaccess 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 site tagline Hide Notice" -msgstr "Lütfen sitenizin sloganını güncelleyin Bu notu gizle" +#: 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 home page" msgstr "Ana sayfaya dön" -#. Text in function -#: inc/roots-widgets.php:1 -msgid "Roots: vCard" -msgstr "Roots: vCard" +#: 404.php:12 +msgid "Click the Back button" +msgstr "Geri 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 logged in to post a comment." -msgstr "Yorum yapmak için giriş 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 /%postname%/" +msgstr "Kalıcı bağlantı yapısını /%yazi_ismi%/ 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 .htaccess file is writable " +msgstr "" +".htaccess 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 "%s" +msgstr "%s" + +#: 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 “%2$s”" +msgid_plural "%1$s Responses to “%2$s”" +msgstr[0] "“%2$s” için bir yanıt" +msgstr[1] "“%2$s” için %1$s yanıt" + +#: templates/comments.php:49 templates/comments.php:51 +msgid "← Older comments" +msgstr "← Eski yorumlar" + +#: templates/comments.php:54 templates/comments.php:56 +msgid "Newer comments →" +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 logged in to post a comment." +msgstr "Yorum yapmak için giriş yapmış olmalısınız." + +#: templates/comments.php:90 +msgid "Logged in as %s." +msgstr "%s 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 »" +msgstr "Çıkış »" + +#: 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 "← Older posts" +msgstr "← Eski yazılar" + +#: templates/content.php:33 templates/content.php:35 +msgid "Newer posts →" +msgstr "Yeni yazılar →" + +#: 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’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 site tagline Hide Notice" +#~ msgstr "" +#~ "Lütfen sitenizin sloganını güncelleyin Bu notu gizle" + +#~ 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" diff --git a/lib/cleanup.php b/lib/cleanup.php index 72edb5a..0aa4704 100644 --- a/lib/cleanup.php +++ b/lib/cleanup.php @@ -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 diff --git a/lib/config.php b/lib/config.php index 6b9ec43..1521b66 100644 --- a/lib/config.php +++ b/lib/config.php @@ -1,14 +1,42 @@ 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; } diff --git a/lib/htaccess.php b/lib/htaccess.php index c5588f8..98701ce 100644 --- a/lib/htaccess.php +++ b/lib/htaccess.php @@ -1,95 +1,28 @@

" . sprintf(__('Please make sure your .htaccess file is writable ', 'roots'), admin_url('options-permalink.php')) . "

';")); + 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; - } - -} \ No newline at end of file +if (current_theme_supports('h5bp-htaccess')) { + add_action('generate_rewrite_rules', 'roots_add_h5bp_htaccess'); +} diff --git a/lib/init.php b/lib/init.php index 65c440c..3314679 100644 --- a/lib/init.php +++ b/lib/init.php @@ -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'); } diff --git a/lib/rewrites.php b/lib/rewrites.php new file mode 100644 index 0000000..72286eb --- /dev/null +++ b/lib/rewrites.php @@ -0,0 +1,56 @@ + 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'); + } +} diff --git a/lib/scripts.php b/lib/scripts.php index cec9aa4..b4c1e25 100644 --- a/lib/scripts.php +++ b/lib/scripts.php @@ -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 '' . "\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); +} diff --git a/lib/utils.php b/lib/utils.php index 0b07bb1..9aa8d71 100644 --- a/lib/utils.php +++ b/lib/utils.php @@ -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 '

" . sprintf(__('Please make sure your .htaccess file is writable ', 'roots'), admin_url('options-permalink.php')) . "

';")); } - - $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() { diff --git a/lib/widgets.php b/lib/widgets.php index 98e7c6b..ec654dd 100644 --- a/lib/widgets.php +++ b/lib/widgets.php @@ -5,7 +5,7 @@ function roots_widgets_init() { register_sidebar(array( 'name' => __('Primary Sidebar', 'roots'), 'id' => 'sidebar-primary', - 'before_widget' => '
', + 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', @@ -14,7 +14,7 @@ function roots_widgets_init() { register_sidebar(array( 'name' => __('Footer', 'roots'), 'id' => 'sidebar-footer', - 'before_widget' => '
', + 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', diff --git a/templates/comments.php b/templates/comments.php index 5a0f346..27a74cd 100644 --- a/templates/comments.php +++ b/templates/comments.php @@ -1,7 +1,7 @@
  • > -
    +
    %s', 'roots'), get_comment_author_link()); ?> @@ -43,7 +43,7 @@ 1 && get_option('page_comments')) : // are there comments to navigate through ?> -
  • - '')); ?> + '')); ?>
  • ','
  • ','
  • '); ?>
    diff --git a/templates/content.php b/templates/content.php index fc4084e..befb633 100644 --- a/templates/content.php +++ b/templates/content.php @@ -7,7 +7,7 @@ -
    > +
    >

    @@ -22,7 +22,7 @@ max_num_pages > 1) : ?> -