@@ -11,4 +10,4 @@
-
\ No newline at end of file
+
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4d5abed..9ab1b1e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+### HEAD
+* Simplify alerts
+* Remove disabled post nav links
+* Use Bootstrap media object for listing comments
+* Move Google Analytics to `lib/scripts.php`
+* Static top navbar instead of fixed
+
### 6.3.0: February 8th, 2013
* Update to Bootstrap 2.3.0
* Update to jQuery 1.9.1
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 0ca6dd3..e9bc540 100755
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -2,44 +2,28 @@
## Reporting issues
-A bug is a _demonstrable problem_ that is caused by the code in the
-repository.
+**We only accept issues that are bug reports or feature requests.** Bugs must
+ be isolated and reproducible problems that we can fix within Roots. Please
+ read the following guidelines before [opening any issues](https://github.com/retlehs/roots/issues):
-Please read the following guidelines for reporting bugs:
-Please read the following guidelines before you [report an issue](https://github.com/retlehs/roots/issues):
+1. **Use the GitHub issue search.** Check to see if the issue has already been
+reported. If it has been, please comment on the existing issue. An existing
+issue may also already have a fix available.
-1. **Use the GitHub issue search** — check if the issue has already been
- reported. If it has been, please comment on the existing issue.
+2. **Isolate the problem to Roots.** Make sure that the code in the Roots
+repository is _definitely_ responsible for the issue. Switch to a core WordPress
+theme (such as Twenty Twelve) to confirm problems before reporting an issue.
+Make sure you have reproduced the bug with all plugins disabled. Any issues
+related to HTML5 Boilerplate or Bootstrap should be reported to their respected
+repositories and follow their contributing guidelines.
-2. **Check if the issue has been fixed** — the latest `master` or
- development branch may already contain a fix.
+3. **Do not use GitHub issues for questions or support.** If you have a question
+or support request, please post on the [Google Group](http://groups.google.com/group/roots-theme).
-3. **Isolate the problem to Roots** — make sure that the code in the
- Roots repository is _definitely_ responsible for the issue. Switch to a default WordPress theme to confirm problems before reporting an issue. Any issues related to HTML5 Boilerplate or Bootstrap should be reported to their respected repositories.
-
-Please try to be as detailed as possible in your report too. What is your
-environment? What steps will reproduce the issue? What browser(s) and OS
-experience the problem? What would you expect to be the outcome? All these
-details will help people to assess and fix any potential bugs.
-
-### Example of a good bug report:
-
-> Short and descriptive title
->
-> A summary of the issue and the server OS environment in which it occurs. If
-> suitable, include the steps required to reproduce the bug.
->
-> 1. This is the first step
-> 2. This is the second step
-> 3. Further steps, etc.
->
-> Any other information you want to share that is relevant to the issue being
-> reported. This might include the lines of code that you have identified as
-> causing the bug, and potential solutions (and your opinions on their
-> merits).
-
-A good bug report shouldn't leave people needing to chase you up to get further
-information that is required to assess or fix the bug.
+Please try to be as detailed as possible in your report. What steps will
+reproduce the issue? What would you expect to be the outcome? All these details
+will help people to assess and fix any potential bugs. A good bug report
+shouldn't leave people needing to chase you up to get further information.
**[File a bug report](https://github.com/retlehs/roots/issues)**
@@ -56,7 +40,7 @@ changes to any part of the project, please open an issue to discuss it first.
Please follow this process; it's the best way to get your work included in the
project:
-1. [Fork](http://help.github.com/fork-a-repo/) the project.
+1. [Fork](https://help.github.com/articles/fork-a-repo) the project.
2. Clone your fork (`git clone
https://github.com//roots.git`).
@@ -64,8 +48,8 @@ project:
3. Add an `upstream` remote (`git remote add upstream
https://github.com/retlehs/roots.git`).
-4. Get the latest changes from upstream (e.g. `git pull upstream
- `).
+4. Get the latest changes from upstream (`git pull upstream
+ master`).
5. Create a new topic branch to contain your feature, change, or fix (`git
checkout -b `).
@@ -79,12 +63,12 @@ project:
up your commits before making them public. Please adhere to these [git commit
message
guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
- or your pull request is unlikely be merged into the main project.
+ or your pull request is unlikely be merged.
8. Locally merge (or rebase) the upstream branch into your topic branch.
9. Push your topic branch up to your fork (`git push origin
`).
-10. [Open a Pull Request](http://help.github.com/send-pull-requests/) with a
- clear title and description. Please mention which browsers you tested in.
+10. [Open a Pull Request](https://help.github.com/articles/using-pull-requests) with a
+ clear title and description.
diff --git a/README.md b/README.md
index 0057774..ae68a5d 100644
--- a/README.md
+++ b/README.md
@@ -1,50 +1,74 @@
-# [Roots Theme](http://www.rootstheme.com/)
-
-Roots is a starting WordPress theme made for developers that’s based on [HTML5 Boilerplate](http://html5boilerplate.com/) and [Bootstrap from Twitter](http://twitter.github.com/bootstrap/).
-
-## 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](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/init.php` to setup custom navigation menus and post thumbnail sizes.
-
-## Documentation
-
-Take a look at the [documentation table of contents](doc/TOC.md).
-
-## Features
-
-* HTML5 Boilerplate’s markup and `.htaccess`
-* Bootstrap from Twitter
-* Theme wrapper
-* Root relative URLs
-* Clean URLs (no more `/wp-content/`)
-* All static theme assets are rewritten to the website root (`/assets/css/`, `/assets/img/`, and `/assets/js/`)
-* Cleaner HTML output of navigation menus
-* Cleaner output of `wp_head` and enqueued scripts/styles
-* Posts use the [hNews](http://microformats.org/wiki/hnews) microformat
-* [Multilingual ready](http://www.rootstheme.com/wpml/) (English, Spanish, French, Italian, Dutch, Brazilian Portuguese, Macedonian, Finnish, Danish, Turkish, Swedish, Bulgarian, Norwegian, Catalan, Polish, Hungarian, Russian)
-
-## Contributing
-
-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](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)
-
-## Project information
-
-* Source: [https://github.com/retlehs/roots](https://github.com/retlehs/roots)
-* Web: [http://www.rootstheme.com/](http://www.rootstheme.com/)
-* Google Group: [http://groups.google.com/group/roots-theme](http://groups.google.com/group/roots-theme)
-* Twitter Updates: [@retlehs](https://twitter.com/#!/retlehs)
-* Contributors: [https://github.com/retlehs/roots/contributors](https://github.com/retlehs/roots/contributors)
\ No newline at end of file
+# [Roots Theme](http://www.rootstheme.com/)
+
+Roots is a starting WordPress theme made for developers that’s based on
+[HTML5 Boilerplate](http://html5boilerplate.com/) and [Bootstrap from Twitter](http://twitter.github.com/bootstrap/).
+
+* Source: [https://github.com/retlehs/roots](https://github.com/retlehs/roots)
+* Home Page: [http://www.rootstheme.com/](http://www.rootstheme.com/)
+* Twitter: [@retlehs](https://twitter.com/retlehs)
+* Google Group: [http://groups.google.com/group/roots-theme](http://groups.google.com/group/roots-theme)
+
+## 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](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/init.php` to setup custom navigation menus and post thumbnail sizes.
+
+## Documentation
+
+Take a look at the [documentation table of contents](doc/TOC.md).
+
+## Features
+
+* HTML5 Boilerplate’s markup and `.htaccess`
+* Bootstrap from Twitter
+* [Theme wrapper](doc/wrapper.md)
+* Root relative URLs
+* Clean URLs (no more `/wp-content/`)
+* All static theme assets are rewritten to the website root (`/assets/css/`,
+`/assets/img/`, and `/assets/js/`)
+* Cleaner HTML output of navigation menus
+* Cleaner output of `wp_head` and enqueued scripts/styles
+* Posts use the [hNews](http://microformats.org/wiki/hnews) microformat
+* [Multilingual ready](http://www.rootstheme.com/wpml/) (Brazilian Portuguese,
+Bulgarian, Catalan, Danish, Dutch, English, Finnish, French, German, Hungarian,
+Indonesian, Italian, Korean, Macedonian, Norwegian, Polish, Russian, Simplified
+Chinese, Spanish, Swedish, Traditional Chinese, Turkish, Vietnamese)
+
+### Build Script
+
+The [grunt branch](https://github.com/retlehs/roots/tree/grunt) contains a build
+script powered by grunt. More information can be found at [Integrating grunt.js with Roots](http://benword.com/integrating-grunt-js-with-roots/).
+
+* Easily compile LESS files
+* Minification and concatenation without plugins
+* Fewer requests made to the server (one CSS file, one main JS file besides
+Modernizr and jQuery)
+* Ensures valid JavaScript
+* Others working on your project are able to use the same build script and have
+a unified development process
+* Code is optimized for production use
+
+## Contributing
+
+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](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)
+
+## Support
+
+Use the [Google Group](http://groups.google.com/group/roots-theme) to ask
+questions and get support.
diff --git a/assets/css/editor-style.css b/assets/css/editor-style.css
index b45a8d0..641718b 100644
--- a/assets/css/editor-style.css
+++ b/assets/css/editor-style.css
@@ -1,7 +1,12 @@
-/*
-Theme Name: Roots
-Description: Used to style the TinyMCE editor
-*/
+/**
+ * Updating this file with Bootstrap changes:
+ *
+ * 1. Go to http://twitter.github.com/bootstrap/customize.html
+ * 2. Un-toggle everything
+ * 3. Check: 'Body type and links', 'Headings, body, etc', 'Code and pre'
+ * 4. Download
+ * 5. Remove margin property on body tag
+ */
.clearfix {
*zoom: 1;
@@ -41,7 +46,8 @@ a {
color: #0088cc;
text-decoration: none;
}
-a:hover {
+a:hover,
+a:focus {
color: #005580;
text-decoration: underline;
}
@@ -88,30 +94,47 @@ cite {
.muted {
color: #999999;
}
+a.muted:hover,
+a.muted:focus {
+ color: #808080;
+}
.text-warning {
color: #c09853;
}
-a.text-warning:hover {
+a.text-warning:hover,
+a.text-warning:focus {
color: #a47e3c;
}
.text-error {
color: #b94a48;
}
-a.text-error:hover {
+a.text-error:hover,
+a.text-error:focus {
color: #953b39;
}
.text-info {
color: #3a87ad;
}
-a.text-info:hover {
+a.text-info:hover,
+a.text-info:focus {
color: #2d6987;
}
.text-success {
color: #468847;
}
-a.text-success:hover {
+a.text-success:hover,
+a.text-success:focus {
color: #356635;
}
+.text-left {
+ text-align: left;
+}
+.text-right {
+ text-align: right;
+}
+.text-center {
+ text-align: center;
+}
h1,
h2,
h3,
@@ -194,6 +217,21 @@ ol.unstyled {
margin-left: 0;
list-style: none;
}
+ul.inline,
+ol.inline {
+ margin-left: 0;
+ list-style: none;
+}
+ul.inline > li,
+ol.inline > li {
+ display: inline-block;
+ *display: inline;
+ /* IE7 inline-block hack */
+
+ *zoom: 1;
+ padding-left: 5px;
+ padding-right: 5px;
+}
dl {
margin-bottom: 20px;
}
@@ -253,9 +291,9 @@ blockquote {
}
blockquote p {
margin-bottom: 0;
- font-size: 16px;
+ font-size: 17.5px;
font-weight: 300;
- line-height: 25px;
+ line-height: 1.25;
}
blockquote small {
display: block;
@@ -309,6 +347,7 @@ code {
color: #d14;
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
+ white-space: nowrap;
}
pre {
display: block;
@@ -333,6 +372,8 @@ pre.prettyprint {
pre code {
padding: 0;
color: inherit;
+ white-space: pre;
+ white-space: pre-wrap;
background-color: transparent;
border: 0;
}
diff --git a/assets/css/less/app.less b/assets/css/less/app.less
index c543ee8..32fad61 100644
--- a/assets/css/less/app.less
+++ b/assets/css/less/app.less
@@ -21,10 +21,6 @@ body { }
.banner { }
-/* Fixed Topbar Navigation */
-body.top-navbar { padding-top: 60px; }
-body.admin-bar .navbar-fixed-top { top: 28px; }
-
/* ==========================================================================
@@ -87,9 +83,6 @@ figure.alignnone { margin-left: 0; margin-right: 0; }
Media Queries
========================================================================== */
-@media (max-width: 979px) {
- /* Fix top padding when using the responsive grid with the fixed topbar */
- body.top-navbar {
- padding-top: 0;
- }
-}
\ No newline at end of file
+@media (max-width: 767px) {
+
+}
diff --git a/doc/TOC.md b/doc/TOC.md
index 9b5fa3a..4df86d4 100755
--- a/doc/TOC.md
+++ b/doc/TOC.md
@@ -4,6 +4,19 @@
Roots is a starting WordPress theme made for developers that’s based on [HTML5 Boilerplate](http://html5boilerplate.com/) and [Bootstrap from Twitter](http://twitter.github.com/bootstrap/).
+## 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](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/init.php` to setup custom navigation menus and post thumbnail sizes.
+
## Getting started
* [Usage](usage.md) — Overview of the project contents.
diff --git a/doc/plugins.md b/doc/plugins.md
index 33e3e8d..044627a 100644
--- a/doc/plugins.md
+++ b/doc/plugins.md
@@ -5,10 +5,10 @@ table of contents](TOC.md)
| **Plugin Name** | **Plugin Description**
|:----------------|:----------------------
+| [**Soil**](https://github.com/retlehs/soil) | Frequently used plugins for your WordPress installation and a site specific plugin for your custom post types, taxonomies, meta boxes, and shortcodes.
| [**Gravity Forms**](http://www.rootstheme.com/gravity-forms/) | With Gravity Forms you can build complex, interactive contact forms in minutes.
| [**WPML**](http://www.rootstheme.com/wpml/) | WPML makes it easy to build multilingual sites and run them. Roots already includes translations for: English, Spanish, French, Italian, Dutch, Brazilian Portuguese, Macedonian, Finnish, Danish, Turkish, Swedish, Bulgarian, Norwegian, Catalan, Polish, Hungarian, Russian.
| [**WordPress SEO**](http://yoast.com/wordpress/seo/) | Yoast's all in one SEO solution: titles, meta descriptions, XML sitemaps, breadcrumbs & more.
-| [**WP Super Cache**](http://wordpress.org/extend/plugins/wp-super-cache/) | WP Super Cache is a static caching plugin that generates HTML files.
| [**W3 Total Cache**](http://wordpress.org/extend/plugins/w3-total-cache/) | Improve site performance and user experience via caching.
| [Analytics 360](http://wordpress.org/extend/plugins/analytics360/) | Pull Google Analytics and MailChimp data directly into your dashboard.
| [Custom Metaboxes & Fields](https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress) | Easily create metaboxes with custom fields.
@@ -19,11 +19,10 @@ table of contents](TOC.md)
| [Posts 2 Posts](http://scribu.net/wordpress/posts-to-posts) | Create many-to-many connections between posts of all kinds.
| [Query Multiple Taxonomies](http://scribu.net/wordpress/query-multiple-taxonomies) | Filter posts through multiple custom taxonomies.
| [Simple Footnotes](http://wordpress.org/extend/plugins/simple-footnotes/) | Create simple, elegant footnotes on your site. Use the [ref] shortcode and the plugin takes care of the rest.
-| [SLD Custom Content Types](https://github.com/jkudish/sld-custom-content-and-taxonomies) | Register new custom post types easily, with good default values and some extended functionality.
| [WordPress Domain Changer](https://github.com/veloper/WordPress-Domain-Changer) | A self-contained script that helps ease the migration of WordPress sites from one domain to another.
| [WPAlchemy MetaBox Class](http://www.farinspace.com/wpalchemy-metabox/) | Create custom WordPress meta boxes quickly.
| [WP-DB-Backup](http://wordpress.org/extend/plugins/wp-db-backup/) | WP-DB-Backup allows you easily to backup your WordPress database tables.
| [WP-PageNavi](http://wordpress.org/extend/plugins/wp-pagenavi/) | Adds a more advanced paging navigation interface.
| [WP Database Optimizer](http://www.matthewaprice.com/wp-database-optimizer/) | Automated scheduled database optimization.
| [WP Mail SMTP](http://wordpress.org/extend/plugins/wp-mail-smtp/) | Reconfigures the wp_mail() function to use SMTP instead of mail().
-| [Taxonomy Images](http://wordpress.org/extend/plugins/taxonomy-images/) | Associate images from your media library to categories, tags and custom taxonomies.
\ No newline at end of file
+| [Taxonomy Images](http://wordpress.org/extend/plugins/taxonomy-images/) | Associate images from your media library to categories, tags and custom taxonomies.
diff --git a/doc/templates.md b/doc/templates.md
index b09d57a..e118370 100644
--- a/doc/templates.md
+++ b/doc/templates.md
@@ -27,8 +27,6 @@ The `content-single.php` template is included by single post templates in the th
`footer.php` includes the Footer sidebar area and displays the site copyright information.
-Also included is the [asynchronous Google Analytics snippet](http://mathiasbynens.be/notes/async-analytics-snippet) from HTML5 Boilerplate if an ID is defined in `config.php`.
-
### head.php
`head.php` includes everything in the ``.
diff --git a/functions.php b/functions.php
index ad98cfd..62e8841 100644
--- a/functions.php
+++ b/functions.php
@@ -12,6 +12,7 @@ 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/comments.php'); // Custom comments modifications
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
diff --git a/lang/da_DK.mo b/lang/da_DK.mo
index 64b668e..9af59f3 100644
Binary files a/lang/da_DK.mo and b/lang/da_DK.mo differ
diff --git a/lang/da_DK.po b/lang/da_DK.po
index 9cd4454..35e1c94 100644
--- a/lang/da_DK.po
+++ b/lang/da_DK.po
@@ -2,516 +2,284 @@ msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Project-Id-Version: Roots WordPress theme translations 1.1\n"
+"Project-Id-Version: Roots WordPress theme translations 1.2\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: Casper Klenz-Kitenge \n"
"Language-Team: CabGFX \n"
"MIME-Version: 1.0\n"
-"X-Poedit-Language: Danish\n"
-"X-Poedit-Country: DENMARK\n"
-"X-Poedit-SourceCharset: utf-8\n"
+"X-Generator: Poedit 1.5.5\n"
+"Language: Danish\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#. Text in echo
-#: comments.php:72
-#: comments.php:76
-msgid " (required)"
-msgstr "(påkrævet)"
+#: 404.php:5
+msgid ""
+"The page you are looking for might have been removed, had its name changed, "
+"or is temporarily unavailable."
+msgstr ""
+"Siden du leder efter er muligvis blevet fjernet, har skiftet navn, eller er "
+"midlertidigt utilgængelig."
-#. Text in echo
-#: inc/roots-options.php:260
-msgid "#fullwidth CSS Classes"
-msgstr "#fullwidth CSS Classes"
+#: 404.php:8
+msgid "Please try the following:"
+msgstr "Prøv venligst følgende:"
-#. Text in echo
-#: inc/roots-options.php:238
-#: inc/roots-options.php:240
-msgid "#main CSS Classes"
-msgstr "#main CSS Classes"
-
-#. Text in echo
-#: inc/roots-options.php:248
-#: inc/roots-options.php:250
-msgid "#sidebar CSS Classes"
-msgstr "#sidebar CSS Classes"
-
-#. 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 Theme Activation"
-
-#. Text in function
-#: inc/roots-options.php:214
-msgid "%s Theme Options"
-msgstr "%s Theme Options"
-
-#. Text in function
-#: comments.php:43
-msgid "← Older comments"
-msgstr "← Ældre kommentarer"
-
-#. Text in function
-#: loop.php:34
-msgid "← Older posts"
-msgstr "← Ældre indlæg"
-
-#. Text in function
-#: comments.php:9
-msgid "(Edit)"
-msgstr "(Redigér)"
-
-#. 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 cols)"
-
-#. Text in function
-#: inc/roots-options.php:1
-msgid "960gs (16 cols)"
-msgstr "960gs (16 cols)"
-
-#. Text in function
-#: inc/roots-options.php:1
-msgid "960gs (24 cols)"
-msgstr "960gs (24 cols)"
-
-#. 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 "Tilføj alle pt. udgivne Sider til den primære navigation"
-
-#. Text in echo
-#: inc/roots-activation.php:137
-#: inc/roots-activation.php:139
-msgid "Add pages to menu?"
-msgstr "Tilføj Sider til menu?"
-
-#. Text in function
-#: archive.php:8
-msgid "Author Archives: %s"
-msgstr "Forfatter Arkiver: %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 Packages"
-
-#. Text in function
-#: inc/roots-options.php:1
-msgid "Bootstrap w/ Less"
-msgstr "Bootstrap w/ Less"
-
-#. 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 "Ret permalink struktur til /%postname%/"
-
-#. Text in echo
-#: inc/roots-activation.php:98
-msgid "Change permalink structure?"
-msgstr "Ret permalink struktur?"
-
-#. Text in function
-#: inc/roots-activation.php:119
-msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
-msgstr "Skift uploads mappen til /assets/ i stedet for /wp-content/uploads/"
-
-#. Text in echo
-#: inc/roots-activation.php:111
-msgid "Change uploads folder?"
-msgstr "Skift uploads mappen?"
-
-#. Text in echo
-#: 404.php:11
+#: 404.php:10
msgid "Check your spelling"
-msgstr "Kontrollér stavning"
+msgstr "Tjek din stavning"
-#. Text in echo
-#: inc/roots-widgets.php:107
-msgid "City/Locality:"
-msgstr "By/Område:"
+#: 404.php:11
+msgid "Return to the home page"
+msgstr "Gå tilbage til forsiden"
-#. Text in echo
-#: inc/roots-options.php:315
-#: inc/roots-options.php:317
-msgid "Cleanup Menu Output"
-msgstr "Ryd op i menu output"
-
-#. Text in echo
-#: 404.php:13
+#: 404.php:12
msgid "Click the Back button"
-msgstr "Klik på Tilbage knappen"
+msgstr "Tryk på Tilbage knappen"
-#. Text in echo
-#: comments.php:85
-msgid "Comment"
-msgstr "Kommentar"
+#: lib/activation.php:31 lib/activation.php:32
+msgid "Theme Activation"
+msgstr "Theme aktivering"
-#. Text in echo
-#: comments.php:49
-#: comments.php:56
-msgid "Comments are closed."
-msgstr "Kommentarer er lukket."
+#: lib/activation.php:68
+msgid "%s Theme Activation"
+msgstr "%s Theme aktivering"
-#. Text in function
-#: inc/roots-cleanup.php:1
-msgid "Continued"
-msgstr "Fortsættes"
-
-#. Text in function
-#: inc/roots-activation.php:93
-msgid "Create a page called Home and set it to be the static front page"
-msgstr "Opret en Side kaldet Hjem og brug den som statisk forside"
-
-#. Text in echo
-#: inc/roots-activation.php:124
-#: inc/roots-activation.php:126
-msgid "Create navigation menus?"
-msgstr "Opret navigation/menuer?"
-
-#. Text in echo
-#: inc/roots-activation.php:85
-#: inc/roots-activation.php:87
+#: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?"
msgstr "Opret statisk forside?"
-#. Text in function
-#: inc/roots-activation.php:132
-msgid "Create the Primary and Utility Navigation menus and set their locations"
-msgstr "Opret de primære og sekundære navigations-menuer og indstil deres placeringer"
-
-#. Text in function
-#: archive.php:8
-msgid "Daily Archives: %s"
-msgstr "Daglige Arkiver: %s"
-
-#. Text in echo
-#: inc/roots-options.php:243
-#: inc/roots-options.php:253
-#: inc/roots-options.php:263
-msgid "Default:"
-msgstr "Standard:"
-
-#. Text in echo
-#: comments.php:76
-msgid "Email (will not be published)"
-msgstr "Email (bliver ikke vist)"
-
-#. Text in echo
-#: inc/roots-widgets.php:123
-msgid "Email:"
-msgstr "Email:"
-
-#. Text in echo
-#: inc/roots-options.php:284
-msgid "Enable Bootstrap Javascript"
-msgstr "Enable Bootstrap Javascript"
-
-#. Text in echo
-#: inc/roots-options.php:304
-#: inc/roots-options.php:306
-msgid "Enable Root Relative URLs"
-msgstr "Enable Root Relative URLs"
-
-#. Text in function
-#: inc/roots-options.php:299
-msgid "Enter your UA-XXXXX-X ID"
-msgstr "Skriv dit UA-XXXXX-X ID"
-
-#. Text in echo
-#: 404.php:7
-msgid "File Not Found"
-msgstr "Filen blev ikke fundet"
-
-#. Text in function
-#: inc/roots-options.php:1
-msgid "Foundation"
-msgstr "Foundation"
-
-#. Text in echo
-#: inc/roots-options.php:258
-msgid "Full Width CSS Classes"
-msgstr "Full Width CSS Classes"
-
-#. 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 "Seneste Indlæg"
-
-#. Text in function
-#: comments.php:62
-msgid "Leave a Reply"
-msgstr "Skriv et svar"
-
-#. Text in function
-#: comments.php:62
-msgid "Leave a Reply to %s"
-msgstr "Skriv et svar til %s"
-
-#. 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 "Log ud »"
-
-#. Text in function
-#: comments.php:69
-msgid "Log out of this account"
-msgstr "Log ud af denne konto"
-
-#. Text in function
-#: comments.php:69
-msgid "Logged in as %s."
-msgstr "Logget ind some %s."
-
-#. Text in function
-#: archive.php:8
-msgid "Monthly Archives: %s"
-msgstr "Månedlige Arkiver: %s"
-
-#. Text in echo
-#: comments.php:72
-msgid "Name"
-msgstr "Navn"
-
-#. Text in function
-#: comments.php:44
-msgid "Newer comments →"
-msgstr "Nyere kommentarer →"
-
-#. Text in function
-#: loop.php:35
-msgid "Newer posts →"
-msgstr "Nyere indlæg →"
-
-#. 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 "Nej"
-
-#. Text in function
-#: inc/roots-options.php:1
-msgid "None"
-msgstr "Ingen"
-
-#. Text in function
-#: loop-single.php:14
-#: loop-page.php:7
-msgid "Pages:"
-msgstr "Sider:"
-
-#. Text in function
-#: inc/roots-htaccess.php:1
-msgid "Please make sure your .htaccess file is writable "
-msgstr "Tjek venligst at din .htaccess fil er skrivbar"
-
-#. Text in echo
-#: 404.php:9
-msgid "Please try the following:"
-msgstr "Prøv venligst det følgende:"
-
-#. Text in function
-#: inc/roots-cleanup.php:1
-msgid "Please update your site taglineHide Notice"
-msgstr "Opdatér venligst din blogs taglineSkjul besked"
-
-#. Text in function
-#: functions.php:1
-msgid "Posted on %s at %s."
-msgstr "Skrevet %s kl. %s."
-
-#. Text in function
-#: functions.php:1
-msgid "Primary Navigation"
-msgstr "Primære Navigation"
-
-#. Text in function
-#: 404.php:12
-msgid "Return to the home page"
-msgstr "Tilbage til forsiden"
-
-#. 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 "Søg"
-
-#. Text in echo
-#: search.php:7
-msgid "Search Results for"
-msgstr "Søgeresultater for"
-
-#. Text in echo
-#: searchform.php:2
-msgid "Search for:"
-msgstr "Søg efter:"
-
-#. Text in echo
-#: loop.php:3
-msgid "Sorry, no results were found."
-msgstr "Beklager, der blev ikke fundet nogen resultater."
-
-#. Text in echo
-#: inc/roots-widgets.php:111
-msgid "State/Region:"
-msgstr "Stat/Region:"
-
-#. Text in echo
-#: inc/roots-widgets.php:103
-msgid "Street Address:"
-msgstr "Adresse:"
-
-#. Text in echo
-#: comments.php:88
-msgid "Submit Comment"
-msgstr "Gem kommentar"
-
-#. 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 "Siden du leder efter er enten blevet fjernet, omdøbt eller midlertidigt utilgængelig."
-
-#. Text in function
-#: inc/roots-activation.php:1
-msgid "Theme Activation"
-msgstr "Theme Activation"
-
-#. Text in function
-#: inc/roots-options.php:1
-msgid "Theme Options"
-msgstr "Theme Options"
-
-#. Text in echo
-#: comments.php:27
-msgid "This post is password protected. Enter the password to view comments."
-msgstr "Dette indlæg er beskyttet med kodeord. Skriv venligst koden for at se kommentarer."
-
-#. Text in echo
-#: inc/roots-widgets.php:99
-msgid "Title (optional):"
-msgstr "Titel (valgfri):"
-
-#. Text in echo
-#: inc/roots-activation.php:100
-msgid "Update permalink structure?"
-msgstr "Opdatér permalink struktur?"
-
-#. Text in echo
-#: inc/roots-activation.php:113
-msgid "Update uploads folder?"
-msgstr "Opdatér uploads mappen?"
-
-#. Text in function
-#: inc/roots-widgets.php:1
-msgid "Use this widget to add a vCard"
-msgstr "Brug denne widget til at tilføje et visitkort (vCard)"
-
-#. Text in function
-#: functions.php:1
-msgid "Utility Navigation"
-msgstr "Sekundær Navigation"
-
-#. Text in echo
-#: comments.php:80
-msgid "Website"
-msgstr "Website"
-
-#. Text in function
-#: functions.php:1
-msgid "Written by"
-msgstr "Skrevet af"
-
-#. Text in function
-#: archive.php:8
-msgid "Yearly Archives: %s"
-msgstr "Årlige Arkiver: %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 "Ja"
-#. Text in function
-#: comments.php:65
-msgid "You must be logged in to post a comment."
-msgstr "Du skal være logget ind for at skrive en kommentar."
+#: lib/activation.php:88 lib/activation.php:101 lib/activation.php:114
+#: lib/activation.php:127 lib/activation.php:140
+msgid "No"
+msgstr "Nej"
-#. Text in echo
-#: comments.php:13
-msgid "Your comment is awaiting moderation."
-msgstr "Din kommentar afventer godkendelse."
+#: lib/activation.php:91
+msgid "Create a page called Home and set it to be the static front page"
+msgstr "Opret en side kaldet Home og sæt den til at være statisk forside"
-#. Text in echo
-#: inc/roots-widgets.php:115
-msgid "Zipcode/Postal Code:"
-msgstr "Postnr.:"
+#: lib/activation.php:96
+msgid "Change permalink structure?"
+msgstr "Opret permalink struktur?"
-#. Text in function
-#: inc/roots-widgets.php:1
+#: lib/activation.php:98
+msgid "Update permalink structure?"
+msgstr "Opdatér permalink struktur"
+
+#: lib/activation.php:104
+msgid "Change permalink structure to /%postname%/"
+msgstr "Skift permalink struktur til /%postname%/"
+
+#: lib/activation.php:109
+msgid "Change uploads folder?"
+msgstr "Skift uploads mappe?"
+
+#: lib/activation.php:111
+msgid "Update uploads folder?"
+msgstr "Opdatér uploads mappe?"
+
+#: lib/activation.php:117
+msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
+msgstr "Skift uploads mappe til /assets/ i stedet for /wp-content/uploads/"
+
+#: lib/activation.php:122 lib/activation.php:124
+msgid "Create navigation menu?"
+msgstr "Opret navigations menu?"
+
+#: lib/activation.php:130
+msgid "Create the Primary Navigation menu and set the location"
+msgstr "Opret den Primære Navigation menu og indstil placeringen"
+
+#: lib/activation.php:135 lib/activation.php:137
+msgid "Add pages to menu?"
+msgstr "Tilføj Sider til menuen?"
+
+#: lib/activation.php:143
+msgid "Add all current published pages to the Primary Navigation"
+msgstr "Tilføj all pt. udgivne Sider til den Primære Navigation"
+
+#: lib/cleanup.php:388
+msgid "Continued"
+msgstr "Fortsættes"
+
+#: lib/htaccess.php:25
+msgid "Please make sure your .htaccess file is writable "
+msgstr "Tjek venligst at din .htaccess fil er skrivbar"
+
+#: lib/init.php:13
+msgid "Primary Navigation"
+msgstr "Primære Navigation"
+
+#: lib/utils.php:14
+msgid "Latest Posts"
+msgstr "Seneste indlæg"
+
+#: lib/utils.php:23
+msgid "Daily Archives: %s"
+msgstr "Dagligt arkiv: %s"
+
+#: lib/utils.php:25
+msgid "Monthly Archives: %s"
+msgstr "Månedeligt arkiv: %s"
+
+#: lib/utils.php:27
+msgid "Yearly Archives: %s"
+msgstr "Årligt arkiv: %s"
+
+#: lib/utils.php:31
+msgid "Author Archives: %s"
+msgstr "Forfatter arkiv: %s"
+
+#: lib/utils.php:36
+msgid "Search Results for %s"
+msgstr "Søgeresultater for %s"
+
+#: lib/utils.php:38
+msgid "File Not Found"
+msgstr "Filen blev ikke fundet"
+
+#: lib/widgets.php:6
+msgid "Primary Sidebar"
+msgstr "Primære sidebar"
+
+#: lib/widgets.php:15
+msgid "Footer"
+msgstr "Footer"
+
+#: lib/widgets.php:41
+msgid "Use this widget to add a vCard"
+msgstr "Brug denne widget til at tilføje et vCard"
+
+#: lib/widgets.php:43
+msgid "Roots: vCard"
+msgstr "Roots: vCard"
+
+#: lib/widgets.php:70
msgid "vCard"
-msgstr "Visitkort (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 "(Redigér)"
+
+#: templates/comments.php:15
+msgid "Your comment is awaiting moderation."
+msgstr "Din kommentar afventer godkendelse"
+
+#: templates/comments.php:32
+msgid "This post is password protected. Enter the password to view comments."
+msgstr ""
+"Dette indlæg er beskyttet med adgangskode. Skriv koden for at se "
+"kommentarerne."
+
+#: templates/comments.php:39
+msgid "One Response to “%2$s”"
+msgid_plural "%1$s Responses to “%2$s”"
+msgstr[0] "Én kommentar til “%2$s”"
+msgstr[1] "%1$s kommentarer til “%2$s”"
+
+#: templates/comments.php:49 templates/comments.php:51
+msgid "← Older comments"
+msgstr "← Ældre kommentarer"
+
+#: templates/comments.php:54 templates/comments.php:56
+msgid "Newer comments →"
+msgstr "Nyere kommentarer →"
+
+#: templates/comments.php:66 templates/comments.php:76
+msgid "Comments are closed."
+msgstr "Kommentarer er lukket."
+
+#: templates/comments.php:83
+msgid "Leave a Reply"
+msgstr "Skriv et svar"
+
+#: templates/comments.php:83
+msgid "Leave a Reply to %s"
+msgstr "Skriv et svar til %s"
+
+#: templates/comments.php:86
+msgid "You must be logged in to post a comment."
+msgstr ""
+"Du skal være logget ind logget ind for at skrive en "
+"kommentar."
+
+#: templates/comments.php:90
+msgid "Logged in as %s."
+msgstr "Logget ind som %s."
+
+#: templates/comments.php:90
+msgid "Log out of this account"
+msgstr "Log ud af denne konto."
+
+#: templates/comments.php:90
+msgid "Log out »"
+msgstr "Log ud »"
+
+#: templates/comments.php:92
+msgid "Name"
+msgstr "Navn"
+
+#: templates/comments.php:92 templates/comments.php:94
+msgid " (required)"
+msgstr " (påkrævet)"
+
+#: templates/comments.php:94
+msgid "Email (will not be published)"
+msgstr "Email (bliver ikke vist)"
+
+#: templates/comments.php:96
+msgid "Website"
+msgstr "Website"
+
+#: templates/comments.php:99
+msgid "Comment"
+msgstr "Kommentar"
+
+#: templates/comments.php:101
+msgid "Submit Comment"
+msgstr "Skriv kommentar"
+
+#: templates/content-single.php:11
+msgid "Pages:"
+msgstr "Sider:"
+
+#: templates/content.php:4
+msgid "Sorry, no results were found."
+msgstr "Beklager, der blev ikke fundet nogen resultater."
+
+#: templates/content.php:28 templates/content.php:30
+msgid "← Older posts"
+msgstr "← Ældre indlæg"
+
+#: templates/content.php:33 templates/content.php:35
+msgid "Newer posts →"
+msgstr "Nyere indlæg →"
+
+#: templates/entry-meta.php:1
+msgid "Posted on %s at %s."
+msgstr "Skrevet d. %s kl. %s."
+
+#: templates/entry-meta.php:2
+msgid "Written by"
+msgstr "Skrevet af"
+
+#: templates/searchform.php:2
+msgid "Search for:"
+msgstr "Søg efter:"
+
+#: templates/searchform.php:3 templates/searchform.php:4
+msgid "Search"
+msgstr "Søg"
diff --git a/lang/pl_PL.mo b/lang/pl_PL.mo
index 9d89761..c7a7446 100644
Binary files a/lang/pl_PL.mo and b/lang/pl_PL.mo differ
diff --git a/lang/pl_PL.po b/lang/pl_PL.po
index 6e951c4..1db40f3 100644
--- a/lang/pl_PL.po
+++ b/lang/pl_PL.po
@@ -1,324 +1,283 @@
msgid ""
msgstr ""
-"Project-Id-Version: roots WP theme\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: \n"
-"Last-Translator: \n"
-"Language-Team: Kazik \n"
-"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Polish\n"
-"X-Poedit-Country: Poland\n"
-"X-Poedit-SourceCharset: utf-8\n"
+"Project-Id-Version: \n"
+"POT-Creation-Date: \n"
+"PO-Revision-Date: \n"
+"Last-Translator: Kazik \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"X-Generator: Poedit 1.5.5\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: 404.php:7
-msgid "File Not Found"
-msgstr "Nie znaleziono pliku"
+#: 404.php:5
+msgid ""
+"The page you are looking for might have been removed, had its name changed, "
+"or is temporarily unavailable."
+msgstr ""
+"Strona której szukasz nie istnieje, została przeniesiona lub jest tymczasowo "
+"niedostępna."
-#: 404.php:11
-msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
-msgstr "Strona której szukasz nie istnieje, została przeniesiona lub jest tymczasowo niedostępna."
-
-#: 404.php:13
+#: 404.php:8
msgid "Please try the following:"
msgstr "Spróbuj następujących czynności:"
-#: 404.php:15
+#: 404.php:10
msgid "Check your spelling"
msgstr "Sprawdź poprawność pisowni"
-#: 404.php:16
-#, php-format
+#: 404.php:11
msgid "Return to the home page"
msgstr "Powrót do strony głównej"
-#: 404.php:17
+#: 404.php:12
msgid "Click the Back button"
msgstr "Kliknij Powrót"
-#: archive.php:13
-#, php-format
-msgid "Daily Archives: %s"
-msgstr "Dzienne archiwa: %s"
-
-#: archive.php:15
-#, php-format
-msgid "Monthly Archives: %s"
-msgstr "Miesięczne archiwa: %s"
-
-#: archive.php:17
-#, php-format
-msgid "Yearly Archives: %s"
-msgstr "Roczne archiwa: %s"
-
-#: archive.php:21
-#, php-format
-msgid "Author Archives: %s"
-msgstr "Аrchiwa autora: %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 "(Edytuj)"
-
-#: comments.php:15
-msgid "Your comment is awaiting moderation."
-msgstr "Twój komentarz oczekuje na moderację."
-
-#: comments.php:32
-msgid "This post is password protected. Enter the password to view comments."
-msgstr "Ten artykuł jest chroniony hasłem. Podaj hasło aby zobaczyć komentarze."
-
-#: comments.php:49
-msgid "← Older comments"
-msgstr "← Starsze komentarze"
-
-#: comments.php:50
-msgid "Newer comments →"
-msgstr "Nowsze komentarze →"
-
-#: comments.php:58
-#: comments.php:68
-msgid "Comments are closed."
-msgstr "Komentarze są zamknięte."
-
-#: comments.php:75
-msgid "Leave a Reply"
-msgstr "Pozostaw odpowiedź"
-
-#: comments.php:75
-#, php-format
-msgid "Leave a Reply to %s"
-msgstr "Pozostaw odpowiedź dla %s"
-
-#: comments.php:78
-#, php-format
-msgid "You must be logged in to post a comment."
-msgstr "Musisz być zalogowany aby wysłać komentarz."
-
-#: comments.php:82
-#, php-format
-msgid "Logged in as %s."
-msgstr "Zalogowany jako: %s."
-
-#: comments.php:82
-msgid "Log out of this account"
-msgstr "Wyloguj się z tego konta"
-
-#: comments.php:82
-msgid "Log out »"
-msgstr "Wyloguj się »"
-
-#: comments.php:84
-msgid "Name"
-msgstr "Imię"
-
-#: comments.php:84
-#: comments.php:86
-msgid " (required)"
-msgstr " (wymagane)"
-
-#: comments.php:86
-msgid "Email (will not be published)"
-msgstr "E-mail (nie zostanie opublikowany)"
-
-#: comments.php:88
-msgid "Website"
-msgstr "Strona WWW"
-
-#: comments.php:91
-msgid "Comment"
-msgstr "Komentarz"
-
-#: comments.php:93
-msgid "Submit Comment"
-msgstr "Dodaj komentarz"
-
-#: functions.php:45
-msgid "Primary Navigation"
-msgstr "Główna nawigacja"
-
-#: functions.php:74
-#, php-format
-msgid "Posted on %s at %s."
-msgstr "Wysłane w dniu %s o %s."
-
-#: functions.php:75
-msgid "Written by"
-msgstr "Napisane przez"
-
-#: index.php:7
-msgid "Latest Posts"
-msgstr "Ostatnie artykuły"
-
-#: loop-single.php:14
-msgid "Pages:"
-msgstr "Strony:"
-
-#: loop.php:5
-msgid "Sorry, no results were found."
-msgstr "Przepraszamy, nic nie znaleziono."
-
-#: loop.php:37
-msgid "← Older posts"
-msgstr "← Starsze artykuły"
-
-#: loop.php:38
-msgid "Newer posts →"
-msgstr "Nowsze artykuły →"
-
-#: search.php:7
-msgid "Search Results for"
-msgstr "Wyniki wyszukiwania dla"
-
-#: searchform.php:2
-msgid "Search for:"
-msgstr "Szukaj:"
-
-#: searchform.php:3
-#: searchform.php:4
-msgid "Search"
-msgstr "Szukaj"
-
-#: inc/roots-activation.php:32
-#: inc/roots-activation.php:33
+#: lib/activation.php:31 lib/activation.php:32
msgid "Theme Activation"
-msgstr "Аktywacja motywu"
+msgstr "Aktywacja szablonu"
-#: inc/roots-activation.php:70
-#, php-format
+#: lib/activation.php:68
msgid "%s Theme Activation"
-msgstr "%s Aktywacja motywu"
+msgstr "%s Aktywacja szablonu"
-#: inc/roots-activation.php:85
-#: inc/roots-activation.php:87
+#: lib/activation.php:83 lib/activation.php:85
msgid "Create static front page?"
msgstr "Czy stworzyć statyczną stronę główną?"
-#: 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 "Tak"
-#: 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 "Nie"
-#: 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 "Stwórz stronę o nazwie Home i ustaw ją jako statyczną stronę główną"
-#: inc/roots-activation.php:98
+#: lib/activation.php:96
msgid "Change permalink structure?"
msgstr "Czy zmienić strukturę permalinków?"
-#: inc/roots-activation.php:100
+#: lib/activation.php:98
msgid "Update permalink structure?"
msgstr "Czy zaktualizować strukturę permalinków?"
-#: inc/roots-activation.php:106
+#: lib/activation.php:104
msgid "Change permalink structure to /%postname%/"
msgstr "Zmień strukturę permalinków: /%postname%/"
-#: inc/roots-activation.php:111
+#: lib/activation.php:109
msgid "Change uploads folder?"
msgstr "Czy zmienić folder z plikami?"
-#: inc/roots-activation.php:113
+#: lib/activation.php:111
msgid "Update uploads folder?"
msgstr "Czy dostosować folder z plikami?"
-#: inc/roots-activation.php:119
+#: lib/activation.php:117
msgid "Change uploads folder to /assets/ instead of /wp-content/uploads/"
-msgstr "Zamień folder z plikami na /assets/ zamiast /wp-content/uploads/"
+msgstr "Zmień nazwę folderu z plikami na /assets/ zamiast /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 "Czy stworzyć menu?"
-#: inc/roots-activation.php:132
+#: lib/activation.php:130
msgid "Create the Primary Navigation menu and set the location"
-msgstr "Stwórz główne menu i ustaw jego lokalizację"
+msgstr "Stwórz główne menu i ustaw jego pozycję"
-#: inc/roots-activation.php:137
-#: inc/roots-activation.php:139
+#: lib/activation.php:135 lib/activation.php:137
msgid "Add pages to menu?"
msgstr "Czy dodać strony do menu?"
-#: inc/roots-activation.php:145
+#: lib/activation.php:143
msgid "Add all current published pages to the Primary Navigation"
msgstr "Dodaj wszystkie aktualnie opublikowane strony do głównego menu"
-#: inc/roots-cleanup.php:370
+#: lib/cleanup.php:388
msgid "Continued"
msgstr "Kontynuuj"
-#: inc/roots-cleanup.php:538
-#, php-format
-msgid "Please update your site taglineHide Notice"
-msgstr "Proszę zaktualizować tagline. Ukryj wiadomość"
-
-#: inc/roots-htaccess.php:11
-#, php-format
+#: lib/htaccess.php:25
msgid "Please make sure your .htaccess file is writable "
-msgstr "Proszę upewnić się, że plik .htaccess jest dostępny do zapisu "
+msgstr ""
+"Proszę upewnij się, że plik .htaccess jest dostępny do "
+"zapisu "
-#: inc/roots-widgets.php:5
+#: lib/init.php:13
+msgid "Primary Navigation"
+msgstr "Główna nawigacja"
+
+#: lib/utils.php:14
+msgid "Latest Posts"
+msgstr "Ostatnie posty"
+
+#: lib/utils.php:23
+msgid "Daily Archives: %s"
+msgstr "Dzienne archiwa: %s"
+
+#: lib/utils.php:25
+msgid "Monthly Archives: %s"
+msgstr "Miesięczne archiwa: %s"
+
+#: lib/utils.php:27
+msgid "Yearly Archives: %s"
+msgstr "Roczne archiwa: %s"
+
+#: lib/utils.php:31
+msgid "Author Archives: %s"
+msgstr "Archiwa autora: %s"
+
+#: lib/utils.php:36
+msgid "Search Results for %s"
+msgstr "Wyniki wyszukiwania: %s"
+
+#: lib/utils.php:38
+msgid "File Not Found"
+msgstr "Nie znaleziono pliku"
+
+#: lib/widgets.php:6
+msgid "Primary Sidebar"
+msgstr "Główny sidebar"
+
+#: lib/widgets.php:15
+msgid "Footer"
+msgstr "Stopka"
+
+#: lib/widgets.php:41
msgid "Use this widget to add a vCard"
-msgstr "Użyj tej funkcji do dodania vCard"
+msgstr "Użyj tego widgetu do dodania karty (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 "Tytuł (opcjonalny):"
+#: templates/comments.php:7
+msgid "%s"
+msgstr "%s"
-#: inc/roots-widgets.php:103
-msgid "Street Address:"
-msgstr "Ulica:"
+#: templates/comments.php:8
+msgid "%1$s"
+msgstr "%1$s"
-#: inc/roots-widgets.php:107
-msgid "City/Locality:"
-msgstr "Miasto lub miejscowość:"
+#: templates/comments.php:9
+msgid "(Edit)"
+msgstr "(Edytuj)"
-#: inc/roots-widgets.php:111
-msgid "State/Region:"
-msgstr "Województwo:"
+#: templates/comments.php:15
+msgid "Your comment is awaiting moderation."
+msgstr "Twój komentarz oczekuje na moderację."
-#: inc/roots-widgets.php:115
-msgid "Zipcode/Postal Code:"
-msgstr "Kod pocztowy:"
+#: templates/comments.php:32
+msgid "This post is password protected. Enter the password to view comments."
+msgstr ""
+"Ten artykuł jest chroniony hasłem. Podaj hasło aby zobaczyć komentarze."
-#: inc/roots-widgets.php:119
-msgid "Telephone:"
-msgstr "Тelefon:"
+#: templates/comments.php:39
+msgid "One Response to “%2$s”"
+msgid_plural "%1$s Responses to “%2$s”"
+msgstr[0] "Jedna odpowiedź na “%2$s”"
+msgstr[1] "%1$s Odpowiedzi na “%2$s”"
-#: inc/roots-widgets.php:123
-msgid "Email:"
-msgstr "Е-mail:"
+#: templates/comments.php:49 templates/comments.php:51
+msgid "← Older comments"
+msgstr "← Starsze komentarze"
+#: templates/comments.php:54 templates/comments.php:56
+msgid "Newer comments →"
+msgstr "Nowsze komentarze →"
+
+#: templates/comments.php:66 templates/comments.php:76
+msgid "Comments are closed."
+msgstr "Komentarze są zamknięte."
+
+#: templates/comments.php:83
+msgid "Leave a Reply"
+msgstr "Pozostaw odpowiedź"
+
+#: templates/comments.php:83
+msgid "Leave a Reply to %s"
+msgstr "Pozostaw odpowiedź na %s"
+
+#: templates/comments.php:86
+msgid "You must be logged in to post a comment."
+msgstr "Musisz być zalogowany aby wysłać komentarz."
+
+#: templates/comments.php:90
+msgid "Logged in as %s."
+msgstr "Zalogowany jako: %s."
+
+#: templates/comments.php:90
+msgid "Log out of this account"
+msgstr "Wyloguj się z tego konta"
+
+#: templates/comments.php:90
+msgid "Log out »"
+msgstr "Wyloguj się »"
+
+#: templates/comments.php:92
+msgid "Name"
+msgstr "Imię"
+
+#: templates/comments.php:92 templates/comments.php:94
+msgid " (required)"
+msgstr " (wymagane)"
+
+#: templates/comments.php:94
+msgid "Email (will not be published)"
+msgstr "E-mail (nie zostanie opublikowany)"
+
+#: templates/comments.php:96
+msgid "Website"
+msgstr "Strona WWW"
+
+#: templates/comments.php:99
+msgid "Comment"
+msgstr "Komentarz"
+
+#: templates/comments.php:101
+msgid "Submit Comment"
+msgstr "Dodaj komentarz"
+
+#: templates/content-single.php:11
+msgid "Pages:"
+msgstr "Strony:"
+
+#: templates/content.php:4
+msgid "Sorry, no results were found."
+msgstr "Przepraszamy, brak rezultatów wyszukiwania."
+
+#: templates/content.php:28 templates/content.php:30
+msgid "← Older posts"
+msgstr "← Starsze posty"
+
+#: templates/content.php:33 templates/content.php:35
+msgid "Newer posts →"
+msgstr "Nowsze posty →"
+
+#: templates/entry-meta.php:1
+msgid "Posted on %s at %s."
+msgstr "Wysłane %s o %s."
+
+#: templates/entry-meta.php:2
+msgid "Written by"
+msgstr "Napisane przez"
+
+#: templates/searchform.php:2
+msgid "Search for:"
+msgstr "Szukaj:"
+
+#: templates/searchform.php:3 templates/searchform.php:4
+msgid "Search"
+msgstr "Szukaj"
diff --git a/lib/cleanup.php b/lib/cleanup.php
index eed98d2..45a48ea 100644
--- a/lib/cleanup.php
+++ b/lib/cleanup.php
@@ -99,12 +99,6 @@ add_filter('style_loader_tag', 'roots_clean_style_tag');
* Add and remove body_class() classes
*/
function roots_body_class($classes) {
- // Add 'top-navbar' class if using Bootstrap's Navbar
- // Used to add styling to account for the WordPress admin bar
- if (current_theme_supports('bootstrap-top-navbar')) {
- $classes[] = 'top-navbar';
- }
-
// Add post/page slug
if (is_single() || is_page() && !is_front_page()) {
$classes[] = basename(get_permalink());
diff --git a/lib/comments.php b/lib/comments.php
new file mode 100644
index 0000000..62f4c3e
--- /dev/null
+++ b/lib/comments.php
@@ -0,0 +1,63 @@
+
+
+ new Roots_Walker_Comment)); ?>
- 1 && get_option('page_comments')) : // are there comments to navigate through ?> - - - + 1 && get_option('page_comments')) : ?> + + -