first commit with foundationpress template
This commit is contained in:
parent
cc38b75128
commit
5b728241b8
|
@ -0,0 +1,18 @@
|
||||||
|
# editorconfig.org
|
||||||
|
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
end_of_line = lf
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[{*.php,*.html}]
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[{*.txt,wp-config-sample.php,wp-config.php}]
|
||||||
|
end_of_line = crlf
|
|
@ -1,8 +1,13 @@
|
||||||
|
FoundationPress/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules
|
node_modules
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
bower_components
|
|
||||||
dist
|
dist
|
||||||
|
config.yml
|
||||||
|
*.sass-cache*
|
||||||
|
*.log
|
||||||
|
.idea/
|
||||||
*.swp
|
*.swp
|
||||||
.cache
|
packaged/
|
||||||
.idea
|
wpcs/
|
||||||
|
vendor/
|
||||||
|
|
|
@ -0,0 +1,34 @@
|
||||||
|
language: php
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- name: "PHP 5.6 Compatibility Test"
|
||||||
|
php: "5.6"
|
||||||
|
env: TEST_VERSION=5.6
|
||||||
|
- name: "PHP7.0 Compatibility Test"
|
||||||
|
php: "7.0"
|
||||||
|
env: TEST_VERSION=7.0
|
||||||
|
- name: "PHP 7.1 Compatibility Test"
|
||||||
|
php: "7.1"
|
||||||
|
env: TEST_VERSION=7.1
|
||||||
|
- name: "PHP 7.2 Compatibility Test"
|
||||||
|
php: "7.2"
|
||||||
|
env: TEST_VERSION=7.2
|
||||||
|
- name: "PHP 7.3 Compatibility Test"
|
||||||
|
php: "7.3"
|
||||||
|
env: TEST_VERSION=7.3
|
||||||
|
allow_failures:
|
||||||
|
- name: "PHP 5.3 Compatibility Test"
|
||||||
|
php: "5.3"
|
||||||
|
env: TEST_VERSION=5.3
|
||||||
|
- name: "PHP 5.4 Compatibility Test"
|
||||||
|
php: "5.4"
|
||||||
|
env: TEST_VERSION=5.4
|
||||||
|
- name: "PHP 5.5 Compatibility Test"
|
||||||
|
php: "5.5"
|
||||||
|
env: TEST_VERSION=5.5
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- composer install --dev
|
||||||
|
script:
|
||||||
|
- vendor/bin/phpcs -p src/ --standard=PHPCompatibility --runtime-set testVersion $TEST_VERSION
|
|
@ -0,0 +1,46 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying 404 pages (not found)
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<main class="main-content">
|
||||||
|
<article>
|
||||||
|
<header>
|
||||||
|
<h1 class="entry-title"><?php _e( 'File Not Found', 'foundationpress' ); ?></h1>
|
||||||
|
</header>
|
||||||
|
<div class="entry-content">
|
||||||
|
<div class="error">
|
||||||
|
<p class="bottom"><?php _e( 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'foundationpress' ); ?></p>
|
||||||
|
</div>
|
||||||
|
<p><?php _e( 'Please try the following:', 'foundationpress' ); ?></p>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<?php _e( 'Check your spelling', 'foundationpress' ); ?>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<?php
|
||||||
|
/* translators: %s: home page url */
|
||||||
|
printf(
|
||||||
|
__( 'Return to the <a href="%s">home page</a>', 'foundationpress' ),
|
||||||
|
home_url()
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<?php _e( 'Click the <a href="javascript:history.back()">Back</a> button', 'foundationpress' ); ?>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php get_footer();
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,18 @@
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -0,0 +1,6 @@
|
||||||
|
# arcHIVE-wordpress-theme
|
||||||
|
|
||||||
|
will be build on top of [Foundation](https://get.foundation) and using the clean theme starter [FoundationPress]https://github.com/olefredrik/FoundationPress)
|
||||||
|
|
||||||
|
starting with html template first
|
||||||
|
|
181
README.md
181
README.md
|
@ -1,6 +1,181 @@
|
||||||
# arcHIVE-wordpress-theme
|
# DEPRECATED
|
||||||
|
This project will no longer be maintained. As Zurb Foundation is [no longer in active development ](https://github.com/foundation/foundation-sites/issues/11767), I would recommend that you base your front-end code on another framework, such as [Semantic UI](https://semantic-ui.com) or [Bootstrap](https://getbootstrap.com).
|
||||||
|
|
||||||
will be build on top of [Foundation](https://get.foundation) and using the clean theme starter [JointsWP]https://jointswp.com/)
|
To all of you who have contributed to FoundationPress over the years:
|
||||||
|
**Thank you!**
|
||||||
|
|
||||||
starting with html template first
|
– Ole Fredrik
|
||||||
|
|
||||||
|
|
||||||
|
# FoundationPress
|
||||||
|
|
||||||
|
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/olefredrik/foundationpress?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
||||||
|
[![GitHub version](https://badge.fury.io/gh/olefredrik%2Ffoundationpress.svg)](https://github.com/olefredrik/FoundationPress/releases)
|
||||||
|
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
|
This is a starter-theme for WordPress based on Zurb's [Foundation for Sites 6](https://foundation.zurb.com/sites.html), the most advanced responsive (mobile-first) framework in the world. The purpose of FoundationPress, is to act as a small and handy toolbox that contains the essentials needed to build any design. FoundationPress is meant to be a starting point, not the final product.
|
||||||
|
|
||||||
|
Please fork, copy, modify, delete, share or do whatever you like with this.
|
||||||
|
|
||||||
|
All contributions are welcome!
|
||||||
|
|
||||||
|
## Requirements
|
||||||
|
|
||||||
|
**This project requires [Node.js](http://nodejs.org) v6.x.x 11.6.x to be installed on your machine.** Please be aware that you might encounter problems with the installation if you are using the most current Node version (bleeding edge) with all the latest features.
|
||||||
|
|
||||||
|
FoundationPress uses [Sass](http://Sass-lang.com/) (CSS with superpowers). In short, Sass is a CSS pre-processor that allows you to write styles more effectively and tidy.
|
||||||
|
|
||||||
|
The Sass is compiled using libsass, which requires the GCC to be installed on your machine. Windows users can install it through [MinGW](http://www.mingw.org/), and Mac users can install it through the [Xcode Command-line Tools](http://osxdaily.com/2014/02/12/install-command-line-tools-mac-os-x/).
|
||||||
|
|
||||||
|
If you have not worked with a Sass-based workflow before, I would recommend reading [FoundationPress for beginners](https://foundationpress.olefredrik.com/posts/tutorials/foundationpress-for-beginners), a short blog post that explains what you need to know.
|
||||||
|
|
||||||
|
## Quickstart
|
||||||
|
|
||||||
|
### 1. Clone the repository and install with npm
|
||||||
|
```bash
|
||||||
|
$ cd my-wordpress-folder/wp-content/themes/
|
||||||
|
$ git clone https://github.com/olefredrik/FoundationPress.git
|
||||||
|
$ cd FoundationPress
|
||||||
|
$ npm install
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Configuration
|
||||||
|
|
||||||
|
#### YAML config file
|
||||||
|
FoundationPress includes a `config-default.yml` file. To make changes to the configuration, make a copy of `config-default.yml` and name it `config.yml` and make changes to that file. The `config.yml` file is ignored by git so that each environment can use a different configuration with the same git repo.
|
||||||
|
|
||||||
|
At the start of the build process a check is done to see if a `config.yml` file exists. If `config.yml` exists, the configuration will be loaded from `config.yml`. If `config.yml` does not exist, `config-default.yml` will be used as a fallback.
|
||||||
|
|
||||||
|
#### Browsersync setup
|
||||||
|
If you want to take advantage of [Browsersync](https://www.browsersync.io/) (automatic browser refresh when a file is saved), simply open your `config.yml` file after creating it in the previous step, and put your local dev-server address and port (e.g http://localhost:8888) in the `url` property under the `BROWSERSYNC` object.
|
||||||
|
|
||||||
|
#### Static asset hashing / cache breaker
|
||||||
|
If you want to make sure your users see the latest changes after re-deploying your theme, you can enable static asset hashing. In your `config.yml`, set ``REVISIONING: true;``. Hashing will work on the ``npm run build`` and ``npm run dev`` commands. It will not be applied on the start command with browsersync. This is by design. Hashing will only change if there are actual changes in the files.
|
||||||
|
|
||||||
|
### 3. Get started
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ npm start
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Compile assets for production
|
||||||
|
|
||||||
|
When building for production, the CSS and JS will be minified. To minify the assets in your `/dist` folder, run
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ npm run build
|
||||||
|
```
|
||||||
|
|
||||||
|
#### To create a .zip file of your theme, run:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ npm run package
|
||||||
|
```
|
||||||
|
|
||||||
|
Running this command will build and minify the theme's assets and place a .zip archive of the theme in the `packaged` directory. This excludes the developer files/directories from your theme like `/node_modules`, `/src`, etc. to keep the theme lightweight for transferring the theme to a staging or production server.
|
||||||
|
|
||||||
|
### Project structure
|
||||||
|
|
||||||
|
In the `/src` folder you will find the working files for all your assets. Every time you make a change to a file that is watched by Gulp, the output will be saved to the `/dist` folder. The contents of this folder is the compiled code that you should not touch (unless you have a good reason for it).
|
||||||
|
|
||||||
|
The `/page-templates` folder contains templates that can be selected in the Pages section of the WordPress admin panel. To create a new page-template, simply create a new file in this folder and make sure to give it a template name.
|
||||||
|
|
||||||
|
I guess the rest is quite self explanatory. Feel free to ask if you feel stuck.
|
||||||
|
|
||||||
|
### Styles and Sass Compilation
|
||||||
|
|
||||||
|
* `style.css`: Do not worry about this file. (For some reason) it's required by WordPress. All styling are handled in the Sass files described below
|
||||||
|
|
||||||
|
* `src/assets/scss/app.scss`: Make imports for all your styles here
|
||||||
|
* `src/assets/scss/global/*.scss`: Global settings
|
||||||
|
* `src/assets/scss/components/*.scss`: Buttons etc.
|
||||||
|
* `src/assets/scss/modules/*.scss`: Topbar, footer etc.
|
||||||
|
* `src/assets/scss/templates/*.scss`: Page template styling
|
||||||
|
|
||||||
|
* `dist/assets/css/app.css`: This file is loaded in the `<head>` section of your document, and contains the compiled styles for your project.
|
||||||
|
|
||||||
|
If you're new to Sass, please note that you need to have Gulp running in the background (``npm start``), for any changes in your scss files to be compiled to `app.css`.
|
||||||
|
|
||||||
|
### JavaScript Compilation
|
||||||
|
|
||||||
|
All JavaScript files, including Foundation's modules, are imported through the `src/assets/js/app.js` file. The files are imported using module dependency with [webpack](https://webpack.js.org/) as the module bundler.
|
||||||
|
|
||||||
|
If you're unfamiliar with modules and module bundling, check out [this resource for node style require/exports](http://openmymind.net/2012/2/3/Node-Require-and-Exports/) and [this resource to understand ES6 modules](http://exploringjs.com/es6/ch_modules.html).
|
||||||
|
|
||||||
|
Foundation modules are loaded in the `src/assets/js/app.js` file. By default all components are loaded. You can also pick and choose which modules to include. Just follow the instructions in the file.
|
||||||
|
|
||||||
|
If you need to output additional JavaScript files separate from `app.js`, do the following:
|
||||||
|
* Create new `custom.js` file in `src/assets/js/`. If you will be using jQuery, add `import $ from 'jquery';` at the top of the file.
|
||||||
|
* In `config.yml`, add `src/assets/js/custom.js` to `PATHS.entries`.
|
||||||
|
* Build (`npm start`)
|
||||||
|
* You will now have a `custom.js` file outputted to the `dist/assets/js/` directory.
|
||||||
|
|
||||||
|
## Demo
|
||||||
|
|
||||||
|
* [Clean FoundationPress install](http://foundationpress.olefredrik.com/)
|
||||||
|
* [FoundationPress Kitchen Sink - see every single element in action](http://foundationpress.olefredrik.com/kitchen-sink/)
|
||||||
|
|
||||||
|
## Local Development
|
||||||
|
We recommend using one of the following setups for local WordPress development:
|
||||||
|
|
||||||
|
* [MAMP](https://www.mamp.info/en/) (macOS)
|
||||||
|
* [WAMP](http://www.wampserver.com/en/download-wampserver-64bits/) (Windows)
|
||||||
|
* [LAMP](https://www.linux.com/learn/easy-lamp-server-installation) (Linux)
|
||||||
|
* [Local](https://local.getflywheel.com/) (macOS/Windows)
|
||||||
|
* [VVV (Varying Vagrant Vagrants)](https://github.com/Varying-Vagrant-Vagrants/VVV) (Vagrant Box)
|
||||||
|
* [Trellis](https://roots.io/trellis/)
|
||||||
|
|
||||||
|
|
||||||
|
## Tutorials
|
||||||
|
|
||||||
|
* [FoundationPress for beginners](https://foundationpress.olefredrik.com/posts/tutorials/foundationpress-for-beginners/)
|
||||||
|
* [Responsive images in WordPress with Interchange](http://rachievee.com/responsive-images-in-wordpress/)
|
||||||
|
* [Learn to use the _settings file to change almost every aspect of a Foundation site](http://zurb.com/university/lessons/66)
|
||||||
|
* [Other lessons from Zurb University](http://zurb.com/university/past-lessons)
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
* [Zurb Foundation Docs](http://foundation.zurb.com/docs/)
|
||||||
|
* [WordPress Codex](http://codex.wordpress.org/)
|
||||||
|
|
||||||
|
## Showcase
|
||||||
|
|
||||||
|
* [Harvard Center for Green Buildings and Cities](http://www.harvardcgbc.org/)
|
||||||
|
* [The New Tropic](http://thenewtropic.com/)
|
||||||
|
* [Parent-Child Home Program](http://www.parent-child.org/)
|
||||||
|
* [Hip and Healthy](http://hipandhealthy.com/)
|
||||||
|
* [Franchise Career Advisors](http://franchisecareeradvisors.com/)
|
||||||
|
* [Maren Schmidt](http://marenschmidt.com/)
|
||||||
|
* [Finnerodja](http://www.finnerodja.se/)
|
||||||
|
* [WP Diamonds](http://www.wpdiamonds.com/)
|
||||||
|
* [Storm Arts](http://stormarts.fi/)
|
||||||
|
* [ProfitGym](http://profitgym.nl/)
|
||||||
|
* [Agritur Piasina](http://www.agriturpiasina.it/)
|
||||||
|
* [Byington Vineyard & Winery](https://byington.com/)
|
||||||
|
* [Show And Tell](http://www.showandtelluk.com/)
|
||||||
|
* [Wahl + Case](https://www.wahlandcase.com/)
|
||||||
|
* [Morgridge Institute for Research](https://morgridge.org)
|
||||||
|
* [Impeach Trump Now](https://impeachdonaldtrumpnow.org/)
|
||||||
|
* [La revanche des sites](https://www.la-revanche-des-sites.fr/)
|
||||||
|
* [Dyami Wilson](https://dyamiwilson.com)
|
||||||
|
* [Madico Solutions](https://madico.com)
|
||||||
|
|
||||||
|
>Credit goes to all the brilliant designers and developers out there. Have **you** made a site that should be on this list? [Please let me know](https://twitter.com/olefredrik)
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
#### Here are ways to get involved:
|
||||||
|
|
||||||
|
1. [Star](https://github.com/olefredrik/FoundationPress/stargazers) the project!
|
||||||
|
2. Answer questions that come through [GitHub issues](https://github.com/olefredrik/FoundationPress/issues)
|
||||||
|
3. Report a bug that you find
|
||||||
|
4. Share a theme you've built on top of FoundationPress
|
||||||
|
5. [Tweet](https://twitter.com/intent/tweet?original_referer=http%3A%2F%2Ffoundationpress.olefredrik.com%2F&text=Check%20out%20FoundationPress%2C%20the%20ultimate%20%23WordPress%20starter-theme%20built%20on%20%23Foundation%206&tw_p=tweetbutton&url=http%3A%2F%2Ffoundationpress.olefredrik.com&via=olefredrik) and [blog](http://www.justinfriebel.com/my-first-experience-with-foundationpress-a-wordpress-starter-theme-106/) your experience of FoundationPress.
|
||||||
|
|
||||||
|
#### Pull Requests
|
||||||
|
|
||||||
|
Pull requests are highly appreciated. Please follow these guidelines:
|
||||||
|
|
||||||
|
1. Solve a problem. Features are great, but even better is cleaning-up and fixing issues in the code that you discover
|
||||||
|
2. Make sure that your code is bug-free and does not introduce new bugs
|
||||||
|
3. Create a [pull request](https://help.github.com/articles/creating-a-pull-request)
|
||||||
|
4. Verify that all the Travis-CI build checks have passed
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying archive pages
|
||||||
|
*
|
||||||
|
* Used to display archive-type pages if nothing more specific matches a query.
|
||||||
|
* For example, puts together date-based pages if no date.php file exists.
|
||||||
|
*
|
||||||
|
* If you'd like to further customize these archive views, you may create a
|
||||||
|
* new template file for each one. For example, tag.php (Tag archives),
|
||||||
|
* category.php (Category archives), author.php (Author archives), etc.
|
||||||
|
*
|
||||||
|
* @link https://codex.wordpress.org/Template_Hierarchy
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<main class="main-content">
|
||||||
|
<?php if ( have_posts() ) : ?>
|
||||||
|
|
||||||
|
<?php /* Start the Loop */ ?>
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
|
||||||
|
<?php else : ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', 'none' ); ?>
|
||||||
|
|
||||||
|
<?php endif; // End have_posts() check. ?>
|
||||||
|
|
||||||
|
<?php /* Display navigation to next/previous pages when applicable */ ?>
|
||||||
|
<?php
|
||||||
|
if ( function_exists( 'foundationpress_pagination' ) ) :
|
||||||
|
foundationpress_pagination();
|
||||||
|
elseif ( is_paged() ) :
|
||||||
|
?>
|
||||||
|
<nav id="post-nav">
|
||||||
|
<div class="post-previous"><?php next_posts_link( __( '← Older posts', 'foundationpress' ) ); ?></div>
|
||||||
|
<div class="post-next"><?php previous_posts_link( __( 'Newer posts →', 'foundationpress' ) ); ?></div>
|
||||||
|
</nav>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,47 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<ruleset name="WordPress Theme Coding Standards">
|
||||||
|
<!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->
|
||||||
|
<!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml -->
|
||||||
|
|
||||||
|
<!-- Set a description for this ruleset. -->
|
||||||
|
<description>A custom set of code standard rules to check for WordPress themes.</description>
|
||||||
|
|
||||||
|
<!-- Include the WordPress ruleset, with exclusions. -->
|
||||||
|
<rule ref="WordPress">
|
||||||
|
<exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact" />
|
||||||
|
<exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" />
|
||||||
|
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed" />
|
||||||
|
<exclude name="Generic.Files.EndFileNewline.NotFound" />
|
||||||
|
<exclude name="Generic.Strings.UnnecessaryStringConcat.Found" />
|
||||||
|
<exclude name="Generic.Formatting.DisallowMultipleStatements.SameLine" />
|
||||||
|
<exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie.ContentAfterBrace" />
|
||||||
|
<exclude name="PEAR.Functions.FunctionCallSignature.Indent" />
|
||||||
|
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket" />
|
||||||
|
<exclude name="PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket" />
|
||||||
|
|
||||||
|
<exclude name="Squiz.Commenting.FileComment.WrongStyle" />
|
||||||
|
<exclude name="Squiz.Commenting.BlockComment.NoEmptyLineBefore" />
|
||||||
|
<exclude name="Squiz.Commenting.FunctionComment.MissingParamTag" />
|
||||||
|
<exclude name="Squiz.Commenting.InlineComment.NotCapital" />
|
||||||
|
<exclude name="Squiz.Commenting.InlineComment.SpacingAfter" />
|
||||||
|
<exclude name="Squiz.Commenting.VariableComment.WrongStyle" />
|
||||||
|
<exclude name="Squiz.Commenting.FunctionComment.Missing" />
|
||||||
|
<exclude name="Squiz.Commenting.FunctionComment.WrongStyle" />
|
||||||
|
<exclude name="Squiz.Commenting.InlineComment.InvalidEndChar" />
|
||||||
|
<exclude name="Squiz.Commenting.ClassComment.Missing" />
|
||||||
|
<exclude name="Squiz.ControlStructures.ControlSignature.SpaceAfterCloseBrace" />
|
||||||
|
<exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing.SpacingAfterOpenHint" />
|
||||||
|
|
||||||
|
<exclude name="WordPress.XSS.EscapeOutput.UnsafePrintingFunction" />
|
||||||
|
<exclude name="WordPress.XSS.EscapeOutput.OutputNotEscaped" />
|
||||||
|
<exclude name="WordPress.Arrays.ArrayDeclaration.NoSpaceAfterOpenParenthesis" />
|
||||||
|
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceAfterArrayOpener" />
|
||||||
|
<exclude name="WordPress.Arrays.ArrayDeclarationSpacing.NoSpaceBeforeArrayCloser" />
|
||||||
|
|
||||||
|
<exclude name="WordPress.Variables.GlobalVariables" />
|
||||||
|
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterOpenParenthesis" />
|
||||||
|
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeCloseParenthesis)" />
|
||||||
|
|
||||||
|
<exclude name="WordPress.VIP.RestrictedFunctions" />
|
||||||
|
</rule>
|
||||||
|
</ruleset>
|
|
@ -0,0 +1,80 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying comments
|
||||||
|
*
|
||||||
|
* The area of the page that contains both current comments
|
||||||
|
* and the comment form.
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( have_comments() ) :
|
||||||
|
?>
|
||||||
|
<section id="comments">
|
||||||
|
<?php
|
||||||
|
|
||||||
|
wp_list_comments(
|
||||||
|
array(
|
||||||
|
'walker' => new Foundationpress_Comments(),
|
||||||
|
'max_depth' => '',
|
||||||
|
'style' => 'ol',
|
||||||
|
'callback' => null,
|
||||||
|
'end-callback' => null,
|
||||||
|
'type' => 'all',
|
||||||
|
'reply_text' => __( 'Reply', 'foundationpress' ),
|
||||||
|
'page' => '',
|
||||||
|
'per_page' => '',
|
||||||
|
'avatar_size' => 48,
|
||||||
|
'reverse_top_level' => null,
|
||||||
|
'reverse_children' => '',
|
||||||
|
'format' => 'html5',
|
||||||
|
'short_ping' => false,
|
||||||
|
'echo' => true,
|
||||||
|
'moderation' => __( 'Your comment is awaiting moderation.', 'foundationpress' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
||||||
|
<?php
|
||||||
|
foundationpress_the_comments_pagination();
|
||||||
|
?>
|
||||||
|
</section>
|
||||||
|
<?php
|
||||||
|
endif;
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
Do not delete these lines.
|
||||||
|
Prevent access to this file directly
|
||||||
|
*/
|
||||||
|
|
||||||
|
defined( 'ABSPATH' ) || die( __( 'Please do not load this page directly. Thanks!', 'foundationpress' ) );
|
||||||
|
|
||||||
|
if ( post_password_required() ) { ?>
|
||||||
|
<section id="comments">
|
||||||
|
<div class="notice">
|
||||||
|
<p class="bottom"><?php _e( 'This post is password protected. Enter the password to view comments.', 'foundationpress' ); ?></p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<?php
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
if ( comments_open() ) :
|
||||||
|
?>
|
||||||
|
<section id="respond">
|
||||||
|
<?php
|
||||||
|
comment_form(
|
||||||
|
array(
|
||||||
|
'class_submit' => 'button'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
</section>
|
||||||
|
<?php
|
||||||
|
endif; // If you delete this the sky will fall on your head.
|
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "olefredrik/foundationpress",
|
||||||
|
"description": "FoundationPress is a WordPress starter theme based on Foundation 6 by Zurb",
|
||||||
|
"type": "wordpress-theme",
|
||||||
|
"minimum-stability" : "dev",
|
||||||
|
"license": "MIT",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Ole Fredrik Lie",
|
||||||
|
"email": "mail@olefredrik.com"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"composer/installers": "~1.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"squizlabs/php_codesniffer": "*",
|
||||||
|
"wimg/php-compatibility": "*",
|
||||||
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.4"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,317 @@
|
||||||
|
{
|
||||||
|
"_readme": [
|
||||||
|
"This file locks the dependencies of your project to a known state",
|
||||||
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
|
"This file is @generated automatically"
|
||||||
|
],
|
||||||
|
"content-hash": "ebb80c6b0e6f29e301b37472dcc8d524",
|
||||||
|
"packages": [
|
||||||
|
{
|
||||||
|
"name": "composer/installers",
|
||||||
|
"version": "v1.6.0",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/composer/installers.git",
|
||||||
|
"reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
|
||||||
|
"reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"composer-plugin-api": "^1.0"
|
||||||
|
},
|
||||||
|
"replace": {
|
||||||
|
"roundcube/plugin-installer": "*",
|
||||||
|
"shama/baton": "*"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"composer/composer": "1.0.*@dev",
|
||||||
|
"phpunit/phpunit": "^4.8.36"
|
||||||
|
},
|
||||||
|
"type": "composer-plugin",
|
||||||
|
"extra": {
|
||||||
|
"class": "Composer\\Installers\\Plugin",
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "1.0-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Composer\\Installers\\": "src/Composer/Installers"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Kyle Robinson Young",
|
||||||
|
"email": "kyle@dontkry.com",
|
||||||
|
"homepage": "https://github.com/shama"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A multi-framework Composer library installer",
|
||||||
|
"homepage": "https://composer.github.io/installers/",
|
||||||
|
"keywords": [
|
||||||
|
"Craft",
|
||||||
|
"Dolibarr",
|
||||||
|
"Eliasis",
|
||||||
|
"Hurad",
|
||||||
|
"ImageCMS",
|
||||||
|
"Kanboard",
|
||||||
|
"Lan Management System",
|
||||||
|
"MODX Evo",
|
||||||
|
"Mautic",
|
||||||
|
"Maya",
|
||||||
|
"OXID",
|
||||||
|
"Plentymarkets",
|
||||||
|
"Porto",
|
||||||
|
"RadPHP",
|
||||||
|
"SMF",
|
||||||
|
"Thelia",
|
||||||
|
"WolfCMS",
|
||||||
|
"agl",
|
||||||
|
"aimeos",
|
||||||
|
"annotatecms",
|
||||||
|
"attogram",
|
||||||
|
"bitrix",
|
||||||
|
"cakephp",
|
||||||
|
"chef",
|
||||||
|
"cockpit",
|
||||||
|
"codeigniter",
|
||||||
|
"concrete5",
|
||||||
|
"croogo",
|
||||||
|
"dokuwiki",
|
||||||
|
"drupal",
|
||||||
|
"eZ Platform",
|
||||||
|
"elgg",
|
||||||
|
"expressionengine",
|
||||||
|
"fuelphp",
|
||||||
|
"grav",
|
||||||
|
"installer",
|
||||||
|
"itop",
|
||||||
|
"joomla",
|
||||||
|
"kohana",
|
||||||
|
"laravel",
|
||||||
|
"lavalite",
|
||||||
|
"lithium",
|
||||||
|
"magento",
|
||||||
|
"majima",
|
||||||
|
"mako",
|
||||||
|
"mediawiki",
|
||||||
|
"modulework",
|
||||||
|
"modx",
|
||||||
|
"moodle",
|
||||||
|
"osclass",
|
||||||
|
"phpbb",
|
||||||
|
"piwik",
|
||||||
|
"ppi",
|
||||||
|
"puppet",
|
||||||
|
"pxcms",
|
||||||
|
"reindex",
|
||||||
|
"roundcube",
|
||||||
|
"shopware",
|
||||||
|
"silverstripe",
|
||||||
|
"sydes",
|
||||||
|
"symfony",
|
||||||
|
"typo3",
|
||||||
|
"wordpress",
|
||||||
|
"yawik",
|
||||||
|
"zend",
|
||||||
|
"zikula"
|
||||||
|
],
|
||||||
|
"time": "2018-08-27T06:10:37+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packages-dev": [
|
||||||
|
{
|
||||||
|
"name": "dealerdirect/phpcodesniffer-composer-installer",
|
||||||
|
"version": "v0.4.4",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
|
||||||
|
"reference": "2e41850d5f7797cbb1af7b030d245b3b24e63a08"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/2e41850d5f7797cbb1af7b030d245b3b24e63a08",
|
||||||
|
"reference": "2e41850d5f7797cbb1af7b030d245b3b24e63a08",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"composer-plugin-api": "^1.0",
|
||||||
|
"php": "^5.3|^7",
|
||||||
|
"squizlabs/php_codesniffer": "*"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"composer/composer": "*",
|
||||||
|
"wimg/php-compatibility": "^8.0"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"dealerdirect/qa-tools": "All the PHP QA tools you'll need"
|
||||||
|
},
|
||||||
|
"type": "composer-plugin",
|
||||||
|
"extra": {
|
||||||
|
"class": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-4": {
|
||||||
|
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Franck Nijhof",
|
||||||
|
"email": "f.nijhof@dealerdirect.nl",
|
||||||
|
"homepage": "http://workingatdealerdirect.eu",
|
||||||
|
"role": "Developer"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
|
||||||
|
"homepage": "http://workingatdealerdirect.eu",
|
||||||
|
"keywords": [
|
||||||
|
"PHPCodeSniffer",
|
||||||
|
"PHP_CodeSniffer",
|
||||||
|
"code quality",
|
||||||
|
"codesniffer",
|
||||||
|
"composer",
|
||||||
|
"installer",
|
||||||
|
"phpcs",
|
||||||
|
"plugin",
|
||||||
|
"qa",
|
||||||
|
"quality",
|
||||||
|
"standard",
|
||||||
|
"standards",
|
||||||
|
"style guide",
|
||||||
|
"stylecheck",
|
||||||
|
"tests"
|
||||||
|
],
|
||||||
|
"time": "2017-12-06T16:27:17+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "squizlabs/php_codesniffer",
|
||||||
|
"version": "dev-master",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
|
||||||
|
"reference": "d86ad3c3d8a6cb40f45a377695d8f35b592ca821"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/d86ad3c3d8a6cb40f45a377695d8f35b592ca821",
|
||||||
|
"reference": "d86ad3c3d8a6cb40f45a377695d8f35b592ca821",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"ext-simplexml": "*",
|
||||||
|
"ext-tokenizer": "*",
|
||||||
|
"ext-xmlwriter": "*",
|
||||||
|
"php": ">=5.4.0"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
|
||||||
|
},
|
||||||
|
"bin": [
|
||||||
|
"bin/phpcs",
|
||||||
|
"bin/phpcbf"
|
||||||
|
],
|
||||||
|
"type": "library",
|
||||||
|
"extra": {
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-master": "3.x-dev"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"BSD-3-Clause"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Greg Sherwood",
|
||||||
|
"role": "lead"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
|
||||||
|
"homepage": "http://www.squizlabs.com/php-codesniffer",
|
||||||
|
"keywords": [
|
||||||
|
"phpcs",
|
||||||
|
"standards"
|
||||||
|
],
|
||||||
|
"time": "2019-01-14T05:30:36+00:00"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "wimg/php-compatibility",
|
||||||
|
"version": "dev-master",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/PHPCompatibility/PHPCompatibility.git",
|
||||||
|
"reference": "cac8ef629aa14a8d5148b1b56d09b657904604bb"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/PHPCompatibility/PHPCompatibility/zipball/cac8ef629aa14a8d5148b1b56d09b657904604bb",
|
||||||
|
"reference": "cac8ef629aa14a8d5148b1b56d09b657904604bb",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=5.3",
|
||||||
|
"squizlabs/php_codesniffer": "^2.3 || ^3.0.2"
|
||||||
|
},
|
||||||
|
"conflict": {
|
||||||
|
"squizlabs/php_codesniffer": "2.6.2"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "~4.5 || ^5.0 || ^6.0 || ^7.0"
|
||||||
|
},
|
||||||
|
"suggest": {
|
||||||
|
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3 || This Composer plugin will sort out the PHPCS 'installed_paths' automatically.",
|
||||||
|
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
|
||||||
|
},
|
||||||
|
"type": "phpcodesniffer-standard",
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"LGPL-3.0-or-later"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Contributors",
|
||||||
|
"homepage": "https://github.com/PHPCompatibility/PHPCompatibility/graphs/contributors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Wim Godden",
|
||||||
|
"homepage": "https://github.com/wimg",
|
||||||
|
"role": "lead"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Juliette Reinders Folmer",
|
||||||
|
"homepage": "https://github.com/jrfnl",
|
||||||
|
"role": "lead"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
|
||||||
|
"homepage": "http://techblog.wimgodden.be/tag/codesniffer/",
|
||||||
|
"keywords": [
|
||||||
|
"compatibility",
|
||||||
|
"phpcs",
|
||||||
|
"standards"
|
||||||
|
],
|
||||||
|
"abandoned": "phpcompatibility/php-compatibility",
|
||||||
|
"time": "2019-01-13T22:26:44+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"aliases": [],
|
||||||
|
"minimum-stability": "dev",
|
||||||
|
"stability-flags": [],
|
||||||
|
"prefer-stable": false,
|
||||||
|
"prefer-lowest": false,
|
||||||
|
"platform": [],
|
||||||
|
"platform-dev": []
|
||||||
|
}
|
|
@ -0,0 +1,49 @@
|
||||||
|
# Browsersync config
|
||||||
|
BROWSERSYNC:
|
||||||
|
# URL of local development server goes here (ex. http://localsite.dev)
|
||||||
|
url: ""
|
||||||
|
|
||||||
|
# Autoprefixer will make sure your CSS works with these browsers
|
||||||
|
COMPATIBILITY:
|
||||||
|
- "last 2 versions"
|
||||||
|
- "ie >= 9"
|
||||||
|
- "ios >= 7"
|
||||||
|
|
||||||
|
# Set to true if you want static asset revisioning, helpful for cache busting
|
||||||
|
REVISIONING: false
|
||||||
|
|
||||||
|
# Gulp will reference these paths when it copies files
|
||||||
|
PATHS:
|
||||||
|
# Path to dist folder
|
||||||
|
dist: "dist"
|
||||||
|
# Paths to static assets that aren't images, CSS, or JavaScript
|
||||||
|
assets:
|
||||||
|
- "src/assets/**/*"
|
||||||
|
- "!src/assets/{images,images/**/*,js,js/**/*,scss,scss/**/*}"
|
||||||
|
# Paths to Sass libraries, which can then be loaded with @import
|
||||||
|
sass:
|
||||||
|
- "node_modules/foundation-sites/scss"
|
||||||
|
- "node_modules/motion-ui/src"
|
||||||
|
# Paths to JavaScript entry points for webpack to bundle modules
|
||||||
|
entries:
|
||||||
|
- "src/assets/js/app.js"
|
||||||
|
# Paths for the package task to include/exclude in .zip archive
|
||||||
|
package:
|
||||||
|
- "**/*"
|
||||||
|
- "!**/node_modules/**"
|
||||||
|
- "!**/packaged/**"
|
||||||
|
- "!**/src/**"
|
||||||
|
- "!**/codesniffer.ruleset.xml"
|
||||||
|
- "!**/composer.json"
|
||||||
|
- "!**/composer.lock"
|
||||||
|
- "!**/config.yml"
|
||||||
|
- "!**/config.default.yml"
|
||||||
|
- "!**/gulpfile.babel.js"
|
||||||
|
- "!**/package.json"
|
||||||
|
- "!**/package-lock.json"
|
||||||
|
- "!**/webpack.config.js"
|
||||||
|
# Paths for PHP CodeSniffer
|
||||||
|
phpcs:
|
||||||
|
- "**/*.php"
|
||||||
|
- "!wpcs"
|
||||||
|
- "!wpcs/**"
|
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying the footer
|
||||||
|
*
|
||||||
|
* Contains the closing of the "off-canvas-wrap" div and all content after.
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
|
||||||
|
<footer class="footer-container">
|
||||||
|
<div class="footer-grid">
|
||||||
|
<?php dynamic_sidebar( 'footer-widgets' ); ?>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) : ?>
|
||||||
|
</div><!-- Close off-canvas content -->
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php wp_footer(); ?>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,58 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Author: Ole Fredrik Lie
|
||||||
|
* URL: http://olefredrik.com
|
||||||
|
*
|
||||||
|
* FoundationPress functions and definitions
|
||||||
|
*
|
||||||
|
* Set up the theme and provides some helper functions, which are used in the
|
||||||
|
* theme as custom template tags. Others are attached to action and filter
|
||||||
|
* hooks in WordPress to change core functionality.
|
||||||
|
*
|
||||||
|
* @link https://codex.wordpress.org/Theme_Development
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** Various clean up functions */
|
||||||
|
require_once( 'library/cleanup.php' );
|
||||||
|
|
||||||
|
/** Required for Foundation to work properly */
|
||||||
|
require_once( 'library/foundation.php' );
|
||||||
|
|
||||||
|
/** Format comments */
|
||||||
|
require_once( 'library/class-foundationpress-comments.php' );
|
||||||
|
|
||||||
|
/** Register all navigation menus */
|
||||||
|
require_once( 'library/navigation.php' );
|
||||||
|
|
||||||
|
/** Add menu walkers for top-bar and off-canvas */
|
||||||
|
require_once( 'library/class-foundationpress-top-bar-walker.php' );
|
||||||
|
require_once( 'library/class-foundationpress-mobile-walker.php' );
|
||||||
|
|
||||||
|
/** Create widget areas in sidebar and footer */
|
||||||
|
require_once( 'library/widget-areas.php' );
|
||||||
|
|
||||||
|
/** Return entry meta information for posts */
|
||||||
|
require_once( 'library/entry-meta.php' );
|
||||||
|
|
||||||
|
/** Enqueue scripts */
|
||||||
|
require_once( 'library/enqueue-scripts.php' );
|
||||||
|
|
||||||
|
/** Add theme support */
|
||||||
|
require_once( 'library/theme-support.php' );
|
||||||
|
|
||||||
|
/** Add Nav Options to Customer */
|
||||||
|
require_once( 'library/custom-nav.php' );
|
||||||
|
|
||||||
|
/** Change WP's sticky post class */
|
||||||
|
require_once( 'library/sticky-posts.php' );
|
||||||
|
|
||||||
|
/** Configure responsive image sizes */
|
||||||
|
require_once( 'library/responsive-images.php' );
|
||||||
|
|
||||||
|
/** Gutenberg editor support */
|
||||||
|
require_once( 'library/gutenberg.php' );
|
||||||
|
|
||||||
|
/** If your site requires protocol relative url's for theme assets, uncomment the line below */
|
||||||
|
// require_once( 'library/class-foundationpress-protocol-relative-theme-assets.php' );
|
|
@ -0,0 +1,259 @@
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
import plugins from 'gulp-load-plugins';
|
||||||
|
import yargs from 'yargs';
|
||||||
|
import browser from 'browser-sync';
|
||||||
|
import gulp from 'gulp';
|
||||||
|
import rimraf from 'rimraf';
|
||||||
|
import yaml from 'js-yaml';
|
||||||
|
import fs from 'fs';
|
||||||
|
import dateFormat from 'dateformat';
|
||||||
|
import webpackStream from 'webpack-stream';
|
||||||
|
import webpack2 from 'webpack';
|
||||||
|
import named from 'vinyl-named';
|
||||||
|
import log from 'fancy-log';
|
||||||
|
import colors from 'ansi-colors';
|
||||||
|
|
||||||
|
// Load all Gulp plugins into one variable
|
||||||
|
const $ = plugins();
|
||||||
|
|
||||||
|
// Check for --production flag
|
||||||
|
const PRODUCTION = !!(yargs.argv.production);
|
||||||
|
|
||||||
|
// Check for --development flag unminified with sourcemaps
|
||||||
|
const DEV = !!(yargs.argv.dev);
|
||||||
|
|
||||||
|
// Load settings from settings.yml
|
||||||
|
const { BROWSERSYNC, COMPATIBILITY, REVISIONING, PATHS } = loadConfig();
|
||||||
|
|
||||||
|
// Check if file exists synchronously
|
||||||
|
function checkFileExists(filepath) {
|
||||||
|
let flag = true;
|
||||||
|
try {
|
||||||
|
fs.accessSync(filepath, fs.F_OK);
|
||||||
|
} catch(e) {
|
||||||
|
flag = false;
|
||||||
|
}
|
||||||
|
return flag;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load default or custom YML config file
|
||||||
|
function loadConfig() {
|
||||||
|
log('Loading config file...');
|
||||||
|
|
||||||
|
if (checkFileExists('config.yml')) {
|
||||||
|
// config.yml exists, load it
|
||||||
|
log(colors.bold(colors.cyan('config.yml')), 'exists, loading', colors.bold(colors.cyan('config.yml')));
|
||||||
|
let ymlFile = fs.readFileSync('config.yml', 'utf8');
|
||||||
|
return yaml.load(ymlFile);
|
||||||
|
|
||||||
|
} else if(checkFileExists('config-default.yml')) {
|
||||||
|
// config-default.yml exists, load it
|
||||||
|
log(colors.bold(colors.cyan('config.yml')), 'does not exist, loading', colors.bold(colors.cyan('config-default.yml')));
|
||||||
|
let ymlFile = fs.readFileSync('config-default.yml', 'utf8');
|
||||||
|
return yaml.load(ymlFile);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
// Exit if config.yml & config-default.yml do not exist
|
||||||
|
log('Exiting process, no config file exists.');
|
||||||
|
log('Error Code:', err.code);
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete the "dist" folder
|
||||||
|
// This happens every time a build starts
|
||||||
|
function clean(done) {
|
||||||
|
rimraf(PATHS.dist, done);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Copy files out of the assets folder
|
||||||
|
// This task skips over the "images", "js", and "scss" folders, which are parsed separately
|
||||||
|
function copy() {
|
||||||
|
return gulp.src(PATHS.assets)
|
||||||
|
.pipe(gulp.dest(PATHS.dist + '/assets'));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compile Sass into CSS
|
||||||
|
// In production, the CSS is compressed
|
||||||
|
function sass() {
|
||||||
|
return gulp.src(['src/assets/scss/app.scss','src/assets/scss/editor.scss'])
|
||||||
|
.pipe($.sourcemaps.init())
|
||||||
|
.pipe($.sass({
|
||||||
|
includePaths: PATHS.sass
|
||||||
|
})
|
||||||
|
.on('error', $.sass.logError))
|
||||||
|
.pipe($.autoprefixer({
|
||||||
|
browsers: COMPATIBILITY
|
||||||
|
}))
|
||||||
|
|
||||||
|
.pipe($.if(PRODUCTION, $.cleanCss({ compatibility: 'ie9' })))
|
||||||
|
.pipe($.if(!PRODUCTION, $.sourcemaps.write()))
|
||||||
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev()))
|
||||||
|
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
|
||||||
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
|
||||||
|
.pipe(gulp.dest(PATHS.dist + '/assets/css'))
|
||||||
|
.pipe(browser.reload({ stream: true }));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Combine JavaScript into one file
|
||||||
|
// In production, the file is minified
|
||||||
|
const webpack = {
|
||||||
|
config: {
|
||||||
|
module: {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
test: /.js$/,
|
||||||
|
loader: 'babel-loader',
|
||||||
|
exclude: /node_modules(?![\\\/]foundation-sites)/,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
externals: {
|
||||||
|
jquery: 'jQuery',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
changeHandler(err, stats) {
|
||||||
|
log('[webpack]', stats.toString({
|
||||||
|
colors: true,
|
||||||
|
}));
|
||||||
|
|
||||||
|
browser.reload();
|
||||||
|
},
|
||||||
|
|
||||||
|
build() {
|
||||||
|
return gulp.src(PATHS.entries)
|
||||||
|
.pipe(named())
|
||||||
|
.pipe(webpackStream(webpack.config, webpack2))
|
||||||
|
.pipe($.if(PRODUCTION, $.uglify()
|
||||||
|
.on('error', e => { console.log(e); }),
|
||||||
|
))
|
||||||
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev()))
|
||||||
|
.pipe(gulp.dest(PATHS.dist + '/assets/js'))
|
||||||
|
.pipe($.if(REVISIONING && PRODUCTION || REVISIONING && DEV, $.rev.manifest()))
|
||||||
|
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
|
||||||
|
},
|
||||||
|
|
||||||
|
watch() {
|
||||||
|
const watchConfig = Object.assign(webpack.config, {
|
||||||
|
watch: true,
|
||||||
|
devtool: 'inline-source-map',
|
||||||
|
});
|
||||||
|
|
||||||
|
return gulp.src(PATHS.entries)
|
||||||
|
.pipe(named())
|
||||||
|
.pipe(webpackStream(watchConfig, webpack2, webpack.changeHandler)
|
||||||
|
.on('error', (err) => {
|
||||||
|
log('[webpack:error]', err.toString({
|
||||||
|
colors: true,
|
||||||
|
}));
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
.pipe(gulp.dest(PATHS.dist + '/assets/js'));
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
gulp.task('webpack:build', webpack.build);
|
||||||
|
gulp.task('webpack:watch', webpack.watch);
|
||||||
|
|
||||||
|
// Copy images to the "dist" folder
|
||||||
|
// In production, the images are compressed
|
||||||
|
function images() {
|
||||||
|
return gulp.src('src/assets/images/**/*')
|
||||||
|
.pipe($.if(PRODUCTION, $.imagemin([
|
||||||
|
$.imagemin.jpegtran({
|
||||||
|
progressive: true,
|
||||||
|
}),
|
||||||
|
$.imagemin.optipng({
|
||||||
|
optimizationLevel: 5,
|
||||||
|
}),
|
||||||
|
$.imagemin.gifsicle({
|
||||||
|
interlaced: true,
|
||||||
|
}),
|
||||||
|
$.imagemin.svgo({
|
||||||
|
plugins: [
|
||||||
|
{cleanupAttrs: true},
|
||||||
|
{removeComments: true},
|
||||||
|
]
|
||||||
|
})
|
||||||
|
])))
|
||||||
|
.pipe(gulp.dest(PATHS.dist + '/assets/images'));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create a .zip archive of the theme
|
||||||
|
function archive() {
|
||||||
|
var time = dateFormat(new Date(), "yyyy-mm-dd_HH-MM");
|
||||||
|
var pkg = JSON.parse(fs.readFileSync('./package.json'));
|
||||||
|
var title = pkg.name + '_' + time + '.zip';
|
||||||
|
|
||||||
|
return gulp.src(PATHS.package)
|
||||||
|
.pipe($.zip(title))
|
||||||
|
.pipe(gulp.dest('packaged'));
|
||||||
|
}
|
||||||
|
|
||||||
|
// PHP Code Sniffer task
|
||||||
|
gulp.task('phpcs', function() {
|
||||||
|
return gulp.src(PATHS.phpcs)
|
||||||
|
.pipe($.phpcs({
|
||||||
|
bin: 'wpcs/vendor/bin/phpcs',
|
||||||
|
standard: './codesniffer.ruleset.xml',
|
||||||
|
showSniffCode: true,
|
||||||
|
}))
|
||||||
|
.pipe($.phpcs.reporter('log'));
|
||||||
|
});
|
||||||
|
|
||||||
|
// PHP Code Beautifier task
|
||||||
|
gulp.task('phpcbf', function () {
|
||||||
|
return gulp.src(PATHS.phpcs)
|
||||||
|
.pipe($.phpcbf({
|
||||||
|
bin: 'wpcs/vendor/bin/phpcbf',
|
||||||
|
standard: './codesniffer.ruleset.xml',
|
||||||
|
warningSeverity: 0
|
||||||
|
}))
|
||||||
|
.on('error', log)
|
||||||
|
.pipe(gulp.dest('.'));
|
||||||
|
});
|
||||||
|
|
||||||
|
// Start BrowserSync to preview the site in
|
||||||
|
function server(done) {
|
||||||
|
browser.init({
|
||||||
|
proxy: BROWSERSYNC.url,
|
||||||
|
|
||||||
|
ui: {
|
||||||
|
port: 8080
|
||||||
|
},
|
||||||
|
|
||||||
|
});
|
||||||
|
done();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Reload the browser with BrowserSync
|
||||||
|
function reload(done) {
|
||||||
|
browser.reload();
|
||||||
|
done();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Watch for changes to static assets, pages, Sass, and JavaScript
|
||||||
|
function watch() {
|
||||||
|
gulp.watch(PATHS.assets, copy);
|
||||||
|
gulp.watch('src/assets/scss/**/*.scss', sass)
|
||||||
|
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
|
||||||
|
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
|
||||||
|
gulp.watch('**/*.php', reload)
|
||||||
|
.on('change', path => log('File ' + colors.bold(colors.magenta(path)) + ' changed.'))
|
||||||
|
.on('unlink', path => log('File ' + colors.bold(colors.magenta(path)) + ' was removed.'));
|
||||||
|
gulp.watch('src/assets/images/**/*', gulp.series(images, reload));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build the "dist" folder by running all of the below tasks
|
||||||
|
gulp.task('build',
|
||||||
|
gulp.series(clean, gulp.parallel(sass, 'webpack:build', images, copy)));
|
||||||
|
|
||||||
|
// Build the site, run the server, and watch for file changes
|
||||||
|
gulp.task('default',
|
||||||
|
gulp.series('build', server, gulp.parallel('webpack:watch', watch)));
|
||||||
|
|
||||||
|
// Package task
|
||||||
|
gulp.task('package',
|
||||||
|
gulp.series('build', archive));
|
|
@ -0,0 +1,50 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying the header
|
||||||
|
*
|
||||||
|
* Displays all of the head element and everything up until the "container" div.
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
?>
|
||||||
|
<!doctype html>
|
||||||
|
<html class="no-js" <?php language_attributes(); ?> >
|
||||||
|
<head>
|
||||||
|
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<?php wp_head(); ?>
|
||||||
|
</head>
|
||||||
|
<body <?php body_class(); ?>>
|
||||||
|
|
||||||
|
<?php if ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) : ?>
|
||||||
|
<?php get_template_part( 'template-parts/mobile-off-canvas' ); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<header class="site-header" role="banner">
|
||||||
|
<div class="site-title-bar title-bar" <?php foundationpress_title_bar_responsive_toggle(); ?>>
|
||||||
|
<div class="title-bar-left">
|
||||||
|
<button aria-label="<?php _e( 'Main Menu', 'foundationpress' ); ?>" class="menu-icon" type="button" data-toggle="<?php foundationpress_mobile_menu_id(); ?>"></button>
|
||||||
|
<span class="site-mobile-title title-bar-title">
|
||||||
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<nav class="site-navigation top-bar" role="navigation" id="<?php foundationpress_mobile_menu_id(); ?>">
|
||||||
|
<div class="top-bar-left">
|
||||||
|
<div class="site-desktop-title top-bar-title">
|
||||||
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="top-bar-right">
|
||||||
|
<?php foundationpress_top_bar_r(); ?>
|
||||||
|
|
||||||
|
<?php if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) === 'topbar' ) : ?>
|
||||||
|
<?php get_template_part( 'template-parts/mobile-top-bar' ); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
</header>
|
|
@ -0,0 +1,50 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The main template file
|
||||||
|
*
|
||||||
|
* This is the most generic template file in a WordPress theme
|
||||||
|
* and one of the two required files for a theme (the other being style.css).
|
||||||
|
* It is used to display a page when nothing more specific matches a query.
|
||||||
|
* e.g., it puts together the home page when no home.php file exists.
|
||||||
|
*
|
||||||
|
* Learn more: {@link https://codex.wordpress.org/Template_Hierarchy}
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<main class="main-content">
|
||||||
|
<?php if ( have_posts() ) : ?>
|
||||||
|
|
||||||
|
<?php /* Start the Loop */ ?>
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
|
||||||
|
<?php else : ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', 'none' ); ?>
|
||||||
|
|
||||||
|
<?php endif; // End have_posts() check. ?>
|
||||||
|
|
||||||
|
<?php /* Display navigation to next/previous pages when applicable */ ?>
|
||||||
|
<?php
|
||||||
|
if ( function_exists( 'foundationpress_pagination' ) ) :
|
||||||
|
foundationpress_pagination();
|
||||||
|
elseif ( is_paged() ) :
|
||||||
|
?>
|
||||||
|
<nav id="post-nav">
|
||||||
|
<div class="post-previous"><?php next_posts_link( __( '← Older posts', 'foundationpress' ) ); ?></div>
|
||||||
|
<div class="post-next"><?php previous_posts_link( __( 'Newer posts →', 'foundationpress' ) ); ?></div>
|
||||||
|
</nav>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,270 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
Binary file not shown.
|
@ -0,0 +1,282 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:05+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: Lluis Bordas <lbordas@gmail.com>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"Language: ca\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Arxiu No Trobat"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"La pàgina que està buscantno es troba, ha canviat de nom o no està "
|
||||||
|
"disponible temporalment."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Si us plau, intenti el següent:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Revisi la seva ortografia"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Tornar a la <a href=\"%s\">pàgina d'inici</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Feu clic al botó <a href=\"javascript:history.back()\">Tornar</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Entrades més antigues"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Entrades més noves →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editar)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "El seu comentari està esperant ser moderat."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Si us plau, no carregui aquesta pàgina directament. Gràcies!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Aquesta entrada està protegida. Introduïu la contrasenya per veure els "
|
||||||
|
"comentaris."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "No hi ha respostes a"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Una resposta a"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Respostes a"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Comentaris més antics"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Comentaris més nous →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Deixa una Resposta"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Deixa una Resposta a %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Has de estar <a href=\"%s\">connectat com a usuari</a> per publicar un "
|
||||||
|
"comentari."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Connectat com <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Sortir d'aquest compte"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Sortir »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nom"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(necessari)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (no es publicarà)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Website"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Comentari"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Podeu fer servir aquestes etiquetes:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Enviar comentari"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "No s'ha trobat res"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"A punt per publicar el seu primer post? <a href=\"%1$s\">Comença aquí</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Ho sentim, però no hem trobat res. Torneu-ho de nou amb algunes paraules "
|
||||||
|
"clau diferents."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Sembla que no podem trobar el que estàs buscant. Potser la cerca pot ajudar."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Segueix llegint ..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Pàgines:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Publicat el %1$s a les %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Publicat per"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Si us plau, assignar un menú per a la ubicació del menú principal sota %1$s "
|
||||||
|
"o %2$s el disseny."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menus</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Personalitzar</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widgets de la barra lateral (Sidebar)"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Arrossegueu widgets per a aquest contenidor de la barra lateral."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widgets del peu de pàgina (Footer)"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Arrossegueu widgets a aquest contenidor de peu de pàgina"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Sóc una cadena traduïble."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Jo també"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Tinc %d poma"
|
||||||
|
msgstr[1] "Tinc %d pomes"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "aaaa-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Cercar resultats per"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Cerca"
|
Binary file not shown.
|
@ -0,0 +1,317 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-05 11:14+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:05+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: cs\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||||
|
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
|
||||||
|
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;"
|
||||||
|
"esc_html_x:1,2c\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPathExcluded-0: node_modules\n"
|
||||||
|
"X-Poedit-SearchPathExcluded-1: assets\n"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Soubor nenalezen"
|
||||||
|
|
||||||
|
#: 404.php:20
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Stránka, kterou hledáte, byla pravděpodobně odstraněna, její název byl "
|
||||||
|
"změněn, nebo je dočasně nedostupná."
|
||||||
|
|
||||||
|
#: 404.php:22
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Prosím, zkuste následující:"
|
||||||
|
|
||||||
|
#: 404.php:24
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Zkontrolujte zadaný výraz"
|
||||||
|
|
||||||
|
#: 404.php:25
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Zpět na <a href=\"%s\">domovskou stránku</a>"
|
||||||
|
|
||||||
|
#: 404.php:26
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr ""
|
||||||
|
"Klikněte na tlačítko <a href=\"javascript:history.back()\">Zpět</a> vašeho "
|
||||||
|
"prohlížeče"
|
||||||
|
|
||||||
|
#: archive.php:37 index.php:35 search.php:34
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Starší příspěvky"
|
||||||
|
|
||||||
|
#: archive.php:38 index.php:36 search.php:35
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Novější příspěvky →"
|
||||||
|
|
||||||
|
#: comments.php:26
|
||||||
|
msgid "Reply"
|
||||||
|
msgstr "Odpovědět"
|
||||||
|
|
||||||
|
#: comments.php:35 library/foundation.php:157
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Váš komentář čeká na schválení administrátorem."
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Prosím nenačítejte tuto stránku přímo. Díky!"
|
||||||
|
|
||||||
|
#: comments.php:59
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Tento příspěvek je chráněný heslem. Vložte heslo pro zobrazení komentářů."
|
||||||
|
|
||||||
|
#: comments.php:72
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Odpovědět"
|
||||||
|
|
||||||
|
#: comments.php:72
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Reagovat na %s"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Pro vložení komentáře musíte být <a href=\"%s\">přihlášeni</a>."
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%1$s</a>."
|
||||||
|
msgstr "Přihlášen jako <a href=\"%s/wp-admin/profile.php\">%1$s</a>."
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Odhlásit se z tohoto účtu."
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Odhlásit »"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Jméno"
|
||||||
|
|
||||||
|
#: comments.php:84 comments.php:92
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(požadováno)"
|
||||||
|
|
||||||
|
#: comments.php:92
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (nebude zveřejněný)"
|
||||||
|
|
||||||
|
#: comments.php:100
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Webové stránky"
|
||||||
|
|
||||||
|
#: comments.php:109
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Komentář"
|
||||||
|
|
||||||
|
#: comments.php:116
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Můžete použít tyto HTML tagy:"
|
||||||
|
|
||||||
|
#: comments.php:122
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Odeslat komentář"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:16
|
||||||
|
msgid "Mobile Menu Settings"
|
||||||
|
msgstr "Nastavení mobilní navigace"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:17
|
||||||
|
msgid "Controls the mobile menu"
|
||||||
|
msgstr "Ovládání mobilní navigace"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:22
|
||||||
|
msgid "Mobile navigation layout"
|
||||||
|
msgstr "Rozvržení mobilní navigace"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:31
|
||||||
|
msgid "topbar"
|
||||||
|
msgstr "horní panel"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:11
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Publikováno %1$s v %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:12
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Napsal"
|
||||||
|
|
||||||
|
#: library/foundation.php:24
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:25
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:53
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Prosím přiřaďte menu jako primární menu umístění pod %1$s nebo %2$s v "
|
||||||
|
"rozložení stránky."
|
||||||
|
|
||||||
|
#: library/foundation.php:54
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menu</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:57
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Přizpůsobit</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:107
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Žádná reakce na"
|
||||||
|
|
||||||
|
#: library/foundation.php:107
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Jedna reakce na"
|
||||||
|
|
||||||
|
#: library/foundation.php:107
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% reakcí na"
|
||||||
|
|
||||||
|
#: library/foundation.php:147
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: library/navigation.php:43
|
||||||
|
msgid "mobile-nav"
|
||||||
|
msgstr "mobilní nav"
|
||||||
|
|
||||||
|
#: library/navigation.php:210
|
||||||
|
msgid "Page"
|
||||||
|
msgstr "Stránka"
|
||||||
|
|
||||||
|
#: library/responsive-images.php:19
|
||||||
|
msgid "FP Small"
|
||||||
|
msgstr "FP malý"
|
||||||
|
|
||||||
|
#: library/responsive-images.php:20
|
||||||
|
msgid "FP Medium"
|
||||||
|
msgstr "FP střední"
|
||||||
|
|
||||||
|
#: library/responsive-images.php:21
|
||||||
|
msgid "FP Large"
|
||||||
|
msgstr "FP velký"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:13
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widgety postranního panelu"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:14
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Přetáhněte widgety na tuto oblast pro postranní panel."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:23
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widgety v patičce"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:24
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Přetáhněte widgety na tuto oblast pro zápatí."
|
||||||
|
|
||||||
|
#: page-templates/front.php:38 page-templates/page-full-width.php:22
|
||||||
|
#: page-templates/page-sidebar-left.php:22 page.php:31 single.php:33
|
||||||
|
#: woocommerce.php:26
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Stránky:"
|
||||||
|
|
||||||
|
#: page.php:28 single.php:30
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Upravit"
|
||||||
|
|
||||||
|
#: search.php:16
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Výsledek vyhledávání výrazu"
|
||||||
|
|
||||||
|
#: searchform.php:13 searchform.php:16
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Hledat"
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:14
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Nenalezeno"
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:20
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Připraveni publikovat váš první příspěvek webu? <a href=\"%1$s\">Začněte "
|
||||||
|
"zde</a>."
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:24
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Je nám líto, ale nic neodpovídá vašim požadavkům na hledané výrazy. Zkuste "
|
||||||
|
"to prosím znovu s zadáním jiných klíčových slov."
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:29
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Zdá se, že nemůžete najít, co jste hledali. Možná vám pomůže vyhledávání."
|
||||||
|
|
||||||
|
#: template-parts/content.php:19
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Číst dále..."
|
||||||
|
|
||||||
|
#~ msgid "%1$s"
|
||||||
|
#~ msgstr "%1$s"
|
||||||
|
|
||||||
|
#~ msgid "← Older comments"
|
||||||
|
#~ msgstr "← starší komentáře"
|
||||||
|
|
||||||
|
#~ msgid "Newer comments →"
|
||||||
|
#~ msgstr "Novější komentáře →"
|
||||||
|
|
||||||
|
#~ msgid "I'm a translatable string."
|
||||||
|
#~ msgstr "Jsem přeložitelný řetězec."
|
||||||
|
|
||||||
|
#~ msgid "Me too"
|
||||||
|
#~ msgstr "Já taky"
|
||||||
|
|
||||||
|
#~ msgid "I have %d apple"
|
||||||
|
#~ msgid_plural "I have %d apples"
|
||||||
|
#~ msgstr[0] "Mám %d jablko"
|
||||||
|
#~ msgstr[1] "Mám %d jablka"
|
||||||
|
#~ msgstr[2] "Mám %d jablek"
|
||||||
|
|
||||||
|
#~ msgid "yyyy-mm-dd"
|
||||||
|
#~ msgstr "yyy-mm-dd"
|
Binary file not shown.
|
@ -0,0 +1,281 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-10-12 21:40+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:05+0200\n"
|
||||||
|
"Language-Team: \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-Generator: Poedit 1.8.9\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language: da\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Filen blev ikke fundet"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Siden du leder efter kan være blevet flyttet, fået ændret navn eller er "
|
||||||
|
"midlertidigt utilgængelig"
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Venligst prøv følgende:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Kontroller din stavning"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Gå tilbage til <a href=\"%s\">forsiden</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Tryk på <a href=\"javascript:history.back()\">Tilbageknappen</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Ældre indlæg"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Nyere indlæg →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Rediger)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Din kommentar afventer godkendelse."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Vær venlig ikke at indlæse siden direkte. Tak!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Dette indlæg er beskyttet med kodeord. Indtast kodeord for at læse "
|
||||||
|
"kommentarer."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Ingen svar til"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Et svar til"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% svar til"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Ældre kommentarer"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Nyere kommentarer →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Skriv et svar"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Skriv et svar til %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Du skal være <a href=\"%s\">logget ind</a> for at skrive en kommentar."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Logget ind som <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Log ud af denne konto"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Log ud »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Navn"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr " (påkrævet)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Mail (vil ikke blive offentliggjort)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Websted"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Kommentar"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Du kan bruge disse tags:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Send kommentar"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Intet fundet"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Klar til at udgive dit første indlæg? <a href=\"%1$s\">Kom i gang her</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Beklager, men din søgning gav ingen resultater. Prøv igen med andre søgeord."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Det virker til at vi ikke kan finde hvad du ledte efter. Måske en søgning "
|
||||||
|
"kan hjælpe."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Læs resten..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Sider:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Skrevet den %1$s kl. %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Skrevet af"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Vælg venligst en menu til den primære menuplacering under %1$s eller %2$s "
|
||||||
|
"designet."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menuer</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Tilpas</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Sidebar-widgets"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Træk widgets til dette sidebar-område."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Sidefod-widgets"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Træk widgets til dette sidefodsområde"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Jeg er en tekststreng som kan oversættes."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Også mig"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Jeg har %d æble"
|
||||||
|
msgstr[1] "Jeg har %d æbler"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "yyyy-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Søgeresultater for"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Søg"
|
Binary file not shown.
|
@ -0,0 +1,333 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress v5.4\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-04-12 17:53+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:06+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: de_DE\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-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||||
|
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Datei nicht gefunden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Die Seite, die du suchst, wurde möglicherweise entfernt oder umbenannt, oder "
|
||||||
|
"ist vorübergehend nicht verfügbar."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Bitte versuche folgendes:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Überprüfe deine Eingabe"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Zurück zur <a href=\"%s\">Startseite</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr ""
|
||||||
|
"Klicke auf die <a href=\"javascript:history.back()\">Zurück</a> Schaltfläche"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← ältere Beiträge"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "neuere Beiträge →"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Bearbeiten)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Dein Kommentar wartet auf Freischaltung."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Bitte diese Seite nicht direkt laden. Vielen Dank!"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Dieser Beitrag ist passwortgeschützt. Um die Kommentare zu sehen, musst du "
|
||||||
|
"das Passwort eingeben."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Keine Antworten auf"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Eine Antwort auf"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Antworten auf"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← ältere Kommentare"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "neuere Kommentare →"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Antworten"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Auf %s antworten"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar abzugeben."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Angemeldet als <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Von diesem Konto abmelden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Abmelden »"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Name"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(erforderlich)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "E-Mail (wird nicht veröffentlicht)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Website"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Kommentar"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Du kannst diese Tags verwenden:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Kommentar absenden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "nichts gefunden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Bereit, deinen ersten Beitrag zu veröffentlichen? <a href=\"%1$s\">Hier "
|
||||||
|
"geht's los</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Es tut uns leid, aber es konnten keine Übereinstimmungen gefunden werden. "
|
||||||
|
"Bitte versuche es mit einigen anderen Suchbegriffen erneut."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Leider konnten wir die angefragte Seite nicht finden. Vielleicht hilft dir "
|
||||||
|
"die Suchfunktion weiter."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Weiterlesen..."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Seiten:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Veröffentlicht am %1$s um %2$s."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Geschrieben von"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "Bitte weise ein Menü zur primären Menüposition %1$s oder %2$s zu."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menüs</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Anpassen</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Seitenleisten-Widgetbereich"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Ziehe Widgets zu diesem Seitenleisten-Bereich."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Footer-Widgetbereich"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Ziehe Widgets zu diesem Footer-Bereich."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "dd.mm.yyyy"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Suchergebnisse für"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Suche"
|
Binary file not shown.
|
@ -0,0 +1,333 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress v5.4\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-04-12 17:53+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:06+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: de_DE\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-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-SourceCharset: utf-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||||
|
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Datei nicht gefunden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Die Seite, die du suchst, wurde möglicherweise entfernt oder umbenannt, oder "
|
||||||
|
"ist vorübergehend nicht verfügbar."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Bitte versuche folgendes:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Überprüfe deine Eingabe"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Zurück zur <a href=\"%s\">Startseite</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr ""
|
||||||
|
"Klicke auf die <a href=\"javascript:history.back()\">Zurück</a> Schaltfläche"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← ältere Beiträge"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "neuere Beiträge →"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Bearbeiten)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Dein Kommentar wartet auf Freischaltung."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Bitte diese Seite nicht direkt laden. Vielen Dank!"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Dieser Beitrag ist passwortgeschützt. Um die Kommentare zu sehen, musst du "
|
||||||
|
"das Passwort eingeben."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Keine Antworten auf"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Eine Antwort auf"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Antworten auf"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← ältere Kommentare"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "neuere Kommentare →"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Antworten"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Antworte auf %s"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Du musst <a href=\"%s\">angemeldet</a> sein, um einen Kommentar abzugeben."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Angemeldet als <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Von diesem Konto abmelden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Abmelden »"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Name"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(erforderlich)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "E-Mail (wird nicht veröffentlicht)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Website"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Kommentar"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Sie können diese Tags verwenden:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Kommentar absenden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "nichts gefunden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Bereit, deinen ersten Beitrag zu veröffentlichen? <a href=\"%1$s\">Hier "
|
||||||
|
"geht's los</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Es tut uns leid, aber es konnten keine Übereinstimmungen gefunden werden. "
|
||||||
|
"Bitte versuche es mit einigen anderen Suchbegriffen erneut."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Leider konnten wir die angefragte Seite nicht finden. Vielleicht hilft dir "
|
||||||
|
"die Suchfunktion weiter."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Weiterlesen..."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Seiten:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Veröffentlicht am %1$s um %2$s."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Geschrieben von"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "Bitte weise ein Menü zur primären Menüposition %1$s oder %2$s zu."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menüs</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Anpassen</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Seitenleisten-Widgetbereich"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Ziehen Sie Widgets zu diesem Seitenleisten-Bereich."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Footer-Widgetbereich"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Ziehen Sie Widgets zu diesem Footer-Bereich."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "dd.mm.yyyy"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Suchergebnisse für"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Suche"
|
Binary file not shown.
|
@ -0,0 +1,255 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress\n"
|
||||||
|
"POT-Creation-Date: 2014-07-10 10:45-0500\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:06+0200\n"
|
||||||
|
"Last-Translator: Alex Fermon <alex@fermongroup.com>\n"
|
||||||
|
"Language-Team: Le Saint <info@lesaint.ca>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;_x;esc_html__;esc_html_e;esc_html_x;esc_attr__;"
|
||||||
|
"esc_attr_e;esc_attr_x;_ex;_n;_nx;_n_noop;_nx_noop\n"
|
||||||
|
"Language: es\n"
|
||||||
|
"X-Poedit-SearchPath-0: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Archivo no encontrado"
|
||||||
|
|
||||||
|
#: ../404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"La página que estás buscando pudo haber sido removida, renombrada o no está "
|
||||||
|
"disponible temporalmente."
|
||||||
|
|
||||||
|
#: ../404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Por favor intente lo siguiente:"
|
||||||
|
|
||||||
|
#: ../404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Revisa tu ortografía"
|
||||||
|
|
||||||
|
#: ../404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Regresar a la <a href=\"%s\">página de inicio</a>"
|
||||||
|
|
||||||
|
#: ../404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Clic en el botón de <a href=\"javascript:history.back()\">Regreso</a>"
|
||||||
|
|
||||||
|
#: ../archive.php:21 ../index.php:25 ../search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Entradas anteriores"
|
||||||
|
|
||||||
|
#: ../archive.php:22 ../index.php:26 ../search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Entradas posteriores →"
|
||||||
|
|
||||||
|
#: ../comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: ../comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: ../comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editar)"
|
||||||
|
|
||||||
|
#: ../comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Su comentario está esperando moderación."
|
||||||
|
|
||||||
|
#: ../comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Por favor no cargue esta página directamente. Gracias!"
|
||||||
|
|
||||||
|
#: ../comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Este post está protegido con contraseña. Ingrese la contraseña para ver los "
|
||||||
|
"comentarios."
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Sin Respuestas a"
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Una Respuesta a"
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Respuestas a"
|
||||||
|
|
||||||
|
#: ../comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Comentarios anteriores "
|
||||||
|
|
||||||
|
#: ../comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Comentarios posteriores →"
|
||||||
|
|
||||||
|
#: ../comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Dejar una Respuesta"
|
||||||
|
|
||||||
|
#: ../comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Dejar una Respuesta a %s"
|
||||||
|
|
||||||
|
#: ../comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Usted debe haber <a href=\"%s\">iniciado sesión</a> para o publicar un "
|
||||||
|
"comentario."
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Sesión iniciada como <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Cerrar sesión de esta cuenta"
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Cerrar sesión »"
|
||||||
|
|
||||||
|
#: ../comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nombre"
|
||||||
|
|
||||||
|
#: ../comments.php:71 ../comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(requerido)"
|
||||||
|
|
||||||
|
#: ../comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (no será publicado)"
|
||||||
|
|
||||||
|
#: ../comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Sitio web"
|
||||||
|
|
||||||
|
#: ../comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Comentario"
|
||||||
|
|
||||||
|
#: ../comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Usted puede usar las siguientes etiquetas:"
|
||||||
|
|
||||||
|
#: ../comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Publicar Comentario"
|
||||||
|
|
||||||
|
#: ../content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "No se encontró nada"
|
||||||
|
|
||||||
|
#: ../content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Listo para publicar tu primera entrada? <a href=\"%1$s\">Empieza aquí</a>."
|
||||||
|
|
||||||
|
#: ../content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Lo lamentamos, pero nada coincidió con tus términos de búsqueda. Por favor "
|
||||||
|
"trate nuevamente con diferentes palabras clave."
|
||||||
|
|
||||||
|
#: ../content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Parece que no podemos encontrar lo que estás buscando. Tal vez buscar puede "
|
||||||
|
"ayudar."
|
||||||
|
|
||||||
|
#: ../content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Continuar leyendo..."
|
||||||
|
|
||||||
|
#: ../hero.php:40 ../kitchen-sink.php:731 ../page-full.php:19
|
||||||
|
#: ../page-home.php:20 ../page.php:19 ../single.php:28
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Paginas:"
|
||||||
|
|
||||||
|
#: ../library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Publicado en %1$s el %2$s."
|
||||||
|
|
||||||
|
#: ../library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Escrito por"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Por favor asigne un menú en la ubicación principal en %1$s o %2$s del "
|
||||||
|
"diseño."
|
||||||
|
|
||||||
|
#: ../library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menus</a>"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Personalizar</a>"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widgets laterales"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Arrastre widgets a este contenedor lateral."
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widgets del pie de página"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Arrastre widgets a este contenedor del pie de página"
|
||||||
|
|
||||||
|
#: ../search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Resultados de búsqueda para"
|
||||||
|
|
||||||
|
#: ../searchform.php:6 ../searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Buscar"
|
Binary file not shown.
|
@ -0,0 +1,276 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: 2019-01-17 18:45+0330\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: fa_IR\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: Poedit 2.2\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "فایل یافت نشد"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"صفحهای که به دنبالش هستید، حذف شده، تغییر نام پیدا کرده یا موقتا در دسترس "
|
||||||
|
"نیست."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "لطفا این کارها را امتحان کنید:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "املای خود را چک کنید"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "به <a href=\"%s\">صفحه خانه</a> برگردید"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "دکمه <a href=\"javascript:history.back()\">بازگشت</a> را کلیک کنید"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "→ نوشتههای کهنهتر"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "نوشتههای تازهتر ←"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(ویرایش)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "دیدگاه شما در انتظار تأیید است."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "لطفا این صفحه را به طور مستقیم لود نکنید. ممنون!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"این نوشته با گذرواژه پاسداری میشود. برای دیدن دیدگاهها گذرواژه را وارد کنید."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "بدون دیدگاه برای"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "یک دیدگاه برای"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% دیدگاه برای"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "دیدگاههای کهنتر ←"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "دیدگاههای تازهتر →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "پاسخی بگذارید"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "برای %s پاسخی بگذارید"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "برای فرستادن دیدگاه شما باید <a href=\"%s\">وارد شوید</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "وارد شده با نام <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "بیرون رفتن از این حساب"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "بیرون رفتن »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "نام"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(ضروری)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "ایمیل (منتشر نخواهد شد)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "وبسایت"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "دیدگاه"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "شما میتوانید از این تگها استفاده کنید:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "ارسال دیدگاه"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "چیزی پیدا نشد"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"برای انتشار نخستین نوشته خود آماده اید؟ <a href=\"%1$s\">از اینجا شروع کنید</"
|
||||||
|
"a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"ببخشید، اما چیزی برای عبارت جستجو شده پیدا نشد. لطفا با کلیدواژههای دیگری "
|
||||||
|
"دوباره سعی کنید."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps searching "
|
||||||
|
"can help."
|
||||||
|
msgstr ""
|
||||||
|
"به نظر میرسد نمیتوانیم آنچه که دنبالش هستید را پیدا کنیم. شاید جستجو کمک کند."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "به خواندن ادامه دهید..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "برگهها:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "ارسال شده در %1$s ساعت %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "نوشته شده به دست"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">فهرستها</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">سفارشیسازی</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "ابزارکهای نوار کناری"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "ابزارکها را به این جایگاه نوار کناری بکشید."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "ابزارکهای پاصفحه"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "ابزارکها را به این جایگاه پاصفحه بکشید."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "من یک رشته قابل ترجمه هستم."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "من هم"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "من %d سیب دارم."
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "yyyy-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "نتایج جستجو برای"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "جستجو"
|
Binary file not shown.
|
@ -0,0 +1,261 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:06+0200\n"
|
||||||
|
"Last-Translator: Esa Rantanen <esa@eccola.fi>\n"
|
||||||
|
"Language-Team: Eccola <esa@eccola.fi>\n"
|
||||||
|
"Language: fi_FI\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-Generator: Poedit 1.8.9\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Ei löydy"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
|
||||||
|
msgstr "Sivu jota etsit voi olla poistettu, sen nimi on muuttunut, tai on tilapäisesti poissa käytöstä."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Kokeile seuraavaa:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Tarkista kieliasu"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Palaa <a href=\"%s\">etusivulle</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Klikkaa <a href=\"javascript:history.back()\">Takaisin</a> -painiketta"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Vanhempia artikkeleita"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Uudempia artikkeleita →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Muokkaa)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Kommenttisi on moderointijonossa."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Älä lataa tätä sivua suoraan, kiitos!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr "Tämä sivu on suojattu salasanalla. Anna salasana tarkastellaksesi kommentteja."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Ei kommentteja artikkeliin "
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Yksi kommentti artikkeliin"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% kommenttia artikkeliin "
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Vanhempia kommentteja"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Uudempia kommentteja →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Kommentoi"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Kommentoi: %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Sinun täytyy <a href=\"%s\">kirjautua sisään</a> kommentoidaksesi."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Kirjautunut nimellä: <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Kirjaudu ulos"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Kirjaudu ulos »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nimi"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(pakollinen)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (ei koskaan julkaista)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Verkkosivu"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Kommentoi"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Voit käyttää näitä tageja:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Lähetä kommentti"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Mitään ei löytynyt"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr "Oletko valmis julkaisemaan ensimmäisen kirjoituksesi? <a href=\"%1$s\">Aloita tästä</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||||
|
msgstr "Pahoittelut, mitään ei löytynyt antamillasi hakusanoilla. Kokeile uudestaan joillain toisilla hakusanoilla."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||||
|
msgstr "Näyttää siltä että emme löydä etsimääsi. Kokeile hakutoimintoa."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Lue lisää..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Sivut:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Kirjoitettu %1$s, %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Kirjoittanut "
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid "Please assign a menu to the primary menu location under %1$s or %2$s the design."
|
||||||
|
msgstr "Valitse valikko ensisijaiselle valikolle %1$s or %2$s the design."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Valikot</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Muokkaa</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Sivupalkin vimpaimet"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Raahaa vimpaimia sivupalkkiin"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Footerin vimpaimet"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Raahaa footerin vimpaimet tähän"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Minä olen käännettävä teksti."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Minä myös"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Minulla on %d omena"
|
||||||
|
msgstr[1] "Minulla on %d omenaa"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "vvvv-kk-pp"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Hakutulokset: "
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Hae"
|
Binary file not shown.
|
@ -0,0 +1,251 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress\n"
|
||||||
|
"POT-Creation-Date: 2014-07-10 10:45-0500\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:06+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: Le Saint <info@lesaint.ca>\n"
|
||||||
|
"Language: fr_FR\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;_x;esc_html__;esc_html_e;esc_html_x;esc_attr__;"
|
||||||
|
"esc_attr_e;esc_attr_x;_ex;_n;_nx;_n_noop;_nx_noop\n"
|
||||||
|
"X-Poedit-SearchPath-0: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Fichier non trouvé"
|
||||||
|
|
||||||
|
#: ../404.php:12
|
||||||
|
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 n'existe probablement plus, à changée de nom ou "
|
||||||
|
"est temporairement non disponible."
|
||||||
|
|
||||||
|
#: ../404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "SVP essayez ceci:"
|
||||||
|
|
||||||
|
#: ../404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Vérifier votre orthographe"
|
||||||
|
|
||||||
|
#: ../404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Retour à la <a href=\"%s\">page d'accueil</a>"
|
||||||
|
|
||||||
|
#: ../404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Cliquez sur le bouton <a href=\"javascript:history.back()\">Retour</a>"
|
||||||
|
|
||||||
|
#: ../archive.php:21 ../index.php:25 ../search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Articles précédents"
|
||||||
|
|
||||||
|
#: ../archive.php:22 ../index.php:26 ../search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Articles récents →"
|
||||||
|
|
||||||
|
#: ../comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: ../comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: ../comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editer)"
|
||||||
|
|
||||||
|
#: ../comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Votre commentaire est en attente de modération"
|
||||||
|
|
||||||
|
#: ../comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Ne pas charger cette page directement, merci!"
|
||||||
|
|
||||||
|
#: ../comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Cet article est privé. Entrez le mot de passe pour voir les commentaires."
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Pas de réponse à"
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Une Réponse à"
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Réponses à"
|
||||||
|
|
||||||
|
#: ../comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Commentaires précédents"
|
||||||
|
|
||||||
|
#: ../comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Commentaires suivants →"
|
||||||
|
|
||||||
|
#: ../comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Laisser une réponse"
|
||||||
|
|
||||||
|
#: ../comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Laisser une réponse à %s"
|
||||||
|
|
||||||
|
#: ../comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Vous devez être <a href=\"%s\">connecté</a> pour poster un commentaire."
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Connecté comme <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Déconnecter ce compte"
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Se déconnecter »"
|
||||||
|
|
||||||
|
#: ../comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nom"
|
||||||
|
|
||||||
|
#: ../comments.php:71 ../comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(requis)"
|
||||||
|
|
||||||
|
#: ../comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Courriel (ne sera pas affiché)"
|
||||||
|
|
||||||
|
#: ../comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Site web"
|
||||||
|
|
||||||
|
#: ../comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Commenter"
|
||||||
|
|
||||||
|
#: ../comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Tags utilisables:"
|
||||||
|
|
||||||
|
#: ../comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Envoyer commentaire"
|
||||||
|
|
||||||
|
#: ../content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Rien trouvé"
|
||||||
|
|
||||||
|
#: ../content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Prêt à publier votre premier article? <a href=\"%1$s\">Commencez ici</a>."
|
||||||
|
|
||||||
|
#: ../content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Désolé, mais rien ne correspond à votre recherche. Essayez à nouveau avec "
|
||||||
|
"des mots clef différents."
|
||||||
|
|
||||||
|
#: ../content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Nous pouvons trouver ce que vous cherchez. Peut être qu'une recherche "
|
||||||
|
"pourrait aider."
|
||||||
|
|
||||||
|
#: ../content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Continuer à lire..."
|
||||||
|
|
||||||
|
#: ../hero.php:40 ../kitchen-sink.php:731 ../page-full.php:19
|
||||||
|
#: ../page-home.php:20 ../page.php:19 ../single.php:28
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Pages"
|
||||||
|
|
||||||
|
#: ../library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Posté le %1$s à %2$s."
|
||||||
|
|
||||||
|
#: ../library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Écrit par"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "Assignez un menu à l'emplacement primaire de menu dans %1$s ou %2$s."
|
||||||
|
|
||||||
|
#: ../library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menus</a>"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Personnaliser</a>"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widgets côté"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Déposer les widgets dans ce conteneur."
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widgets du pied de page"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Déposer les widgets dans ce conteneur."
|
||||||
|
|
||||||
|
#: ../search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Résultats pour"
|
||||||
|
|
||||||
|
#: ../searchform.php:6 ../searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Rechercher"
|
Binary file not shown.
|
@ -0,0 +1,281 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2015-10-27 06:23+0100\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:07+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: gl\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-Generator: Poedit 1.8.9\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Arquivo non atopado"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"A páxina que estás a buscar puido ser eliminada, mudou de nome, ou non está "
|
||||||
|
"dispoñíbel temporalmente."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Por favor, tenta o seguinte:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Revisa a ortografía"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Voltar á <a href=\"%s\">páxina de inicio</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Fai clic no botón <a href=\"javascript:history.back()\">Atrás</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Entradas anteriores"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Entradas máis recentes →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editar)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "O teu comentario está esperando moderación."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Por favor, non cargue esta páxina directamente. Grazas!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Esta entrada está protexida con contrasinal. Insira o contrasinal para ver "
|
||||||
|
"os comentarios."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Non hai respostas a"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Unha resposta a"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% respostas a"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Comentarios anteriores"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Comentarios máis recentes →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Deixar unha resposta"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Deixar unha resposta a %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Debes <a href=\"%s\">iniciar sesión</a> para escribir comentarios."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Sesión iniciada como <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Pechar sesión desta conta"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Pechar sesión »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr " (requirido)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (non se publicará)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Sitio web"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Comentario"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Podes empregar estas etiquetas:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Enviar comentario"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Non se atopou nada"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Listo para publicar a túa primeira entrada? <a href=\"%1$s\">Empeza aquí</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Sentímolo, pero non se atopou nada para estes termos de busca. Téntao de "
|
||||||
|
"novo con outras palabras clave."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Semella que non podemos atopar o que estás a buscar. Quizais usar a busca "
|
||||||
|
"sexa de axuda."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Continuar lendo…"
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Páxinas:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Publicado en %1$s o %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Escrito por"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Por favor, asigna un menú á ubicación de menú principal en %1$s ou %2$s o "
|
||||||
|
"deseño."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menús</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Personalizar</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widgets da barra lateral"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Arrastra widgets a este contedor da barra lateral."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widgets de pé de páxina"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Arrastra widgets a este contedor do pé de páxina."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Son unha cadea traducíbel."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Eu tamén"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Teño %d mazá"
|
||||||
|
msgstr[1] "Teño %d mazás"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "aaaa-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Resultados da busca para"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Buscar"
|
Binary file not shown.
|
@ -0,0 +1,272 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-07-05 16:58+0300\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:07+0200\n"
|
||||||
|
"Language-Team: \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-Generator: Poedit 1.8.9\n"
|
||||||
|
"Last-Translator: Eli Cohen <elicohenator@gmail.com>\n"
|
||||||
|
"Language: he\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "הקובץ לא נמצא."
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr "הדף שאתה מחפש אולי הוסר, שמו השתנה או אינו זמין באופן זמני."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "נסה את הפעולות הבאות:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "בדוק את האיות שלך"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "לחזור <a href=\"%s\">דף הבית</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "לחץ על לחצן <a href=\"javascript:history.back()\">הקודם</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← פוסטים קודמים"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "← פוסטים קודמים"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=“fn”>%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(עריכה)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "התגובה שלך ממתינה לאישור."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "בבקשה לא לטעון דף זה ישירות. תודה!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr "פוסט זה מוגן בסיסמה. הזן את הסיסמה כדי לצפות בתגובות."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "אין תגובות ל"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "תגובה אחת ל"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% תגובות ל"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← תגובות ישנות יותר"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "תגובות חדש יותר →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "הוסף תגובה"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "הוסף תגובה ל%s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "אתה חייב להיות <a href=\"%s\">מחובר</a> בכדי לפרסם תגובה."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "מחובר כ- <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "להתנתק מהחשבון"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "להתנתק »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "שם"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(חובה)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "דוא\"ל (לא יפורסם באתר)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "אתר"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "תגובה"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "אתה יכול להשתמש בתגים האלה:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "שלח תגובה"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "לא נמצא דבר"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr "מוכנים לפרסם את הפוסט הראשון שלכם? <a href=\"%1$s\">התחילו כאן</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"אנו מצטערים, לא נמצאו תוצאות עבור הביטוי המבוקש. יש לנסות שוב בעזרת מילות "
|
||||||
|
"חיפוש אחרות."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr "נראה שאנחנו לא מוצאים מה שאתה מחפש. אולי חיפוש יכול לעזור."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "להמשך קריאה…"
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "עמודים:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "פורסם ב-: %1$s ב-: %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "נכתב ע”י"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "נא הקצה תפריט אל המיקום בתפריט הראשי תחת %1$s או %2$s העיצוב."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">תפריטים</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">התאמה אישית</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "ווידג’טים של הסרגל הצדדי"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "גרור ווידג'טים לקונטיינר הסרגל הצדדי."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "אזור הווידג'טים שבפוטר"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "גרור ווידג'טים לקונטיינר שבפוטר"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "מחרוזת לתרגום"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "גם אני"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] ". יש לי תפוח %d"
|
||||||
|
msgstr[1] ". יש לי %d תפוחים"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "יי-חח-שנהה"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "תוצאות חיפוש עבור"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "חיפוש"
|
Binary file not shown.
|
@ -0,0 +1,261 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: 2018-01-03 16:55+0100\n"
|
||||||
|
"Language-Team: \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-Generator: Poedit 2.0.4\n"
|
||||||
|
"Last-Translator: Bela Mezey <contact@belamezey.eu>\n"
|
||||||
|
"Language: hu_HU\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "A fájl nem található"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid "The page you are looking for might have been removed, had its name changed, or is temporarily unavailable."
|
||||||
|
msgstr "A keresett oldal lehet, hogy eltávolításra került, megváltozott a neve, vagy átmenetileg nem elérhető."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Kérlek próbálkozz az alábbiakkal:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Ellenőrizd, hogy nem gépelted el"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Visszalépés a <a href=\"%s\">kezdőlap</a>-hoz"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Kattints a <a href=\"javascript:history.back()\">Vissza</a> gombra"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Régebbi bejegyzések"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Újabb bejegyzések →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Szerkesztés)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Hozzászólásod moderálásra várakozik."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Kérlek ne töltsd be közvetlenül ezt az oldalt. Köszönjük!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr "A bejegyzést jelszó védi. Meg kell adni a jelszót a hozzászólások megtekintéséhez."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Nincs hozzászólás:"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "1 hozzászólás:"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% hozzászólás:"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Korábbi hozzászólások"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Újabb hozzászólások →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Vélemény, hozzászólás?"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Hozzászólás a(z) %s bejegyzéshez"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Be kell <a href=\"%s\">jelentkezni</a> a hozzászólás beküldéséhez."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a> néven bejelentkezve."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Kijelentkezés ebből a fiókból"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Kijelentkezés »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Név"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(kötelező)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (nem lesz közzétéve)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Weboldal"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Hozzászólás"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Az alábbi tageket használhatod:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Hozzászólás beküldése"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Nincs találat"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr "Készen állunk az első bejegyzés közzétételére? <a href=\"%1$s\">Kezdőlépések</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||||
|
msgstr "Elnézést, nem találunk a keresési feltételekhez igazodó eredményt. Másik kulcsszóval, kifejezéssel újra kellene kezdeni egy keresést."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||||
|
msgstr "Úgy tűnik, nem találtuk meg amit kerestünk. :) Talán, egy újabb keresés segíthetne..."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Bővebben..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Oldalak:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Közzétéve: %1$s, %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Szerző:"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid "Please assign a menu to the primary menu location under %1$s or %2$s the design."
|
||||||
|
msgstr "Kérlek adj hozzá egy menüt az elsődleges menühelyhez a %1$s oldalon, vagy a %2$s funkcióval."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menük</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Testreszabás</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Oldalsáv widgetek"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Adjál hozzá widgeteket ehhez az oldalsáv konténerhez."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Lábléc widgetek"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Adjál hozzá widgeteket ehhez az lábléc konténerhez."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Én egy lefordítható szöveg vagyok."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Én is"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Van %d almám"
|
||||||
|
msgstr[1] "Van %d almám"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "yyyy-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Keresési találatok:"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Keresés"
|
Binary file not shown.
|
@ -0,0 +1,276 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: 2017-11-23 19:05+0000\n"
|
||||||
|
"Last-Translator: Alda Vigdís Skarphéðinsdóttir <aldavigdis@aldavigdis.is>\n"
|
||||||
|
"Language-Team: Icelandic\n"
|
||||||
|
"Language: is-IS\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-Generator: Loco - https://localise.biz/"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Innskráð(ur) sem <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Tilgreindu valmynd fyrir staðsetningu aðalvalmyndar %1$s eða %2$s hönnunina."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Ég á %d epli"
|
||||||
|
msgstr[1] "Ég á %d epli"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Leitarniðurstöður fyrir:"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Leita"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Vefsíða"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Athugasemd"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Þú getur notað þessi tögg:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Senda athugasemd"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Ekkert fannst"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Ertu klár í að birta fyrstu færsluna þína? <a href=\"%1$s\">Byrjaðu hér</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Því miður passaði ekki neitt við leitarorðin. Reyndu aftur með öðrum "
|
||||||
|
"leitarorðum."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Við virðumst ekki ná að finna það sem þú ert að leita eftir. Kannski gæti "
|
||||||
|
"virkað að nota leitina."
|
||||||
|
|
||||||
|
#. archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Halda áfram að lesa..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Síður:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Fært inn þann %1$s klukkan %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Skrifað af"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Valmyndir</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Sérsníða</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Hlutir í hliðarstiku"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Dragðu hluti í þessa hliðarstiku."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Hlutir í síðufæti"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Dragðu hluti í þennan síðufót"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Ég er þýðanlegur strengur."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Ég líka"
|
||||||
|
|
||||||
|
#. TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "áááá-mm-dd"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Skrá finnst ekki"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Síðan sem þú leitar að gæti hafa verið fjarlægð, nafni hennar breytt eða er "
|
||||||
|
"ekki aðgengileg sem stendur."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Vinsamlegast reyndu eftirfarandi:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Athugaðu stafsetninguna"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Fara aftur á <a href=\"%s\">aðalsíðu</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Smelltu á <a href=\"javascript:history.back()\">til baka</a>-hnappinn"
|
||||||
|
|
||||||
|
#. previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Eldri færslur"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Nýrri færslur →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Breyta)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Athugasemd þín bíður nú yfirferðar."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Ekki hlaða þessari síðu inn beint. Takk!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Þessari færslu er lokað með lykilorði. Sláðu lykilorðið inn til að skoða "
|
||||||
|
"athugasemdirnar."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Engin svör við"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Eitt svar við"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% svör við"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Eldri athugasemdir"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Nýrri athugasemdir →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Skilja eftir svar"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Leave a Reply to %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Þú verður að <a href=\"%s\">skrá þig inn</a> til að setja inn athugasemdir."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Skrá mig út af þessum aðgangi"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Skrá út »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nafn"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr " (nauðsynlegt)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Tölvupóstfang (verður ekki sýnilegt)"
|
Binary file not shown.
|
@ -0,0 +1,257 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress\n"
|
||||||
|
"POT-Creation-Date: 2014-09-12 17:36+0100\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:07+0200\n"
|
||||||
|
"Last-Translator: Gianluca Rosi <gluca.rosi28@gmail.com>\n"
|
||||||
|
"Language-Team: Le Saint <info@lesaint.ca>\n"
|
||||||
|
"Language: it_IT\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;_x;esc_html__;esc_html_e;esc_html_x;esc_attr__;"
|
||||||
|
"esc_attr_e;esc_attr_x;_ex;_n;_nx;_n_noop;_nx_noop\n"
|
||||||
|
"X-Poedit-SearchPath-0: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Non Trovato"
|
||||||
|
|
||||||
|
#: ../404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"La pagina che stai cercando potrebbe essere stata cancellata, rinominata "
|
||||||
|
"o temporaneamente non disponibile."
|
||||||
|
|
||||||
|
#: ../404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Puoi provare nei seguenti modi:"
|
||||||
|
|
||||||
|
#: ../404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Verifica di aver scritto correttamente"
|
||||||
|
|
||||||
|
#: ../404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Torna alla <a href=\"%s\">home page</a>"
|
||||||
|
|
||||||
|
#: ../404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr ""
|
||||||
|
"Cliccare sul pulsante <a href=\"javascript:history.back()\">Indietro</a>"
|
||||||
|
|
||||||
|
#: ../archive.php:21 ../index.php:24 ../search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Post più vecchi"
|
||||||
|
|
||||||
|
#: ../archive.php:22 ../index.php:25 ../search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Post più recenti →"
|
||||||
|
|
||||||
|
#: ../comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: ../comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: ../comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Modifica)"
|
||||||
|
|
||||||
|
#: ../comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Il tuo commento è in attesa di moderazione."
|
||||||
|
|
||||||
|
#: ../comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Per piacere non caricare direttamente questa pagina. Grazie!"
|
||||||
|
|
||||||
|
#: ../comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Questo post è protetto da password. Per piacere inserisci la password per "
|
||||||
|
"leggerlo."
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Nessun Commento su"
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Un Commento su"
|
||||||
|
|
||||||
|
#: ../comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Commenti su"
|
||||||
|
|
||||||
|
#: ../comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Commenti più vecchi"
|
||||||
|
|
||||||
|
#: ../comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Commenti più recenti →"
|
||||||
|
|
||||||
|
#: ../comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Lascia un commento"
|
||||||
|
|
||||||
|
#: ../comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Lascia un commento su %s"
|
||||||
|
|
||||||
|
#: ../comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Devi essere <a href=\"%s\">loggato</a> per poter commentare."
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Connecté comme <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Disconnettiti da questo account"
|
||||||
|
|
||||||
|
#: ../comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Disconnettiti »"
|
||||||
|
|
||||||
|
#: ../comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#: ../comments.php:71 ../comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(richiesto)"
|
||||||
|
|
||||||
|
#: ../comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (non sarà resa pubblica)"
|
||||||
|
|
||||||
|
#: ../comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Sito web"
|
||||||
|
|
||||||
|
#: ../comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Commento"
|
||||||
|
|
||||||
|
#: ../comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Puoi usare questi tag:"
|
||||||
|
|
||||||
|
#: ../comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Inserisci commento"
|
||||||
|
|
||||||
|
#: ../content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Nessun risultato"
|
||||||
|
|
||||||
|
#: ../content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Sei pronto a pubblicare il tuo primo post? <a href=\"%1$s\">Inizia qui</a>."
|
||||||
|
|
||||||
|
#: ../content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Spiacenti, ma non siamo riusciti a trovare nulla che corrispondesse ai "
|
||||||
|
"termini ricercati. Per piacere riprova con parole differenti."
|
||||||
|
|
||||||
|
#: ../content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Non riusciamo a trovare quello che stai cercando. Forse una ricerca può "
|
||||||
|
"esserti d'aiuto."
|
||||||
|
|
||||||
|
#: ../content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Continua a leggere..."
|
||||||
|
|
||||||
|
#: ../hero.php:40 ../kitchen-sink.php:739 ../page-full.php:19
|
||||||
|
#: ../page-sidebar-left.php:21 ../page.php:18 ../single.php:27
|
||||||
|
#: ../woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Pagine:"
|
||||||
|
|
||||||
|
#: ../library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Pubblicato il %1$s alle %2$s."
|
||||||
|
|
||||||
|
#: ../library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Scritto da"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Per favore assegna un menu andando nella sezione %1$s oppure %2$s il design "
|
||||||
|
"del tema."
|
||||||
|
|
||||||
|
#: ../library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menu</a>"
|
||||||
|
|
||||||
|
#: ../library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Personalizza</a>"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widget della sidebar"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Trascina i widget all'interno di questo spazio "
|
||||||
|
"per la sidebar"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widget del footer"
|
||||||
|
|
||||||
|
#: ../library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Trascina i widget all'interno di questo spazio "
|
||||||
|
"per il footer"
|
||||||
|
|
||||||
|
#: ../search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Risultati di ricerca per"
|
||||||
|
|
||||||
|
#: ../searchform.php:6 ../searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Cerca"
|
Binary file not shown.
|
@ -0,0 +1,252 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress\n"
|
||||||
|
"POT-Creation-Date: 2014-11-11 02:10+0900\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:07+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: ja\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
||||||
|
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
|
||||||
|
"_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "お探しのファイルは見つかりません。"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"お探しのページは削除されたか、名前が変更されたか、一時的に利用できない可能性"
|
||||||
|
"があります。"
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "次のことを試してみてください"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "スペルを確認"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "<a href=\"%s\">ホームページ</a>に戻る"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "<a href=\"javascript:history.back()\">戻る</a> ボタンをクリック"
|
||||||
|
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← 以前の投稿"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "次の投稿 →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(編集)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "コメントは現在承認待ちです。"
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "このページを直接読み込まないでください。"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"この投稿はパスワードで保護されています。コメントを表示するためのパスワードを"
|
||||||
|
"入力してください。"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "返信がありません。"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "一件のコメント"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% 件のコメント"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← 以前のコメント"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "新しいコメント →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "返信を行う"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr " %s への返信"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "この投稿にコメントするために<a href=\"%s\">ログイン</a> が必要です。"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a>としてログインしています。"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "ログアウトする。"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "ログアウト »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "名前"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr " (必須)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "メールアドレス (公開されません)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "ウェブサイト"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "コメント"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "次のHTML タグと属性が使えます:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "コメント送信"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "見つかりません。"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"あなたの最初の投稿を公開する準備はできましたか?<a href=\"%1$s\">ここから始"
|
||||||
|
"めましょう。</a>"
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"ご指定の検索条件に一致する投稿がありませんでした。他のキーワードでもう一度検"
|
||||||
|
"索してみてください。"
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr "お探しのコンテンツを見つけられませんでした。検索をお試しください。"
|
||||||
|
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "続きを読む..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "ページ:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "投稿日時 %1$s %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "投稿者"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "primary menyにメニューに%1$s もしくは %2$sを設定してください。"
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">メニュー</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">カスタマイズ</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "サイドバーウィジェット"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "ウィジェットをサイドバーにドラッグしてください"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "フッターウィジェット"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "ウィジェットをフッターにドラッグしてください"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "検索結果"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "検索"
|
Binary file not shown.
|
@ -0,0 +1,282 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:21+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \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-Generator: Poedit 1.8.9\n"
|
||||||
|
"Language: nb\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Finner ikke filen"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Siden du leter etter kan ha blitt flyttet, navnet kan være endret, eller den "
|
||||||
|
"kan være midlertidig utilgjengelig."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Vennligst forsøk følgende:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Sjekk staving"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Gå tilbake til <a href=\"%s\">forsiden</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Klikk <a href=\"javascript:history.back()\">Tilbake</a> knappen"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Eldre innlegg"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Nyere innlegg →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Rediger)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Din kommentar avventer moderasjon."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Vennligst ikke last denne siden direkte. Takk!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Dette innlegget er passordbeskyttet. Skriv inn passord for å vise "
|
||||||
|
"kommentarer."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Ingen svar på"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Ett svar på"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% svar på"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Eldre kommentarer"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Nyere kommentarer →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Legg igjen et svar"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Legg igjen et svar til %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Du må være <a href=\"%s\">logget inn</a> for å poste en kommentar."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Logget inn som <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Logg av denne kontoen"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Logg av »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Navn"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(påkrevd)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "E-post (vil ikke bli publisert)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Nettside"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Kommentar"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Du kan benytte disse taggene:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Send inn kommentar"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Ingenting funnet"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Klar til å publisere ditt første innlegg? <a href=\"%1$s\">Kom i gang her</"
|
||||||
|
"a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Beklager, men vi fant ingenting som traff på ditt søk. Forsøk gjerne igjen "
|
||||||
|
"med andre søkeord."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Det ser ikke ut som om vi finner det du leter etter. Kanskje et søk kan "
|
||||||
|
"hjelpe?"
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Les videre..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Sider:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Skrevet den %1$s kl. %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Skrevet av"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Vennligst tildel en meny til primærmenyplasseringen etter %1$s eller %2$s "
|
||||||
|
"designet."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menyer</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Tilpass</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Sidestolpe widgets"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Dra widgets til denne sidestolpe konteineren."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Bunn widgets"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Dra widgets til denne bunn kontaineren"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Jeg er en tekststreng som kan oversettes."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Jeg også"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Jeg har %d eple"
|
||||||
|
msgstr[1] "Jeg har %d epler"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "yyyy-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Søketreff for"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Søk"
|
Binary file not shown.
|
@ -0,0 +1,306 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress v5.4\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: \n"
|
||||||
|
"PO-Revision-Date: 2017-12-11 14:13+0100\n"
|
||||||
|
"Last-Translator: violacase <violacase@gmail.com>\n"
|
||||||
|
"Language-Team: \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-Generator: Poedit 2.0.5\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||||
|
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
||||||
|
"X-Textdomain-Support: yes\n"
|
||||||
|
"Language: nl\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Naam"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Verzend commentaar"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Uitloggen met dit account"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Uitloggen »"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Deze post is beveiligd met een wachtwoord. Voer uw wachtwoord in om "
|
||||||
|
"commentaar te zien."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Website"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"U dient <a href=\"%s\">aangemeld</a> te zijn indien u iets wilt schrijven."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Pagina's:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Uw kommentaar wacht op goedkeuring."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Bewerken)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Geef een reactie"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Geef een reactie op %s"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Zoeken"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Bestand niet gevonden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"De pagina die u zoekt kan verwijderd zijn, heeft een andere naam gekregen of "
|
||||||
|
"is tijdelijk niet bereikbaar."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Probeer a.u.b. het volgende:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Controleer uw spelling"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Terug naar de <a href=\"%s\">home pagina</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Klik op de <a href=\"javascript:history.back()\">Terug</a> knop"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Oudere berichten"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Nieuwere berichten →"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Gelieve deze pagina niet direct aan te roepen. Bedankt!"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Geen antwoorden op"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Een antwoord op"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Antwoorden op"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← ouder commentaar"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Nieuwer commentaar →"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Ingelogd als <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(verplicht)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (wordt niet gepubliceerd)"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Commentaar"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "U kunt deze tags gebruiken:"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Niets gevonden"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Klaar om uw eerste bericht te publiceren? <a href=\"%1$s\">Start hier</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Sorry, we hebben niets gevonden met uw zoekopdracht. Probeer het nog eens "
|
||||||
|
"met andere sleutelwoorden."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr "We kunnen dit helaas niet vinden. Misschien helpt zoeken."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Verder lezen..."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Gepost op %1$s te %2$s."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Geschreven door"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Gelieve een primair menu toe te wijzen aan de eerste menupositie op %1$s of "
|
||||||
|
"%2$s van het ontwerp."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menu's</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Aanpassen</a>"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Zijbar-widgets"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Drag widgets naar de zijbar-container."
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Footer-widgets"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Drag widgets naar de footer-container"
|
||||||
|
|
||||||
|
# @ FoundationPress
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Zoekresultaten voor"
|
Binary file not shown.
|
@ -0,0 +1,275 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2015-10-13 19:26+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:07+0200\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"Language: pl\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
|
"|| n%100>=20) ? 1 : 2);\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Nie znaleziono"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Strona, której szukasz mogła zostać usunięta, przeniesiona, lub jest "
|
||||||
|
"tymczasowo niedostępna."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Oto co możesz zrobić:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "sprawdź, czy wpisano poprawną nazwę"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "zacząć od <a href=\"%s\">strony głównej</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "wrócić do <a href=\"javascript:history.back()\">poprzedniej strony</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Starsze posty"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Nowsze posty →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Edytuj)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Twój komentarz czeka na moderację."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Nie wczytuj tej strony bezpośrednio!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr "Ten wpis jest chroniony hasłem Wpisz je by zobaczyć komentarze."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Brak odpowiedzi na"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Jedna odpowiedź na"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Odpowiedzi na"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Starsze komentarze"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Nowsze komentarze →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Dodaj odpowiedź"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Dodaj odpowiedź na %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Musisz być <a href=\"%s\">zalogowany</a> by dodać komentarz."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Zalogowany jako <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Wyloguj się z tego konta"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Wyloguj »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Imię"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr " (wymagane)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (nie zostanie opublikowany)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Strona internetowa"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Komentarz"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Możesz użyć tych tagów:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Wyślij komentarz"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Nie znaleziono"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Gotowy do opublikowania pierwszego postu? <a href=\"%1$s\">Zacznij tutaj</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Przepraszamy, ale nie znaleziono niczego, co spełnia kryteria wyszukiwania. "
|
||||||
|
"Użyj innych słów kluczowych."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Wygląda na to, że nie możemy znaleźć tego elementu. Może te wskazówki pomogą."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Czytaj dalej..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Strony:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Opublikowano %1$s o %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Napisane przez"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "Prosimy o dodanie menu do głównaj nawigacji w %1$s lub %2$s projekcie."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menu</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Dostosuj</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Panel boczny"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Przeciągnij widget do panelu bocznego."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Stopka"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Przeciągnij widget do panelu stopki."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Ten tekst można przetłumaczyć."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Ja też"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "yyyy-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Wyniki wyszukiwania dla"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Wyszukiwanie"
|
Binary file not shown.
|
@ -0,0 +1,274 @@
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:07+0200\n"
|
||||||
|
"Last-Translator: Ian Garcez <ian@onespace.com.br>\n"
|
||||||
|
"Language-Team: OneSpace <ian@onespace.com.br>\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-Generator: Poedit 1.8.9\n"
|
||||||
|
"Language: pt_BR\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Arquivo não encontrado"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"A página que você está procurando pode ter sido removida, teve seu nome "
|
||||||
|
"alterado ou está temporariamente indisponível."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Por favor, tente o seguinte:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Verifique o nome digitado"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Voltar para a <a href=\"%s\">página inicial</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Clique no botão <a href=\"javascript:history.back()\">Voltar</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Posts antigos"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Novos posts →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editar)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Seu comentário está aguardando aprovação."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Por favor não carregue essa página diretamente"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Esse post é protegido por senha. Digite a senha para ver os comentários."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Sem respostas para"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Uma Resposta para"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Respostas para"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Comentários antigos"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Comentários novos →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Deixe uma Resposta"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Deixe uma Resposta para %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Você deve <a href=\"%s\">entrar</a> para postar um comentário."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Entrou como <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Sair desse conta"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Sair »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(obrigatório)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (não será publicado)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Website"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Comentário"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Você pode utilizar essas tags:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Enviar um comentário"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Nada Encontrado"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Preparado para publicar seu primeiro post? <a href=\"%1$s\">Começe aqui</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Desculpe, mas sua pesquisa não resultou nenhum resultado. Por favor tente "
|
||||||
|
"palavras diferentes."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Parece que não podemos encontrar o que você está procurando. Por favor tente "
|
||||||
|
"utilizar a pesquisa."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Continue lendo..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Páginas:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Publicado em %1$s às %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Escrito por"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Por favor defina um menu para a área principal em %1$s ou %2$s o layout."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menus</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Customizar</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widgets da barra lateral"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Arraste widgets para essa barra lateral."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widgtes do rodapé"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Arraste widgets para a área do rodapé"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Eu sou uma linha traduzível"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Eu também"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Eu tenho %d maçã"
|
||||||
|
msgstr[1] "Eu tenho %d maçãs"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "aaaa-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Resultados para"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Pesquisar"
|
Binary file not shown.
|
@ -0,0 +1,291 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-03-14 16:54+0000\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:08+0200\n"
|
||||||
|
"Last-Translator: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||||
|
"Language-Team: Pedro Mendonça <ped.gaspar@gmail.com>\n"
|
||||||
|
"Language: pt_PT\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-Generator: Poedit 1.8.9\n"
|
||||||
|
"X-Poedit-Basepath: ..\n"
|
||||||
|
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
|
||||||
|
"_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;"
|
||||||
|
"esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;"
|
||||||
|
"esc_html_x:1,2c\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Ficheiro não encontrado"
|
||||||
|
|
||||||
|
#: 404.php:20
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"A página que está à procura foi removida, foi alterado o seu nome, ou está "
|
||||||
|
"temporariamente indisponível."
|
||||||
|
|
||||||
|
#: 404.php:22
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Por favor, tente o seguinte:"
|
||||||
|
|
||||||
|
#: 404.php:24
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Verifique a sua ortografia"
|
||||||
|
|
||||||
|
#: 404.php:25
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Voltar para a <a href=\"%s\">pagina inicial</a>"
|
||||||
|
|
||||||
|
#: 404.php:26
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Clique no botão <a href=\"javascript:history.back()\">Voltar</a>"
|
||||||
|
|
||||||
|
#: archive.php:37 index.php:35 search.php:34
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Artigos mais antigos"
|
||||||
|
|
||||||
|
#: archive.php:38 index.php:36 search.php:35
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Artigos mais recentes →"
|
||||||
|
|
||||||
|
#: comments.php:26
|
||||||
|
msgid "Reply"
|
||||||
|
msgstr "Responder"
|
||||||
|
|
||||||
|
#: comments.php:35 library/foundation.php:155
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "O seu comentário aguarda moderação."
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Por favor, não carregue esta página directamente. Obrigado!"
|
||||||
|
|
||||||
|
#: comments.php:59
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Este conteúdo está protegido por senha. Introduza a senha para ver os "
|
||||||
|
"comentários."
|
||||||
|
|
||||||
|
#: comments.php:72
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Deixar uma resposta"
|
||||||
|
|
||||||
|
#: comments.php:72
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Responder a %s"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Tem de ter a <a href=\"%s\">sessão iniciada</a> para publicar um comentário."
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Sessão iniciada como <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Terminar sessão nesta conta"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Terminar sessão »"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nome"
|
||||||
|
|
||||||
|
#: comments.php:84 comments.php:92
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(obrigatório)"
|
||||||
|
|
||||||
|
#: comments.php:92
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (não será publicado)"
|
||||||
|
|
||||||
|
#: comments.php:100
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Site"
|
||||||
|
|
||||||
|
#: comments.php:109
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Comentário"
|
||||||
|
|
||||||
|
#: comments.php:116
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Pode usar estas etiquetas:"
|
||||||
|
|
||||||
|
#: comments.php:122
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Submeter comentário"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:16
|
||||||
|
msgid "Mobile Menu Settings"
|
||||||
|
msgstr "Definições do menu móvel"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:17
|
||||||
|
msgid "Controls the mobile menu"
|
||||||
|
msgstr "Controla o menu móvel"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:22
|
||||||
|
msgid "Mobile navigation layout"
|
||||||
|
msgstr "Disposição da navegação móvel"
|
||||||
|
|
||||||
|
#: library/custom-nav.php:31
|
||||||
|
msgid "topbar"
|
||||||
|
msgstr "Barra superior"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:11
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Publicado em %1$s às %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:12
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Escrito por"
|
||||||
|
|
||||||
|
#: library/foundation.php:24
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:25
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:53
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "Por favor, seleccione um Menu primário em %1$s ou em %2$s o design."
|
||||||
|
|
||||||
|
#: library/foundation.php:54
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menus</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:57
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Personalizar</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:105
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Sem comentários a"
|
||||||
|
|
||||||
|
#: library/foundation.php:105
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Um comentário a"
|
||||||
|
|
||||||
|
#: library/foundation.php:105
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% comentários a"
|
||||||
|
|
||||||
|
#: library/foundation.php:145
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: library/foundation.php:146
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: library/navigation.php:43
|
||||||
|
msgid "mobile-nav"
|
||||||
|
msgstr "Navegação-mobile"
|
||||||
|
|
||||||
|
#: library/navigation.php:210
|
||||||
|
msgid "Page"
|
||||||
|
msgstr "Página"
|
||||||
|
|
||||||
|
#: library/responsive-images.php:19
|
||||||
|
msgid "FP Small"
|
||||||
|
msgstr "FP Pequena"
|
||||||
|
|
||||||
|
#: library/responsive-images.php:20
|
||||||
|
msgid "FP Medium"
|
||||||
|
msgstr "FP Média"
|
||||||
|
|
||||||
|
#: library/responsive-images.php:21
|
||||||
|
msgid "FP Large"
|
||||||
|
msgstr "FP Grande"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:13
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Widgets da barra lateral"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:14
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Arraste widgets para esta barra lateral."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:23
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Widgets do rodapé"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:24
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Arraste widgets para este rodapé."
|
||||||
|
|
||||||
|
#: page-templates/front.php:38 page-templates/page-full-width.php:22
|
||||||
|
#: page-templates/page-sidebar-left.php:22 page.php:30 single.php:32
|
||||||
|
#: woocommerce.php:26
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Páginas:"
|
||||||
|
|
||||||
|
#: search.php:16
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Resultados da pesquisa por"
|
||||||
|
|
||||||
|
#: searchform.php:13 searchform.php:16
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Pesquisar"
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:14
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Nada encontrado"
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:20
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Preparado para publicar o seu primeiro artigo?<a href=\"%1$s\">Comece aqui</"
|
||||||
|
"a>."
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:24
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Desculpe, mas nada correspondeu aos seus critérios de pesquisa. Por favor, "
|
||||||
|
"tente de novo com palavras-chave diferentes."
|
||||||
|
|
||||||
|
#: template-parts/content-none.php:29
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Não conseguimos encontrar aquilo que procura. Talvez uma pesquisa possa "
|
||||||
|
"ajudar."
|
||||||
|
|
||||||
|
#: template-parts/content.php:19
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Continue a ler..."
|
Binary file not shown.
|
@ -0,0 +1,283 @@
|
||||||
|
# Romanian translation for FoundationPress.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# Alex Bohariuc <alex.bohariuc@gmail.com>, 2015.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2015-12-06 02:25+0200\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:08+0200\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!"
|
||||||
|
"=0)))?2:1));\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language: ro\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Pagina pe care o cauți nu există. Aceasta a fost mutată, i s-a schimbat "
|
||||||
|
"numele sau nu este disponibilă în acest moment."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Te rugăm să încerci următoarele:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Uită-te atent la ortografie."
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Întoarce-te la <a href=\"%s\">prima pagină</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Dă click pe butonul<a href=\"javascript:history.back()\">Înapoi</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Articole mai vechi"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Articole mai noi →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn”>%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editare)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Comentariul tău este în moderare."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Te rugăm să nu accesezi direct această pagină."
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Acest articol este protejat cu o parolă. Pentru a vede comentariile te "
|
||||||
|
"rugăm să o introduci."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Nici un răspuns la"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Un răspuns la"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% răspunsuri la"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Comentarii mai vechi"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Comentarii mai noi →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Lasă un răspuns"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "La un răspuns la %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Trebuie să fii <a href=\"%s\">autentificat</a> pentru a posta un comentariu."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Ești logat ca <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Ieși din acest cont."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Deautentificare"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Nume"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(obligatoriu)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (nu va fi făcut public)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Website"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Comentariu"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Poți folosi următoarele etichete"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Trimite comentariu"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Nu am găsit nimic"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Ești gata să publici primul tău articol? <a href=\"%1$s\">Începe de aici</"
|
||||||
|
"a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Ne pare rău, dar nu am găsit nimic pentru termenii de căutare introduși. "
|
||||||
|
"Încearcă cu alte cuvinte cheie."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr "Nu am găsit ceea ce căutai. Folosește formularul de căutare."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Continuă…"
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Pagini:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Postat în %1$s la %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Scris de"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Te rugăm să atribui un meniu pentru secțiunea principală sub %1$s sau %2$s "
|
||||||
|
"la design."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Meniuri</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Personalizare</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Elemente sidebar"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Trage elementele în secțiunea acestui sidebar"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Elemente footer"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Trage elementele în secțiunea acestui footer"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "String care poate fi tradus"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Și eu"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "Am un măr"
|
||||||
|
msgstr[1] "Am %d mere"
|
||||||
|
msgstr[2] "Am %d de mere"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "dd-mm-yyyy"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Rezultate pentru căutarea"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Căutare"
|
Binary file not shown.
|
@ -0,0 +1,281 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2018-06-06 10:52+0000\n"
|
||||||
|
"PO-Revision-Date: 2018-06-07 15:15+0000\n"
|
||||||
|
"Language-Team: Русский\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||||
|
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||||
|
"X-Generator: Loco https://localise.biz/\n"
|
||||||
|
"Last-Translator: badadmin <besfamilny87@yandex.ru>\n"
|
||||||
|
"Language: ru_RU"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Страница не найдена"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Возможно, страница, которую вы ищете, была удалена, изменилось ее имя или "
|
||||||
|
"временно недоступна."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Попробуйте следующее:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Проверить написание"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Вернуться на <a href=\"%s\">главную страницу</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Нажмите кнопку <a href=\"javascript:history.back()\">«Назад»</a>"
|
||||||
|
|
||||||
|
#. previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Старые записи"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Новые записи →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Редактировать)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Ваш комментарий ожидает модерации."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Не загружайте эту страницу напрямую. Спасибо!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Эта запись защищена паролем. Введите пароль, чтобы увидеть комментарии."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Нет ответов для"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Один ответ для"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% Ответов на"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Старые комментарии"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Новые Комментарии →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Оставьте комментарий"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Оставить комментарий к"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Вы должны <a href=\"%s\">войти</a>, чтобы оставить комментарий."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Вошли как <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Выйти из этой учетной записи"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Выйти »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Имя"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(обязательный)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Электронная почта (не будет опубликована)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Веб-сайт"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Комментарий"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Вы можете использовать эти теги:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Отправить комментарий"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Ничего не найдено"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Готовы опубликовать свой первый пост? <a href=\"%1$s\">Начните здесь</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Извините, но ничто не соответствовало вашим условиям поиска. Пожалуйста, "
|
||||||
|
"попытайтесь снова с другими ключевыми словами."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Кажется, мы не можем’ найти то’, что вы ищете. Возможно, поиск "
|
||||||
|
"может помочь."
|
||||||
|
|
||||||
|
#. archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Продолжить чтение..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Страницы:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Опубликовано %1$s в %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Автор:"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgctxt "«"
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "Укажите расположение основного меню в разделе %1$s или %2$s."
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Меню</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Настроить</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Виджеты боковой панели"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Перетащите виджеты в этот контейнер боковой панели."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Виджеты подвала"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Перетащите виджеты в этот контейнер. Они будут отображены в подвале."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Я - переводимая строка."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Я тоже"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "У меня есть %d яблоко"
|
||||||
|
msgstr[1] "У меня есть %d яблока"
|
||||||
|
msgstr[2] "У меня есть %d яблок"
|
||||||
|
|
||||||
|
#. TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "yyyy-mm-dd"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Результаты поиска"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Поиск"
|
Binary file not shown.
|
@ -0,0 +1,273 @@
|
||||||
|
# Copyright (C) 2015 Ole Fredrik Lie
|
||||||
|
# This file is distributed under the MIT License.
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: FoundationPress 5.5.1\n"
|
||||||
|
"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/FoundationPress\n"
|
||||||
|
"POT-Creation-Date: 2015-03-12 12:58:33+00:00\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:08+0200\n"
|
||||||
|
"Last-Translator: Anders Jensen-Urstad <anders@unix.se>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"Language: sv_SE\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Filen kunde inte hittas"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Sidan du letade efter kan ha tagits bort eller bytt namn, eller är "
|
||||||
|
"tillfälligt otillgänglig."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Vänligen prova följande:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Kontrollera din stavning"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "Gå tillbaka till <a href=\"%s\">hemsidan</a>"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "Klicka på knappen <a href=\"javascript:history.back()\">Tillbaka</a>"
|
||||||
|
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Äldre inlägg"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Nyare inlägg →"
|
||||||
|
|
||||||
|
#: comments.php:17
|
||||||
|
msgid "Reply"
|
||||||
|
msgstr "Svara"
|
||||||
|
|
||||||
|
#: comments.php:26
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Din kommentar inväntar granskning."
|
||||||
|
|
||||||
|
#: comments.php:41
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Vänligen ladda inte denna sida direkt. Tack!"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr ""
|
||||||
|
"Det här inlägget är lösenordsskyddat. Ange lösenordet för att se "
|
||||||
|
"kommentarer."
|
||||||
|
|
||||||
|
#: comments.php:59
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Lämna ett svar"
|
||||||
|
|
||||||
|
#: comments.php:59
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Lämna ett svar till %s"
|
||||||
|
|
||||||
|
#: comments.php:62
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr ""
|
||||||
|
"Du måste vara <a href=\"%s\">inloggad</a> för att skriva en kommentar."
|
||||||
|
|
||||||
|
#: comments.php:66
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "Inloggad som <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
|
||||||
|
#: comments.php:66
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Logga ut från det här kontot"
|
||||||
|
|
||||||
|
#: comments.php:66
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Logga ut »"
|
||||||
|
|
||||||
|
#: comments.php:69
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Namn"
|
||||||
|
|
||||||
|
#: comments.php:69 comments.php:73
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr " (krävs)"
|
||||||
|
|
||||||
|
#: comments.php:73
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "E-postadress (publiceras ej)"
|
||||||
|
|
||||||
|
#: comments.php:77
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "Webbplats"
|
||||||
|
|
||||||
|
#: comments.php:82
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Kommentar"
|
||||||
|
|
||||||
|
#: comments.php:85
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Du kan använda dessa taggar:"
|
||||||
|
|
||||||
|
#: comments.php:86
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Skicka kommentar"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Inget hittat"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"Redo att publicera ditt första inlägg? <a href=\"%1$s\">Kom igång här</a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Tyvärr hittades inget som matchade dina söktermer. Vänligen prova igen med "
|
||||||
|
"andra sökord."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Det verkar som att vi inte kan hitta vad du letar efter. Kanske en sökning "
|
||||||
|
"kan hjälpa."
|
||||||
|
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Läs mer..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:730 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Sidor:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Postat den %1$s kl %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Skrivet av"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:18
|
||||||
|
msgid "»"
|
||||||
|
msgstr "»"
|
||||||
|
|
||||||
|
#: library/foundation.php:47
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Vänligen tilldela en meny till den primära menypositionen under %1$s eller "
|
||||||
|
"%2$s designen."
|
||||||
|
|
||||||
|
#: library/foundation.php:48
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menyer</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:51
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Anpassa</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:99
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Inga kommentarer till"
|
||||||
|
|
||||||
|
#: library/foundation.php:99
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "En kommentar till"
|
||||||
|
|
||||||
|
#: library/foundation.php:99
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% kommentarer till"
|
||||||
|
|
||||||
|
#: library/foundation.php:139
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: library/foundation.php:140
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Sidopanelwidgets"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Dra widgets till den här sidopanelsbehållaren."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Sidfotswidgets"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Dra widgets till den här sidfotsbehållaren"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Sökresultat för"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Sök"
|
||||||
|
|
||||||
|
#. Theme Name of the plugin/theme
|
||||||
|
msgid "FoundationPress"
|
||||||
|
msgstr "FoundationPress"
|
||||||
|
|
||||||
|
#. Theme URI of the plugin/theme
|
||||||
|
msgid "http://foundationpress.olefredrik.com"
|
||||||
|
msgstr "http://foundationpress.olefredrik.com"
|
||||||
|
|
||||||
|
#. Description of the plugin/theme
|
||||||
|
msgid ""
|
||||||
|
"FoundationPress is a WordPress starter theme based on Foundation 5 by Zurb"
|
||||||
|
msgstr ""
|
||||||
|
"FoundationPress är ett starter-tema för WordPress baserat på Foundation 5 "
|
||||||
|
"av Zurb"
|
||||||
|
|
||||||
|
#. Author of the plugin/theme
|
||||||
|
msgid "Ole Fredrik Lie"
|
||||||
|
msgstr "Ole Fredrik Lie"
|
||||||
|
|
||||||
|
#. Author URI of the plugin/theme
|
||||||
|
msgid "http://olefredrik.com/"
|
||||||
|
msgstr "http://olefredrik.com/"
|
||||||
|
|
||||||
|
#. Template Name of the plugin/theme
|
||||||
|
msgid "Hero"
|
||||||
|
msgstr "Hero"
|
||||||
|
|
||||||
|
#. Template Name of the plugin/theme
|
||||||
|
msgid "Kitchen Sink"
|
||||||
|
msgstr "Kitchen sink - hela köket"
|
||||||
|
|
||||||
|
#. Template Name of the plugin/theme
|
||||||
|
msgid "Full Width"
|
||||||
|
msgstr "Fullbredd"
|
||||||
|
|
||||||
|
#. Template Name of the plugin/theme
|
||||||
|
msgid "Left Sidebar"
|
||||||
|
msgstr "Vänster sidopanel"
|
Binary file not shown.
|
@ -0,0 +1,278 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2016-09-19 14:45+0300\n"
|
||||||
|
"PO-Revision-Date: 2016-10-16 10:08+0200\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: Poedit 1.8.9\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language: tr\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "Dosya Bulunamadı"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr ""
|
||||||
|
"Aradığınız sayfa silinmiş, adı değiştirilmiş ya da geçici olarak "
|
||||||
|
"kullanılmıyor olabilir."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "Lütfen şunları deneyin:"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "Yazılışı kontrol edin"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "<a href=\"%s\">Anasayfa</a>'ya geri dönün"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "<a href=\"javascript:history.back()\">Geri</a> butonuna tıklayın"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← Eski yazılar"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "Yeni yazılar →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite>"
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr "%1$s"
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Düzenle)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Yorumunuz onay bekliyor."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "Lütfen bu sayfatı doğrudan yüklemeyiniz. Teşekkürler!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr "Bu yazı parola korumalıdır. Yorumları görmek için parolanızı giriniz."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "Yanıt Yok"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "Bir cevap"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "% için cevaplar"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← Eski yorumlar"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "Yeni yorumlar →"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "Bir Cevap Bırakın"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "Bir Cevap Bırakın %s"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "Yazıya yorum eklemek için <a href=\"%s\">üye girişi</a> yapın."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a> olarak üye girişi."
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "Bu hesaptan çıkış yap"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "Oturumu kapat »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "Ad"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(Zorunlu)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "Email (Yayınlanmayacak)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "İnternet sitesi"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "Yorum"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "Şu etiketleri kullanabilirsiniz:"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "Yorumu Gönder"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "Hiçbir Şey Bulunamadı"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr ""
|
||||||
|
"İlk yazını yayınlamak için hazır mısın? <a href=\"%1$s\">Buradan başlayın</"
|
||||||
|
"a>."
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr ""
|
||||||
|
"Üzgünüz, arama teriminizle hiçbir şey eşleşmedi. Lütfen bazı farklı anahtar "
|
||||||
|
"kelimelerle tekrar deneyiniz."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr ""
|
||||||
|
"Aradığınızı bulamıyoruz gibi görünüyor. Belki arama yapmak yardımcı "
|
||||||
|
"olabilir."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "Okumaya devam et..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "Sayfalar:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Yayınlanma tarihi %1$s Yayınlanma zamanı %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "Tarafından yazılmıştır"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr "«"
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr ""
|
||||||
|
"Lütfen birincil menü konumu tasarımı altına %1$s ya da %2$s bir menü atayın"
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">Menü</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">Özelleştir</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "Kenar çubuğu widgetları"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "Bu kenar çubuğu kapsayıcısına widgetları sürükleyin."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "Alt bilgi widgetları"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "Bu alt bilgi kapsayıcısına widgetları sürükleyin"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "Ben çevirilebilir bir metinim."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "Bende"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "%d elmam var"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr "yıl-ay-gün"
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "Arama Sonuçları"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Arama"
|
Binary file not shown.
|
@ -0,0 +1,270 @@
|
||||||
|
# SOME DESCRIPTIVE TITLE.
|
||||||
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: foundationpress-libsass-template 5.4.0\n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2014-09-13 17:56+0200\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
"Language: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
|
|
||||||
|
#: 404.php:8
|
||||||
|
msgid "File Not Found"
|
||||||
|
msgstr "فائل نہیں ملی"
|
||||||
|
|
||||||
|
#: 404.php:12
|
||||||
|
msgid ""
|
||||||
|
"The page you are looking for might have been removed, had its name changed, "
|
||||||
|
"or is temporarily unavailable."
|
||||||
|
msgstr "جس صفحے کو آپ تلاش کر رہے ہو، وہ ہٹا دیا گیا ہے، اس کا نام تبدیل ہوگیا ہے، یا عارضی طور پر دستیاب نہیں ہے."
|
||||||
|
|
||||||
|
#: 404.php:14
|
||||||
|
msgid "Please try the following:"
|
||||||
|
msgstr "مندرجہ ذیل کوشش کریں"
|
||||||
|
|
||||||
|
#: 404.php:16
|
||||||
|
msgid "Check your spelling"
|
||||||
|
msgstr "اپنے ہجے چیک کریں"
|
||||||
|
|
||||||
|
#: 404.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid "Return to the <a href=\"%s\">home page</a>"
|
||||||
|
msgstr "<a href=\"%s\">سرورق</a> واپس کے طرف"
|
||||||
|
|
||||||
|
#: 404.php:18
|
||||||
|
msgid "Click the <a href=\"javascript:history.back()\">Back</a> button"
|
||||||
|
msgstr "بٹن پر کلک کریں <a href=\"javascript:history.back()\">واپس</a>"
|
||||||
|
|
||||||
|
#. /previous pages when applicable
|
||||||
|
#: archive.php:21 index.php:24 search.php:25
|
||||||
|
msgid "← Older posts"
|
||||||
|
msgstr "← پرانی پوسٹس"
|
||||||
|
|
||||||
|
#: archive.php:22 index.php:25 search.php:26
|
||||||
|
msgid "Newer posts →"
|
||||||
|
msgstr "نئی پوسٹس →"
|
||||||
|
|
||||||
|
#: comments.php:8
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:9
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: comments.php:10
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(تبدیل)"
|
||||||
|
|
||||||
|
#: comments.php:16
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "آپ کا تبصرہ اعتدال پسندی کا منتظر ہے."
|
||||||
|
|
||||||
|
#: comments.php:31
|
||||||
|
msgid "Please do not load this page directly. Thanks!"
|
||||||
|
msgstr "براہ مہربانی اس صفحہ کو براہ راست مت لوڈ نہ کریں. شکریہ!"
|
||||||
|
|
||||||
|
#: comments.php:36
|
||||||
|
msgid "This post is password protected. Enter the password to view comments."
|
||||||
|
msgstr "یہ پوسٹ پاس ورڈ محفوظ ہے. تبصرے دیکھنے کے لئے پاس ورڈ درج کریں."
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "No Responses to"
|
||||||
|
msgstr "کوئی جواب نہیں"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "One Response to"
|
||||||
|
msgstr "ایک جواب"
|
||||||
|
|
||||||
|
#: comments.php:46
|
||||||
|
msgid "% Responses to"
|
||||||
|
msgstr "جوابات %"
|
||||||
|
|
||||||
|
#: comments.php:53
|
||||||
|
msgid "← Older comments"
|
||||||
|
msgstr "← پرانے تبصرے"
|
||||||
|
|
||||||
|
#: comments.php:54
|
||||||
|
msgid "Newer comments →"
|
||||||
|
msgstr "→ نئے تبصرے"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
msgid "Leave a Reply"
|
||||||
|
msgstr "جواب دیجئے"
|
||||||
|
|
||||||
|
#: comments.php:61
|
||||||
|
#, php-format
|
||||||
|
msgid "Leave a Reply to %s"
|
||||||
|
msgstr "کو %s جواب دیں"
|
||||||
|
|
||||||
|
#: comments.php:64
|
||||||
|
#, php-format
|
||||||
|
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
|
||||||
|
msgstr "کریں <a href=\"%s\">لاگ ان</a> جواب دینے کے لیے"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
#, php-format
|
||||||
|
msgid "Logged in as <a href=\"%s/wp-admin/profile.php\">%s</a>."
|
||||||
|
msgstr "<a href=\"%s/wp-admin/profile.php\">%s</a> لاگ ان "
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out of this account"
|
||||||
|
msgstr "اس اکاؤنٹ سے لاگ آؤٹ کریں"
|
||||||
|
|
||||||
|
#: comments.php:68
|
||||||
|
msgid "Log out »"
|
||||||
|
msgstr "لاگ آؤٹ »"
|
||||||
|
|
||||||
|
#: comments.php:71
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "نام"
|
||||||
|
|
||||||
|
#: comments.php:71 comments.php:75
|
||||||
|
msgid " (required)"
|
||||||
|
msgstr "(لازمی)"
|
||||||
|
|
||||||
|
#: comments.php:75
|
||||||
|
msgid "Email (will not be published)"
|
||||||
|
msgstr "ای میل (شائع نہیں کیا جائے گا)"
|
||||||
|
|
||||||
|
#: comments.php:79
|
||||||
|
msgid "Website"
|
||||||
|
msgstr "ویب سائٹ"
|
||||||
|
|
||||||
|
#: comments.php:84
|
||||||
|
msgid "Comment"
|
||||||
|
msgstr "تبصرہ"
|
||||||
|
|
||||||
|
#: comments.php:87
|
||||||
|
msgid "You can use these tags:"
|
||||||
|
msgstr "آپ ان ٹیگز استعمال کرسکتے ہیں"
|
||||||
|
|
||||||
|
#: comments.php:88
|
||||||
|
msgid "Submit Comment"
|
||||||
|
msgstr "رائےپیش کریں"
|
||||||
|
|
||||||
|
#: content-none.php:11
|
||||||
|
msgid "Nothing Found"
|
||||||
|
msgstr "کچھ نہیں ملا"
|
||||||
|
|
||||||
|
#: content-none.php:17
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||||
|
msgstr "<a href=\"%1$s\">یہاں شروع کرو</a> اپنی پہلی پوسٹ شائع کرنے کے لئے تیار ہیں؟"
|
||||||
|
|
||||||
|
#: content-none.php:21
|
||||||
|
msgid ""
|
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some "
|
||||||
|
"different keywords."
|
||||||
|
msgstr "معذرت، لیکن آپ کے تلاش کی شرائط سے مل کر کوئی بھی چیز نہیں مل سکی. کچھ مختلف مطلوبہ الفاظ کے ساتھ دوبارہ کوشش کریں."
|
||||||
|
|
||||||
|
#: content-none.php:26
|
||||||
|
msgid ""
|
||||||
|
"It seems we can’t find what you’re looking for. Perhaps "
|
||||||
|
"searching can help."
|
||||||
|
msgstr "ایسا لگتا ہے کہ ہم آپ کو تلاش نہیں کر سکتے ہیں. شاید تلاش میں مدد مل سکتی ہے."
|
||||||
|
|
||||||
|
#. /archive/search.
|
||||||
|
#. *
|
||||||
|
#. * @subpackage FoundationPress
|
||||||
|
#. * @since FoundationPress 1.0.0
|
||||||
|
#.
|
||||||
|
#: content.php:16
|
||||||
|
msgid "Continue reading..."
|
||||||
|
msgstr "پڑھنا جاری رکھو..."
|
||||||
|
|
||||||
|
#: hero.php:40 kitchen-sink.php:739 page-full.php:19 page-sidebar-left.php:21
|
||||||
|
#: page.php:18 single.php:27 woocommerce.php:18
|
||||||
|
msgid "Pages:"
|
||||||
|
msgstr "صفحات:"
|
||||||
|
|
||||||
|
#: library/entry-meta.php:4
|
||||||
|
#, php-format
|
||||||
|
msgid "Posted on %1$s at %2$s."
|
||||||
|
msgstr "Posted on %1$s %2$s."
|
||||||
|
|
||||||
|
#: library/entry-meta.php:5
|
||||||
|
msgid "Written by"
|
||||||
|
msgstr "تصنیف کردہ"
|
||||||
|
|
||||||
|
#: library/foundation.php:16
|
||||||
|
msgid "«"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:17
|
||||||
|
msgid "»"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: library/foundation.php:40
|
||||||
|
#, php-format
|
||||||
|
msgid ""
|
||||||
|
"Please assign a menu to the primary menu location under %1$s or %2$s the "
|
||||||
|
"design."
|
||||||
|
msgstr "%1$s or %2$s براہ کرم بنیادی مینو کے مقام پر ایک مینو تفویض کریں"
|
||||||
|
|
||||||
|
#: library/foundation.php:41
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Menus</a>"
|
||||||
|
msgstr "<a href=\"%s\">مینوز</a>"
|
||||||
|
|
||||||
|
#: library/foundation.php:44
|
||||||
|
#, php-format
|
||||||
|
msgid "<a href=\"%s\">Customize</a>"
|
||||||
|
msgstr "<a href=\"%s\">کسٹمائز</a>"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:6
|
||||||
|
msgid "Sidebar widgets"
|
||||||
|
msgstr "سائڈبار ویجٹ"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:7
|
||||||
|
msgid "Drag widgets to this sidebar container."
|
||||||
|
msgstr "ویجٹ اس سائڈبار کنٹینر کو گھسیٹیں."
|
||||||
|
|
||||||
|
#: library/widget-areas.php:16
|
||||||
|
msgid "Footer widgets"
|
||||||
|
msgstr "فوٹر ویجٹ"
|
||||||
|
|
||||||
|
#: library/widget-areas.php:17
|
||||||
|
msgid "Drag widgets to this footer container"
|
||||||
|
msgstr "اس فٹر کنٹینر میں وگیٹس کو گھسیٹائیں"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-file.php:3
|
||||||
|
msgid "I'm a translatable string."
|
||||||
|
msgstr "میں ایک مترجم سٹرنگ ہوں."
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:4
|
||||||
|
msgid "Me too"
|
||||||
|
msgstr "میں بھی"
|
||||||
|
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:7
|
||||||
|
#, php-format
|
||||||
|
msgid "I have %d apple"
|
||||||
|
msgid_plural "I have %d apples"
|
||||||
|
msgstr[0] "%d میرے پاس سیب ہے"
|
||||||
|
msgstr[1] "%d میرے پاس سیب ہے"
|
||||||
|
|
||||||
|
#. / TRANSLATORS: This should be translated as a shorthand for YEAR-MONTH-DAY using 4, 2 and 2 digits.
|
||||||
|
#: node_modules/grunt-pot/test/fixtures/some-other-file.php:16
|
||||||
|
msgid "yyyy-mm-dd"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: search.php:7
|
||||||
|
msgid "Search Results for"
|
||||||
|
msgstr "کے لئے تلاش کے نتائج"
|
||||||
|
|
||||||
|
#: searchform.php:6 searchform.php:10
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "تلاش کریں"
|
|
@ -0,0 +1,118 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* FoundationPress Comments
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! class_exists( 'Foundationpress_Comments' ) ) :
|
||||||
|
class Foundationpress_Comments extends Walker_Comment {
|
||||||
|
|
||||||
|
// Init classwide variables.
|
||||||
|
public $tree_type = 'comment';
|
||||||
|
|
||||||
|
// Comment ID
|
||||||
|
public $db_fields = array(
|
||||||
|
'parent' => 'comment_parent',
|
||||||
|
'id' => 'comment_ID',
|
||||||
|
);
|
||||||
|
|
||||||
|
/** CONSTRUCTOR
|
||||||
|
* You'll have to use this if you plan to get to the top of the comments list, as
|
||||||
|
* start_lvl() only goes as high as 1 deep nested comments */
|
||||||
|
function __construct() { ?>
|
||||||
|
|
||||||
|
<h3><?php comments_number( __( 'No Responses to', 'foundationpress' ), __( 'One Response to', 'foundationpress' ), __( '% Responses to', 'foundationpress' ) ); ?> “<?php the_title(); ?>”</h3>
|
||||||
|
<ol class="comment-list">
|
||||||
|
|
||||||
|
<?php }
|
||||||
|
|
||||||
|
/** START_LVL
|
||||||
|
* Starts the list before the CHILD elements are added. */
|
||||||
|
function start_lvl( &$output, $depth = 0, $args = array() ) {
|
||||||
|
$GLOBALS['comment_depth'] = $depth + 1; ?>
|
||||||
|
|
||||||
|
<ul class="children">
|
||||||
|
<?php }
|
||||||
|
|
||||||
|
/** END_LVL
|
||||||
|
* Ends the children list of after the elements are added. */
|
||||||
|
function end_lvl( &$output, $depth = 0, $args = array() ) {
|
||||||
|
$GLOBALS['comment_depth'] = $depth + 1; ?>
|
||||||
|
|
||||||
|
</ul><!-- /.children -->
|
||||||
|
|
||||||
|
<?php }
|
||||||
|
|
||||||
|
/** START_EL */
|
||||||
|
function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) {
|
||||||
|
$depth++;
|
||||||
|
$GLOBALS['comment_depth'] = $depth;
|
||||||
|
$GLOBALS['comment'] = $comment;
|
||||||
|
$parent_class = ( empty( $args['has_children'] ) ? '' : 'parent' ); ?>
|
||||||
|
|
||||||
|
<li <?php comment_class( $parent_class ); ?> id="comment-<?php comment_ID(); ?>">
|
||||||
|
<article id="comment-body-<?php comment_ID(); ?>" class="comment-body">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<header class="comment-author">
|
||||||
|
|
||||||
|
<?php echo get_avatar( $comment, $args['avatar_size'] ); ?>
|
||||||
|
|
||||||
|
<div class="author-meta vcard author">
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/* translators: %s: comment author link */
|
||||||
|
printf(
|
||||||
|
__( '<cite class="fn">%s</cite>', 'foundationpress' ),
|
||||||
|
get_comment_author_link()
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<time datetime="<?php echo comment_date( 'c' ); ?>"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>"><?php printf( get_comment_date(), get_comment_time() ); ?></a></time>
|
||||||
|
|
||||||
|
</div><!-- /.comment-author -->
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="comment-content-<?php comment_ID(); ?>" class="comment">
|
||||||
|
<?php if ( ! $comment->comment_approved ) : ?>
|
||||||
|
<div class="notice">
|
||||||
|
<p class="bottom"><?php _e( 'Your comment is awaiting moderation.', 'foundationpress' ); ?></p>
|
||||||
|
</div>
|
||||||
|
<?php else : comment_text(); ?>
|
||||||
|
<?php endif; ?>
|
||||||
|
</section><!-- /.comment-content -->
|
||||||
|
|
||||||
|
<div class="comment-meta comment-meta-data hide">
|
||||||
|
<a href="<?php echo htmlspecialchars( get_comment_link( get_comment_ID() ) ); ?>"><?php comment_date(); ?> at <?php comment_time(); ?></a> <?php edit_comment_link( '(Edit)' ); ?>
|
||||||
|
</div><!-- /.comment-meta -->
|
||||||
|
|
||||||
|
<div class="reply">
|
||||||
|
<?php
|
||||||
|
$reply_args = array(
|
||||||
|
'depth' => $depth,
|
||||||
|
'max_depth' => $args['max_depth'],
|
||||||
|
);
|
||||||
|
|
||||||
|
comment_reply_link( array_merge( $args, $reply_args ) ); ?>
|
||||||
|
</div><!-- /.reply -->
|
||||||
|
</article><!-- /.comment-body -->
|
||||||
|
|
||||||
|
<?php }
|
||||||
|
|
||||||
|
function end_el( & $output, $comment, $depth = 0, $args = array() ) { ?>
|
||||||
|
|
||||||
|
</li><!-- /#comment-' . get_comment_ID() . ' -->
|
||||||
|
|
||||||
|
<?php }
|
||||||
|
|
||||||
|
/** DESTRUCTOR */
|
||||||
|
function __destruct() { ?>
|
||||||
|
|
||||||
|
</ol><!-- /#comment-list -->
|
||||||
|
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Customize the output of menus for Foundation mobile walker
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Big thanks to Brett Mason (https://github.com/brettsmason) for the awesome walker
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! class_exists( 'Foundationpress_Mobile_Walker' ) ) :
|
||||||
|
class Foundationpress_Mobile_Walker extends Walker_Nav_Menu {
|
||||||
|
function start_lvl( &$output, $depth = 0, $args = array() ) {
|
||||||
|
$indent = str_repeat( "\t", $depth );
|
||||||
|
$output .= "\n$indent<ul class=\"vertical nested menu\">\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
|
@ -0,0 +1,90 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Protocol Relative Theme Assets
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.1.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! class_exists( 'Foundationpress_Protocol_Relative_Theme_Assets' ) ) :
|
||||||
|
class Foundationpress_Protocol_Relative_Theme_Assets {
|
||||||
|
/**
|
||||||
|
* Plugin URI: https://github.com/ryanjbonnell/Protocol-Relative-Theme-Assets
|
||||||
|
* Description: Transforms enqueued CSS and JavaScript theme URLs to use protocol-relative paths.
|
||||||
|
* Version: 1.0
|
||||||
|
* Author: Ryan J. Bonnell
|
||||||
|
* Author URI: https://github.com/ryanjbonnell
|
||||||
|
*
|
||||||
|
* Class Constructor
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
public function __construct() {
|
||||||
|
add_filter( 'style_loader_src', array( $this, 'style_loader_src' ), 10, 2 );
|
||||||
|
add_filter( 'script_loader_src', array( $this, 'script_loader_src' ), 10, 2 );
|
||||||
|
|
||||||
|
add_filter( 'template_directory_uri', array( $this, 'template_directory_uri' ), 10, 3 );
|
||||||
|
add_filter( 'stylesheet_directory_uri', array( $this, 'stylesheet_directory_uri' ), 10, 3 );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convert
|
||||||
|
*
|
||||||
|
* @access private
|
||||||
|
* @return string
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
private function make_protocol_relative_url( $url ) {
|
||||||
|
return preg_replace( '(https?://)', '//', $url );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transform Enqueued Stylesheet URLs
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @return string
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
public function style_loader_src( $src, $handle ) {
|
||||||
|
return $this->make_protocol_relative_url( $src );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transform Enqueued JavaScript URLs
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @return string
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
public function script_loader_src( $src, $handle ) {
|
||||||
|
return $this->make_protocol_relative_url( $src );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transform Enqueued Theme Files
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @return string
|
||||||
|
* @since 1.0
|
||||||
|
* @link http://codex.wordpress.org/Function_Reference/get_template_directory_uri
|
||||||
|
*/
|
||||||
|
public function template_directory_uri( $template_dir_uri, $template, $theme_root_uri ) {
|
||||||
|
return $this->make_protocol_relative_url( $template_dir_uri );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transform Enqueued Theme Files
|
||||||
|
*
|
||||||
|
* @access public
|
||||||
|
* @return string
|
||||||
|
* @since 1.0
|
||||||
|
* @link http://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri
|
||||||
|
*/
|
||||||
|
public function stylesheet_directory_uri( $stylesheet_dir_uri, $stylesheet, $theme_root_uri ) {
|
||||||
|
return $this->make_protocol_relative_url( $stylesheet_dir_uri );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$foundationpress_protocol_relative_theme_assets = new Foundationpress_Protocol_Relative_Theme_Assets;
|
||||||
|
endif;
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Customize the output of menus for Foundation top bar
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Big thanks to Brett Mason (https://github.com/brettsmason) for the awesome walker
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! class_exists( 'Foundationpress_Top_Bar_Walker' ) ) :
|
||||||
|
class Foundationpress_Top_Bar_Walker extends Walker_Nav_Menu {
|
||||||
|
function start_lvl( &$output, $depth = 0, $args = array() ) {
|
||||||
|
$indent = str_repeat( "\t", $depth );
|
||||||
|
$output .= "\n$indent<ul class=\"dropdown menu vertical\" data-toggle>\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
|
@ -0,0 +1,100 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Clean up WordPress defaults
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_start_cleanup' ) ) :
|
||||||
|
function foundationpress_start_cleanup() {
|
||||||
|
|
||||||
|
// Launching operation cleanup.
|
||||||
|
add_action( 'init', 'foundationpress_cleanup_head' );
|
||||||
|
|
||||||
|
// Remove WP version from RSS.
|
||||||
|
add_filter( 'the_generator', 'foundationpress_remove_rss_version' );
|
||||||
|
|
||||||
|
// Remove pesky injected css for recent comments widget.
|
||||||
|
add_filter( 'wp_head', 'foundationpress_remove_wp_widget_recent_comments_style', 1 );
|
||||||
|
|
||||||
|
// Clean up comment styles in the head.
|
||||||
|
add_action( 'wp_head', 'foundationpress_remove_recent_comments_style', 1 );
|
||||||
|
|
||||||
|
}
|
||||||
|
add_action( 'after_setup_theme', 'foundationpress_start_cleanup' );
|
||||||
|
endif;
|
||||||
|
/**
|
||||||
|
* Clean up head.+
|
||||||
|
* ----------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_cleanup_head' ) ) :
|
||||||
|
function foundationpress_cleanup_head() {
|
||||||
|
|
||||||
|
// EditURI link.
|
||||||
|
remove_action( 'wp_head', 'rsd_link' );
|
||||||
|
|
||||||
|
// Category feed links.
|
||||||
|
remove_action( 'wp_head', 'feed_links_extra', 3 );
|
||||||
|
|
||||||
|
// Post and comment feed links.
|
||||||
|
remove_action( 'wp_head', 'feed_links', 2 );
|
||||||
|
|
||||||
|
// Windows Live Writer.
|
||||||
|
remove_action( 'wp_head', 'wlwmanifest_link' );
|
||||||
|
|
||||||
|
// Index link.
|
||||||
|
remove_action( 'wp_head', 'index_rel_link' );
|
||||||
|
|
||||||
|
// Previous link.
|
||||||
|
remove_action( 'wp_head', 'parent_post_rel_link', 10 );
|
||||||
|
|
||||||
|
// Start link.
|
||||||
|
remove_action( 'wp_head', 'start_post_rel_link', 10 );
|
||||||
|
|
||||||
|
// Canonical.
|
||||||
|
remove_action( 'wp_head', 'rel_canonical', 10 );
|
||||||
|
|
||||||
|
// Shortlink.
|
||||||
|
remove_action( 'wp_head', 'wp_shortlink_wp_head', 10 );
|
||||||
|
|
||||||
|
// Links for adjacent posts.
|
||||||
|
remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10 );
|
||||||
|
|
||||||
|
// WP version.
|
||||||
|
remove_action( 'wp_head', 'wp_generator' );
|
||||||
|
|
||||||
|
// Emoji detection script.
|
||||||
|
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
|
||||||
|
|
||||||
|
// Emoji styles.
|
||||||
|
remove_action( 'wp_print_styles', 'print_emoji_styles' );
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
// Remove WP version from RSS.
|
||||||
|
if ( ! function_exists( 'foundationpress_remove_rss_version' ) ) :
|
||||||
|
function foundationpress_remove_rss_version() {
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
// Remove injected CSS for recent comments widget.
|
||||||
|
if ( ! function_exists( 'foundationpress_remove_wp_widget_recent_comments_style' ) ) :
|
||||||
|
function foundationpress_remove_wp_widget_recent_comments_style() {
|
||||||
|
if ( has_filter( 'wp_head', 'wp_widget_recent_comments_style' ) ) {
|
||||||
|
remove_filter( 'wp_head', 'wp_widget_recent_comments_style' );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
// Remove injected CSS from recent comments widget.
|
||||||
|
if ( ! function_exists( 'foundationpress_remove_recent_comments_style' ) ) :
|
||||||
|
function foundationpress_remove_recent_comments_style() {
|
||||||
|
global $wp_widget_factory;
|
||||||
|
if ( isset( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'] ) ) {
|
||||||
|
remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
|
@ -0,0 +1,70 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Allow users to select Topbar or Offcanvas menu. Adds body class of offcanvas or topbar based on which they choose.
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'wpt_register_theme_customizer' ) ) :
|
||||||
|
function wpt_register_theme_customizer( $wp_customize ) {
|
||||||
|
|
||||||
|
// Create custom panels
|
||||||
|
$wp_customize->add_panel(
|
||||||
|
'mobile_menu_settings', array(
|
||||||
|
'priority' => 1000,
|
||||||
|
'theme_supports' => '',
|
||||||
|
'title' => __( 'Mobile Menu Settings', 'foundationpress' ),
|
||||||
|
'description' => __( 'Controls the mobile menu', 'foundationpress' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Create custom field for mobile navigation layout
|
||||||
|
$wp_customize->add_section(
|
||||||
|
'mobile_menu_layout', array(
|
||||||
|
'title' => __( 'Mobile navigation layout', 'foundationpress' ),
|
||||||
|
'panel' => 'mobile_menu_settings',
|
||||||
|
'priority' => 1000,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Set default navigation layout
|
||||||
|
$wp_customize->add_setting(
|
||||||
|
'wpt_mobile_menu_layout',
|
||||||
|
array(
|
||||||
|
'default' => __( 'topbar', 'foundationpress' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Add options for navigation layout
|
||||||
|
$wp_customize->add_control(
|
||||||
|
new WP_Customize_Control(
|
||||||
|
$wp_customize,
|
||||||
|
'mobile_menu_layout',
|
||||||
|
array(
|
||||||
|
'type' => 'radio',
|
||||||
|
'section' => 'mobile_menu_layout',
|
||||||
|
'settings' => 'wpt_mobile_menu_layout',
|
||||||
|
'choices' => array(
|
||||||
|
'topbar' => 'Topbar',
|
||||||
|
'offcanvas' => 'Offcanvas',
|
||||||
|
),
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'customize_register', 'wpt_register_theme_customizer' );
|
||||||
|
|
||||||
|
// Add class to body to help w/ CSS
|
||||||
|
add_filter( 'body_class', 'mobile_nav_class' );
|
||||||
|
function mobile_nav_class( $classes ) {
|
||||||
|
if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) === 'topbar' ) :
|
||||||
|
$classes[] = 'topbar';
|
||||||
|
elseif ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) :
|
||||||
|
$classes[] = 'offcanvas';
|
||||||
|
endif;
|
||||||
|
return $classes;
|
||||||
|
}
|
||||||
|
endif;
|
|
@ -0,0 +1,71 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Enqueue all styles and scripts
|
||||||
|
*
|
||||||
|
* Learn more about enqueue_script: {@link https://codex.wordpress.org/Function_Reference/wp_enqueue_script}
|
||||||
|
* Learn more about enqueue_style: {@link https://codex.wordpress.org/Function_Reference/wp_enqueue_style }
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
// Check to see if rev-manifest exists for CSS and JS static asset revisioning
|
||||||
|
//https://github.com/sindresorhus/gulp-rev/blob/master/integration.md
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_asset_path' ) ) :
|
||||||
|
function foundationpress_asset_path( $filename ) {
|
||||||
|
$filename_split = explode( '.', $filename );
|
||||||
|
$dir = end( $filename_split );
|
||||||
|
$manifest_path = dirname( dirname( __FILE__ ) ) . '/dist/assets/' . $dir . '/rev-manifest.json';
|
||||||
|
|
||||||
|
if ( file_exists( $manifest_path ) ) {
|
||||||
|
$manifest = json_decode( file_get_contents( $manifest_path ), true );
|
||||||
|
} else {
|
||||||
|
$manifest = array();
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( array_key_exists( $filename, $manifest ) ) {
|
||||||
|
return $manifest[ $filename ];
|
||||||
|
}
|
||||||
|
return $filename;
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_scripts' ) ) :
|
||||||
|
function foundationpress_scripts() {
|
||||||
|
|
||||||
|
// Enqueue the main Stylesheet.
|
||||||
|
wp_enqueue_style( 'main-stylesheet', get_stylesheet_directory_uri() . '/dist/assets/css/' . foundationpress_asset_path( 'app.css' ), array(), '2.10.4', 'all' );
|
||||||
|
|
||||||
|
// Deregister the jquery version bundled with WordPress.
|
||||||
|
wp_deregister_script( 'jquery' );
|
||||||
|
|
||||||
|
// CDN hosted jQuery placed in the header, as some plugins require that jQuery is loaded in the header.
|
||||||
|
wp_enqueue_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js', array(), '3.2.1', false );
|
||||||
|
|
||||||
|
// Deregister the jquery-migrate version bundled with WordPress.
|
||||||
|
wp_deregister_script( 'jquery-migrate' );
|
||||||
|
|
||||||
|
// CDN hosted jQuery migrate for compatibility with jQuery 3.x
|
||||||
|
wp_register_script( 'jquery-migrate', '//code.jquery.com/jquery-migrate-3.0.1.min.js', array('jquery'), '3.0.1', false );
|
||||||
|
|
||||||
|
// Enqueue jQuery migrate. Uncomment the line below to enable.
|
||||||
|
// wp_enqueue_script( 'jquery-migrate' );
|
||||||
|
|
||||||
|
// Enqueue Foundation scripts
|
||||||
|
wp_enqueue_script( 'foundation', get_stylesheet_directory_uri() . '/dist/assets/js/' . foundationpress_asset_path( 'app.js' ), array( 'jquery' ), '2.10.4', true );
|
||||||
|
|
||||||
|
// Enqueue FontAwesome from CDN. Uncomment the line below if you need FontAwesome.
|
||||||
|
//wp_enqueue_script( 'fontawesome', 'https://use.fontawesome.com/5016a31c8c.js', array(), '4.7.0', true );
|
||||||
|
|
||||||
|
// Add the comment-reply library on pages where it is necessary
|
||||||
|
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
||||||
|
wp_enqueue_script( 'comment-reply' );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'wp_enqueue_scripts', 'foundationpress_scripts' );
|
||||||
|
endif;
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Entry meta information for posts
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_entry_meta' ) ) :
|
||||||
|
function foundationpress_entry_meta() {
|
||||||
|
/* translators: %1$s: current date, %2$s: current time */
|
||||||
|
echo '<time class="updated" datetime="' . get_the_time( 'c' ) . '">' . sprintf( __( 'Posted on %1$s at %2$s.', 'foundationpress' ), get_the_date(), get_the_time() ) . '</time>';
|
||||||
|
echo '<p class="byline author">' . __( 'Written by', 'foundationpress' ) . ' <a href="' . get_author_posts_url( get_the_author_meta( 'ID' ) ) . '" rel="author" class="fn">' . get_the_author() . '</a></p>';
|
||||||
|
}
|
||||||
|
endif;
|
|
@ -0,0 +1,353 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Foundation PHP template
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Pagination.
|
||||||
|
if ( ! function_exists( 'foundationpress_pagination' ) ) :
|
||||||
|
function foundationpress_pagination() {
|
||||||
|
global $wp_query;
|
||||||
|
|
||||||
|
$big = 999999999; // This needs to be an unlikely integer
|
||||||
|
|
||||||
|
// For more options and info view the docs for paginate_links()
|
||||||
|
// http://codex.wordpress.org/Function_Reference/paginate_links
|
||||||
|
$paginate_links = paginate_links(
|
||||||
|
array(
|
||||||
|
'base' => str_replace( $big, '%#%', html_entity_decode( get_pagenum_link( $big ) ) ),
|
||||||
|
'current' => max( 1, get_query_var( 'paged' ) ),
|
||||||
|
'total' => $wp_query->max_num_pages,
|
||||||
|
'mid_size' => 5,
|
||||||
|
'prev_next' => true,
|
||||||
|
'prev_text' => '',
|
||||||
|
'next_text' => '',
|
||||||
|
'type' => 'list',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Display the pagination if more than one page is found.
|
||||||
|
if ( $paginate_links ) {
|
||||||
|
|
||||||
|
// Match patterns for preg_replace
|
||||||
|
$preg_find = [
|
||||||
|
'/\s*page-numbers\s*/', // Captures string 'page-numbers' and any whitespace before and after
|
||||||
|
"/\s*class=''/", // Captures any empty class attributes
|
||||||
|
'/<li><a class="prev" href="(\S+)">/', // '(\S+)' Captures href value for backreference
|
||||||
|
'/<li><a class="next" href="(\S+)">/', // '(\S+)' Captures href value for backreference
|
||||||
|
"/<li><span aria-current='page' class='current'>(\d+)<\/span><\/li>/", // '(\d+)' Captures page number for backreference
|
||||||
|
"/<li><a href='(\S+)'>(\d+)<\/a><\/li>/", // '(\S+)' Captures href value for backreference, (\d+)' Captures page number for backreference
|
||||||
|
];
|
||||||
|
|
||||||
|
// preg_replace replacements
|
||||||
|
$preg_replace = [
|
||||||
|
'',
|
||||||
|
'',
|
||||||
|
'<li class="pagination-previous"><a href="$1" aria-label="Previous page">', // '$1' Outputs backreference href value
|
||||||
|
'<li class="pagination-next"><a href="$1" aria-label="Next page">', // '$1' Outputs backreference href value
|
||||||
|
'<li class="current" aria-current="page"><span class="show-for-sr">You\'re on page </span>$1</li>', // '$1' Outputs backreference page number
|
||||||
|
'<li><a href="$1" aria-label="Page $2">$2</a></li>', // '$1' Ouputs backreference href, '$2' outputs backreference page number
|
||||||
|
];
|
||||||
|
|
||||||
|
// Match patterns for str_replace
|
||||||
|
$str_find = [
|
||||||
|
"<ul>",
|
||||||
|
'<li><span class="dots">…</span></li>',
|
||||||
|
];
|
||||||
|
|
||||||
|
// str_replace replacements
|
||||||
|
$str_replace = [
|
||||||
|
'<ul class="pagination text-center">',
|
||||||
|
'<li class="ellipsis" aria-hidden="true"></li>',
|
||||||
|
];
|
||||||
|
|
||||||
|
$paginate_links = preg_replace( $preg_find, $preg_replace, $paginate_links );
|
||||||
|
$paginate_links = str_replace( $str_find, $str_replace, $paginate_links );
|
||||||
|
|
||||||
|
$paginate_links = '<nav aria-label="Pagination">' . $paginate_links . '</nav>';
|
||||||
|
|
||||||
|
echo $paginate_links;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
// Custom Comments Pagination.
|
||||||
|
if ( ! function_exists( 'foundationpress_get_the_comments_pagination' ) ) :
|
||||||
|
function foundationpress_get_the_comments_pagination( $args = array() ) {
|
||||||
|
$navigation = '';
|
||||||
|
$args = wp_parse_args( $args, array(
|
||||||
|
'prev_text' => __( '«', 'foundationpress' ),
|
||||||
|
'next_text' => __( '»', 'foundationpress' ),
|
||||||
|
'size' => 'default',
|
||||||
|
'show_disabled' => true,
|
||||||
|
) );
|
||||||
|
$args['type'] = 'array';
|
||||||
|
$args['echo'] = false;
|
||||||
|
$links = paginate_comments_links( $args );
|
||||||
|
if ( $links ) {
|
||||||
|
$link_count = count( $links );
|
||||||
|
$pagination_class = 'pagination';
|
||||||
|
if ( 'large' == $args['size'] ) {
|
||||||
|
$pagination_class .= ' pagination-lg';
|
||||||
|
} elseif ( 'small' == $args['size'] ) {
|
||||||
|
$pagination_class .= ' pagination-sm';
|
||||||
|
}
|
||||||
|
$current = get_query_var( 'cpage' ) ? intval( get_query_var( 'cpage' ) ) : 1;
|
||||||
|
$total = get_comment_pages_count();
|
||||||
|
$navigation .= '<ul class="' . $pagination_class . '">';
|
||||||
|
if ( $args['show_disabled'] && 1 === $current ) {
|
||||||
|
$navigation .= '<li class="page-item disabled">' . $args['prev_text'] . '</li>';
|
||||||
|
}
|
||||||
|
foreach ( $links as $index => $link ) {
|
||||||
|
if ( 0 == $index && 0 === strpos( $link, '<a class="prev' ) ) {
|
||||||
|
$navigation .= '<li class="page-item">' . str_replace( 'prev page-numbers', 'page-link', $link ) . '</li>';
|
||||||
|
} elseif ( $link_count - 1 == $index && 0 === strpos( $link, '<a class="next' ) ) {
|
||||||
|
$navigation .= '<li class="page-item">' . str_replace( 'next page-numbers', 'page-link', $link ) . '</li>';
|
||||||
|
} else {
|
||||||
|
$link = preg_replace( "/(class|href)='(.*)'/U", '$1="$2"', $link );
|
||||||
|
if ( 0 === strpos( $link, '<span class="page-numbers current' ) ) {
|
||||||
|
$navigation .= '<li class="page-item active">' . str_replace( array( '<span class="page-numbers current">', '</span>' ), array( '<a class="page-link" href="#">', '</a>' ), $link ) . '</li>';
|
||||||
|
} elseif ( 0 === strpos( $link, '<span class="page-numbers dots' ) ) {
|
||||||
|
$navigation .= '<li class="page-item disabled">' . str_replace( array( '<span class="page-numbers dots">', '</span>' ), array( '<a class="page-link" href="#">', '</a>' ), $link ) . '</li>';
|
||||||
|
} else {
|
||||||
|
$navigation .= '<li class="page-item">' . str_replace( 'class="page-numbers', 'class="page-link', $link ) . '</li>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ( $args['show_disabled'] && $current == $total ) {
|
||||||
|
$navigation .= '<li class="page-item disabled">' . $args['next_text'] . '</li>';
|
||||||
|
}
|
||||||
|
$navigation .= '</ul>';
|
||||||
|
$navigation = _navigation_markup( $navigation, 'comments-pagination' );
|
||||||
|
}
|
||||||
|
return $navigation;
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
// Custom Comments Pagination.
|
||||||
|
if ( ! function_exists( 'foundationpress_the_comments_pagination' ) ) :
|
||||||
|
function foundationpress_the_comments_pagination( $args = array() ) {
|
||||||
|
echo foundationpress_get_the_comments_pagination( $args );
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A fallback when no navigation is selected by default.
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_menu_fallback' ) ) :
|
||||||
|
function foundationpress_menu_fallback() {
|
||||||
|
echo '<div class="alert-box secondary">';
|
||||||
|
/* translators: %1$s: link to menus, %2$s: link to customize. */
|
||||||
|
printf(
|
||||||
|
__( 'Please assign a menu to the primary menu location under %1$s or %2$s the design.', 'foundationpress' ),
|
||||||
|
/* translators: %s: menu url */
|
||||||
|
sprintf(
|
||||||
|
__( '<a href="%s">Menus</a>', 'foundationpress' ),
|
||||||
|
get_admin_url( get_current_blog_id(), 'nav-menus.php' )
|
||||||
|
),
|
||||||
|
/* translators: %s: customize url */
|
||||||
|
sprintf(
|
||||||
|
__( '<a href="%s">Customize</a>', 'foundationpress' ),
|
||||||
|
get_admin_url( get_current_blog_id(), 'customize.php' )
|
||||||
|
)
|
||||||
|
);
|
||||||
|
echo '</div>';
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
// Add Foundation 'is-active' class for the current menu item.
|
||||||
|
if ( ! function_exists( 'foundationpress_active_nav_class' ) ) :
|
||||||
|
function foundationpress_active_nav_class( $classes, $item ) {
|
||||||
|
if ( $item->current == 1 || $item->current_item_ancestor == true ) {
|
||||||
|
$classes[] = 'is-active';
|
||||||
|
}
|
||||||
|
return $classes;
|
||||||
|
}
|
||||||
|
add_filter( 'nav_menu_css_class', 'foundationpress_active_nav_class', 10, 2 );
|
||||||
|
endif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use the is-active class of ZURB Foundation on wp_list_pages output.
|
||||||
|
* From required+ Foundation http://themes.required.ch.
|
||||||
|
*/
|
||||||
|
if ( ! function_exists( 'foundationpress_active_list_pages_class' ) ) :
|
||||||
|
function foundationpress_active_list_pages_class( $input ) {
|
||||||
|
|
||||||
|
$pattern = '/current_page_item/';
|
||||||
|
$replace = 'current_page_item is-active';
|
||||||
|
|
||||||
|
$output = preg_replace( $pattern, $replace, $input );
|
||||||
|
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
add_filter( 'wp_list_pages', 'foundationpress_active_list_pages_class', 10, 2 );
|
||||||
|
endif;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get mobile menu ID
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_mobile_menu_id' ) ) :
|
||||||
|
function foundationpress_mobile_menu_id() {
|
||||||
|
if ( get_theme_mod( 'wpt_mobile_menu_layout' ) === 'offcanvas' ) {
|
||||||
|
echo 'off-canvas-menu';
|
||||||
|
} else {
|
||||||
|
echo 'mobile-menu';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get title bar responsive toggle attribute
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_title_bar_responsive_toggle' ) ) :
|
||||||
|
function foundationpress_title_bar_responsive_toggle() {
|
||||||
|
if ( ! get_theme_mod( 'wpt_mobile_menu_layout' ) || get_theme_mod( 'wpt_mobile_menu_layout' ) === 'topbar' ) {
|
||||||
|
echo 'data-responsive-toggle="mobile-menu"';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
endif;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Custom markup for Wordpress gallery
|
||||||
|
*/
|
||||||
|
if ( ! function_exists( 'foundationpress_gallery' ) ) :
|
||||||
|
function foundationpress_gallery($attr) {
|
||||||
|
|
||||||
|
$post = get_post();
|
||||||
|
static $instance = 0;
|
||||||
|
$instance++;
|
||||||
|
|
||||||
|
if ( ! empty( $attr['ids'] ) ) {
|
||||||
|
// 'ids' is explicitly ordered, unless you specify otherwise.
|
||||||
|
if ( empty( $attr['orderby'] ) )
|
||||||
|
$attr['orderby'] = 'post__in';
|
||||||
|
$attr['include'] = $attr['ids'];
|
||||||
|
}
|
||||||
|
|
||||||
|
// Allow plugins/themes to override the default gallery template.
|
||||||
|
$output = apply_filters('post_gallery', '', $attr, $instance);
|
||||||
|
if ( $output != '' )
|
||||||
|
return $output;
|
||||||
|
|
||||||
|
// Let's make sure it looks like a valid orderby statement
|
||||||
|
if ( isset( $attr['orderby'] ) ) {
|
||||||
|
$attr['orderby'] = sanitize_sql_orderby( $attr['orderby'] );
|
||||||
|
if ( !$attr['orderby'] )
|
||||||
|
unset( $attr['orderby'] );
|
||||||
|
}
|
||||||
|
|
||||||
|
$atts = shortcode_atts(array(
|
||||||
|
'order' => 'ASC',
|
||||||
|
'orderby' => 'menu_order ID',
|
||||||
|
'id' => $post ? $post->ID : 0,
|
||||||
|
'itemtag' => 'figure',
|
||||||
|
'icontag' => 'div',
|
||||||
|
'captiontag' => 'figcaption',
|
||||||
|
'columns-small' => 2, // set default columns for small screen
|
||||||
|
'columns-medium'=> 4, // set default columns for medium screen
|
||||||
|
'columns' => 3, // set default columns for large screen (3 = wordpress default)
|
||||||
|
'size' => 'thumbnail',
|
||||||
|
'include' => '',
|
||||||
|
'exclude' => ''
|
||||||
|
), $attr, 'gallery');
|
||||||
|
|
||||||
|
$id = intval($atts['id']);
|
||||||
|
|
||||||
|
if ( !empty($atts['include']) ) {
|
||||||
|
$_attachments = get_posts( array('include' => $atts['include'], 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $atts['order'], 'orderby' => $atts['orderby']) );
|
||||||
|
|
||||||
|
$attachments = array();
|
||||||
|
foreach ( $_attachments as $key => $val ) {
|
||||||
|
$attachments[$val->ID] = $_attachments[$key];
|
||||||
|
}
|
||||||
|
} elseif ( !empty($atts['exclude']) ) {
|
||||||
|
$attachments = get_children( array('post_parent' => $id, 'exclude' => $atts['exclude'], 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $atts['order'], 'orderby' => $atts['orderby']) );
|
||||||
|
} else {
|
||||||
|
$attachments = get_children( array('post_parent' => $id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $atts['order'], 'orderby' => $atts['orderby']) );
|
||||||
|
}
|
||||||
|
|
||||||
|
if ( empty($attachments) )
|
||||||
|
return '';
|
||||||
|
|
||||||
|
if ( is_feed() ) {
|
||||||
|
$output = "\n";
|
||||||
|
foreach ( $attachments as $att_id => $attachment )
|
||||||
|
$output .= wp_get_attachment_link($att_id, $atts['size'], true) . "\n";
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
$item_tag = tag_escape($atts['itemtag']);
|
||||||
|
$caption_tag = tag_escape($atts['captiontag']);
|
||||||
|
$icon_tag = tag_escape($atts['icontag']);
|
||||||
|
$valid_tags = wp_kses_allowed_html( 'post' );
|
||||||
|
|
||||||
|
if ( ! isset( $valid_tags[ $item_tag ] ) )
|
||||||
|
$item_tag = 'figure';
|
||||||
|
if ( ! isset( $valid_tags[ $caption_tag ] ) )
|
||||||
|
$caption_tag = 'figcaption';
|
||||||
|
if ( ! isset( $valid_tags[ $icon_tag ] ) )
|
||||||
|
$icon_tag = 'div';
|
||||||
|
|
||||||
|
$columns = intval($atts['columns']);
|
||||||
|
$columns_small = intval($atts['columns-small']);
|
||||||
|
$columns_medium = intval($atts['columns-medium']);
|
||||||
|
$selector = "gallery-{$instance}";
|
||||||
|
$size_class = sanitize_html_class( $atts['size'] );
|
||||||
|
|
||||||
|
// Edit this line to modify the default number of grid columns for the small and medium sizes. The large size is passed in the WordPress gallery settings.
|
||||||
|
$output = "<div id='$selector' class='fp-gallery galleryid-{$id} gallery-size-{$size_class} grid-x grid-margin-x small-up-{$columns_small} medium-up-{$columns_medium} large-up-{$columns}'>";
|
||||||
|
|
||||||
|
foreach ( $attachments as $id => $attachment ) {
|
||||||
|
|
||||||
|
// Check if destination is file, nothing or attachment page.
|
||||||
|
if ( isset($attr['link']) && $attr['link'] == 'file' ){
|
||||||
|
$link = wp_get_attachment_link($id, $size_class, false, false, false,array('class' => '', 'id' => "imageid-$id"));
|
||||||
|
|
||||||
|
// Edit this line to implement your html params in <a> tag with use a custom lightbox plugin.
|
||||||
|
$link = str_replace('<a href', '<a class="thumbnail fp-gallery-lightbox" data-gall="fp-gallery-'. $post->ID .'" data-title="'. wptexturize($attachment->post_excerpt) .'" title="'. wptexturize($attachment->post_excerpt) .'" href', $link);
|
||||||
|
|
||||||
|
} elseif ( isset($attr['link']) && $attr['link'] == 'none' ){
|
||||||
|
$link = wp_get_attachment_image($id,$size_class,false, array('class' => "thumbnail attachment-$size_class size-$size_class", 'id' => "imageid-$id"));
|
||||||
|
} else {
|
||||||
|
$link = wp_get_attachment_link($id, $size_class, true, false, false,array('class' => '', 'id' => "imageid-$id"));
|
||||||
|
$link = str_replace('<a href', '<a class="thumbnail" title="'. wptexturize($attachment->post_excerpt) .'" href', $link);
|
||||||
|
}
|
||||||
|
|
||||||
|
$image_meta = wp_get_attachment_metadata( $id );
|
||||||
|
$orientation = '';
|
||||||
|
if ( isset( $image_meta['height'], $image_meta['width'] ) ) {
|
||||||
|
$orientation = ( $image_meta['height'] > $image_meta['width'] ) ? 'portrait' : 'landscape';
|
||||||
|
}
|
||||||
|
$output .= "<{$item_tag} class='fp-gallery-item cell'>";
|
||||||
|
$output .= "
|
||||||
|
<{$icon_tag} class='fp-gallery-icon {$orientation}'>
|
||||||
|
$link
|
||||||
|
</{$icon_tag}>";
|
||||||
|
|
||||||
|
// Uncomment if you wish to display captions inline on gallery.
|
||||||
|
/*
|
||||||
|
if ( $caption_tag && trim($attachment->post_excerpt) ) {
|
||||||
|
$output .= "
|
||||||
|
<{$caption_tag} class='wp-caption-text gallery-caption'>
|
||||||
|
" . wptexturize($attachment->post_excerpt) . "
|
||||||
|
</{$caption_tag}>";
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
$output .= "</{$item_tag}>";
|
||||||
|
|
||||||
|
}
|
||||||
|
$output .= "</div>\n";
|
||||||
|
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
add_shortcode('gallery', 'foundationpress_gallery');
|
||||||
|
endif;
|
|
@ -0,0 +1,38 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_gutenberg_support' ) ) :
|
||||||
|
function foundationpress_gutenberg_support() {
|
||||||
|
|
||||||
|
// Add foundation color palette to the editor
|
||||||
|
add_theme_support( 'editor-color-palette', array(
|
||||||
|
array(
|
||||||
|
'name' => __( 'Primary Color', 'foundationpress' ),
|
||||||
|
'slug' => 'primary',
|
||||||
|
'color' => '#1779ba',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'name' => __( 'Secondary Color', 'foundationpress' ),
|
||||||
|
'slug' => 'secondary',
|
||||||
|
'color' => '#767676',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'name' => __( 'Success Color', 'foundationpress' ),
|
||||||
|
'slug' => 'success',
|
||||||
|
'color' => '#3adb76',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'name' => __( 'Warning color', 'foundationpress' ),
|
||||||
|
'slug' => 'warning',
|
||||||
|
'color' => '#ffae00',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'name' => __( 'Alert color', 'foundationpress' ),
|
||||||
|
'slug' => 'alert',
|
||||||
|
'color' => '#cc4b37',
|
||||||
|
)
|
||||||
|
) );
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'after_setup_theme', 'foundationpress_gutenberg_support' );
|
||||||
|
endif;
|
|
@ -0,0 +1,75 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Register Menus
|
||||||
|
*
|
||||||
|
* @link http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
register_nav_menus(
|
||||||
|
array(
|
||||||
|
'top-bar-r' => esc_html__( 'Right Top Bar', 'foundationpress' ),
|
||||||
|
'mobile-nav' => esc_html__( 'Mobile', 'foundationpress' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Desktop navigation - right top bar
|
||||||
|
*
|
||||||
|
* @link http://codex.wordpress.org/Function_Reference/wp_nav_menu
|
||||||
|
*/
|
||||||
|
if ( ! function_exists( 'foundationpress_top_bar_r' ) ) {
|
||||||
|
function foundationpress_top_bar_r() {
|
||||||
|
wp_nav_menu(
|
||||||
|
array(
|
||||||
|
'container' => false,
|
||||||
|
'menu_class' => 'dropdown menu desktop-menu',
|
||||||
|
'items_wrap' => '<ul id="%1$s" class="%2$s" data-dropdown-menu>%3$s</ul>',
|
||||||
|
'theme_location' => 'top-bar-r',
|
||||||
|
'depth' => 3,
|
||||||
|
'fallback_cb' => false,
|
||||||
|
'walker' => new Foundationpress_Top_Bar_Walker(),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mobile navigation - topbar (default) or offcanvas
|
||||||
|
*/
|
||||||
|
if ( ! function_exists( 'foundationpress_mobile_nav' ) ) {
|
||||||
|
function foundationpress_mobile_nav() {
|
||||||
|
wp_nav_menu(
|
||||||
|
array(
|
||||||
|
'container' => false, // Remove nav container
|
||||||
|
'menu' => __( 'mobile-nav', 'foundationpress' ),
|
||||||
|
'menu_class' => 'vertical menu',
|
||||||
|
'theme_location' => 'mobile-nav',
|
||||||
|
'items_wrap' => '<ul id="%1$s" class="%2$s" data-accordion-menu data-submenu-toggle="true">%3$s</ul>',
|
||||||
|
'fallback_cb' => false,
|
||||||
|
'walker' => new Foundationpress_Mobile_Walker(),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add support for buttons in the top-bar menu:
|
||||||
|
* 1) In WordPress admin, go to Apperance -> Menus.
|
||||||
|
* 2) Click 'Screen Options' from the top panel and enable 'CSS CLasses' and 'Link Relationship (XFN)'
|
||||||
|
* 3) On your menu item, type 'has-form' in the CSS-classes field. Type 'button' in the XFN field
|
||||||
|
* 4) Save Menu. Your menu item will now appear as a button in your top-menu
|
||||||
|
*/
|
||||||
|
if ( ! function_exists( 'foundationpress_add_menuclass' ) ) {
|
||||||
|
function foundationpress_add_menuclass( $ulclass ) {
|
||||||
|
$find = array( '/<a rel="button"/', '/<a title=".*?" rel="button"/' );
|
||||||
|
$replace = array( '<a rel="button" class="button"', '<a rel="button" class="button"' );
|
||||||
|
|
||||||
|
return preg_replace( $find, $replace, $ulclass, 1 );
|
||||||
|
}
|
||||||
|
add_filter( 'wp_nav_menu', 'foundationpress_add_menuclass' );
|
||||||
|
}
|
|
@ -0,0 +1,70 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Configure responsive images sizes
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage FoundationPress
|
||||||
|
* @since FoundationPress 2.6.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Add featured image sizes
|
||||||
|
//
|
||||||
|
// Sizes are optimized and cropped for landscape aspect ratio
|
||||||
|
// and optimized for HiDPI displays on 'small' and 'medium' screen sizes.
|
||||||
|
add_image_size( 'featured-small', 640, 200, true ); // name, width, height, crop
|
||||||
|
add_image_size( 'featured-medium', 1280, 400, true );
|
||||||
|
add_image_size( 'featured-large', 1440, 400, true );
|
||||||
|
add_image_size( 'featured-xlarge', 1920, 400, true );
|
||||||
|
|
||||||
|
// Add additional image sizes
|
||||||
|
add_image_size( 'fp-small', 640 );
|
||||||
|
add_image_size( 'fp-medium', 1024 );
|
||||||
|
add_image_size( 'fp-large', 1200 );
|
||||||
|
add_image_size( 'fp-xlarge', 1920 );
|
||||||
|
|
||||||
|
// Register the new image sizes for use in the add media modal in wp-admin
|
||||||
|
function foundationpress_custom_sizes( $sizes ) {
|
||||||
|
return array_merge(
|
||||||
|
$sizes, array(
|
||||||
|
'fp-small' => __( 'FP Small' ),
|
||||||
|
'fp-medium' => __( 'FP Medium' ),
|
||||||
|
'fp-large' => __( 'FP Large' ),
|
||||||
|
'fp-xlarge' => __( 'FP XLarge' ),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
add_filter( 'image_size_names_choose', 'foundationpress_custom_sizes' );
|
||||||
|
|
||||||
|
// Add custom image sizes attribute to enhance responsive image functionality for content images
|
||||||
|
function foundationpress_adjust_image_sizes_attr( $sizes, $size ) {
|
||||||
|
|
||||||
|
// Actual width of image
|
||||||
|
$width = $size[0];
|
||||||
|
|
||||||
|
// Full width page template
|
||||||
|
if ( is_page_template( 'page-templates/page-full-width.php' ) ) {
|
||||||
|
if ( 1200 < $width ) {
|
||||||
|
$sizes = '(max-width: 1199px) 98vw, 1200px';
|
||||||
|
} else {
|
||||||
|
$sizes = '(max-width: 1199px) 98vw, ' . $width . 'px';
|
||||||
|
}
|
||||||
|
} else { // Default 3/4 column post/page layout
|
||||||
|
if ( 770 < $width ) {
|
||||||
|
$sizes = '(max-width: 639px) 98vw, (max-width: 1199px) 64vw, 770px';
|
||||||
|
} else {
|
||||||
|
$sizes = '(max-width: 639px) 98vw, (max-width: 1199px) 64vw, ' . $width . 'px';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $sizes;
|
||||||
|
}
|
||||||
|
add_filter( 'wp_calculate_image_sizes', 'foundationpress_adjust_image_sizes_attr', 10, 2 );
|
||||||
|
|
||||||
|
// Remove inline width and height attributes for post thumbnails
|
||||||
|
function remove_thumbnail_dimensions( $html, $post_id, $post_image_id ) {
|
||||||
|
if ( ! strpos( $html, 'attachment-shop_single' ) ) {
|
||||||
|
$html = preg_replace( '/^(width|height)=\"\d*\"\s/', '', $html );
|
||||||
|
}
|
||||||
|
return $html;
|
||||||
|
}
|
||||||
|
add_filter( 'post_thumbnail_html', 'remove_thumbnail_dimensions', 10, 3 );
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Change the class for sticky posts to .wp-sticky to avoid conflicts with Foundation's Sticky plugin
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 2.2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_sticky_posts' ) ) :
|
||||||
|
function foundationpress_sticky_posts( $classes ) {
|
||||||
|
if ( in_array( 'sticky', $classes, true ) ) {
|
||||||
|
$classes = array_diff( $classes, array( 'sticky' ) );
|
||||||
|
$classes[] = 'wp-sticky';
|
||||||
|
}
|
||||||
|
return $classes;
|
||||||
|
}
|
||||||
|
add_filter( 'post_class', 'foundationpress_sticky_posts' );
|
||||||
|
|
||||||
|
endif;
|
|
@ -0,0 +1,54 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Register theme support for languages, menus, post-thumbnails, post-formats etc.
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_theme_support' ) ) :
|
||||||
|
function foundationpress_theme_support() {
|
||||||
|
// Add language support
|
||||||
|
load_theme_textdomain( 'foundationpress', get_template_directory() . '/languages' );
|
||||||
|
|
||||||
|
// Switch default core markup for search form, comment form, and comments to output valid HTML5
|
||||||
|
add_theme_support(
|
||||||
|
'html5', array(
|
||||||
|
'search-form',
|
||||||
|
'comment-form',
|
||||||
|
'comment-list',
|
||||||
|
'gallery',
|
||||||
|
'caption',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Add menu support
|
||||||
|
add_theme_support( 'menus' );
|
||||||
|
|
||||||
|
// Let WordPress manage the document title
|
||||||
|
add_theme_support( 'title-tag' );
|
||||||
|
|
||||||
|
// Add post thumbnail support: http://codex.wordpress.org/Post_Thumbnails
|
||||||
|
add_theme_support( 'post-thumbnails' );
|
||||||
|
|
||||||
|
// RSS thingy
|
||||||
|
add_theme_support( 'automatic-feed-links' );
|
||||||
|
|
||||||
|
// Add post formats support: http://codex.wordpress.org/Post_Formats
|
||||||
|
add_theme_support( 'post-formats', array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat' ) );
|
||||||
|
|
||||||
|
// Additional theme support for woocommerce 3.0.+
|
||||||
|
add_theme_support( 'wc-product-gallery-zoom' );
|
||||||
|
add_theme_support( 'wc-product-gallery-lightbox' );
|
||||||
|
add_theme_support( 'wc-product-gallery-slider' );
|
||||||
|
|
||||||
|
add_theme_support( 'editor-styles' );
|
||||||
|
|
||||||
|
add_editor_style( get_stylesheet_directory_uri() . '/dist/assets/css/editor.css' );
|
||||||
|
|
||||||
|
// Add foundation.css as editor style https://codex.wordpress.org/Editor_Style
|
||||||
|
// add_editor_style( 'dist/assets/css/' . foundationpress_asset_path( 'editor.css' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'after_setup_theme', 'foundationpress_theme_support' );
|
||||||
|
endif;
|
|
@ -0,0 +1,37 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Register widget areas
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
if ( ! function_exists( 'foundationpress_sidebar_widgets' ) ) :
|
||||||
|
function foundationpress_sidebar_widgets() {
|
||||||
|
register_sidebar(
|
||||||
|
array(
|
||||||
|
'id' => 'sidebar-widgets',
|
||||||
|
'name' => __( 'Sidebar widgets', 'foundationpress' ),
|
||||||
|
'description' => __( 'Drag widgets to this sidebar container.', 'foundationpress' ),
|
||||||
|
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
||||||
|
'after_widget' => '</section>',
|
||||||
|
'before_title' => '<h6>',
|
||||||
|
'after_title' => '</h6>',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
register_sidebar(
|
||||||
|
array(
|
||||||
|
'id' => 'footer-widgets',
|
||||||
|
'name' => __( 'Footer widgets', 'foundationpress' ),
|
||||||
|
'description' => __( 'Drag widgets to this footer container', 'foundationpress' ),
|
||||||
|
'before_widget' => '<section id="%1$s" class="widget %2$s">',
|
||||||
|
'after_widget' => '</section>',
|
||||||
|
'before_title' => '<h6>',
|
||||||
|
'after_title' => '</h6>',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action( 'widgets_init', 'foundationpress_sidebar_widgets' );
|
||||||
|
endif;
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,80 @@
|
||||||
|
{
|
||||||
|
"name": "foundationpress",
|
||||||
|
"title": "FoundationPress",
|
||||||
|
"version": "2.10.6",
|
||||||
|
"description": "FoundationPress is a WordPress starter theme based on Foundation 6 by Zurb",
|
||||||
|
"homepage": "https://foundationpress.olefredrik.com",
|
||||||
|
"license": "MIT",
|
||||||
|
"main": "gulpfile.babel.js",
|
||||||
|
"scripts": {
|
||||||
|
"start": "gulp",
|
||||||
|
"dev": "gulp build --dev",
|
||||||
|
"build": "gulp build --production",
|
||||||
|
"package": "gulp package --production",
|
||||||
|
"phpcs": "gulp phpcs",
|
||||||
|
"phpcbf": "gulp phpcbf"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"FoundationPress",
|
||||||
|
"WordPress",
|
||||||
|
"starter theme",
|
||||||
|
"Foundation",
|
||||||
|
"semantic",
|
||||||
|
"mobile first",
|
||||||
|
"customizable",
|
||||||
|
"responsive"
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"foundation-sites": "6.5.1",
|
||||||
|
"jquery": "~3.0.0",
|
||||||
|
"motion-ui": "^2.0.3",
|
||||||
|
"what-input": "^4.1.3"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"ansi-colors": "^1.0.1",
|
||||||
|
"babel-core": "^6.26.3",
|
||||||
|
"babel-loader": "^7.1.2",
|
||||||
|
"babel-preset-es2015": "^6.3.13",
|
||||||
|
"babel-register": "^6.7.2",
|
||||||
|
"browser-sync": "^2.26.3",
|
||||||
|
"dateformat": "^3.0.2",
|
||||||
|
"fancy-log": "^1.3.2",
|
||||||
|
"gulp": "^4.0",
|
||||||
|
"gulp-autoprefixer": "^3.1.0",
|
||||||
|
"gulp-babel": "^6.1.2",
|
||||||
|
"gulp-clean-css": "^4.0.0",
|
||||||
|
"gulp-cli": "^2.0.1",
|
||||||
|
"gulp-concat": "^2.5.2",
|
||||||
|
"gulp-extname": "^0.2.0",
|
||||||
|
"gulp-if": "^2.0.0",
|
||||||
|
"gulp-imagemin": "^5.0.3",
|
||||||
|
"gulp-load-plugins": "^1.1.0",
|
||||||
|
"gulp-phpcbf": "^0.1.2",
|
||||||
|
"gulp-phpcs": "^2.1.0",
|
||||||
|
"gulp-rev": "^8.0.0",
|
||||||
|
"gulp-sass": "^3.1.0",
|
||||||
|
"gulp-sourcemaps": "^1.6.0",
|
||||||
|
"gulp-uglify": "^1.2.0",
|
||||||
|
"gulp-zip": "^4.0.0",
|
||||||
|
"js-yaml": "^3.13.0",
|
||||||
|
"panini": "^1.6.3",
|
||||||
|
"rimraf": "^2.4.3",
|
||||||
|
"style-sherpa": "^1.0.0",
|
||||||
|
"vinyl-named": "^1.1.0",
|
||||||
|
"webpack": "^3.10.0",
|
||||||
|
"webpack-stream": "^4.0.0",
|
||||||
|
"yargs": "^3.8.0"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/olefredrik/foundationpress.git"
|
||||||
|
},
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/olefredrik/foundationpress/issues"
|
||||||
|
},
|
||||||
|
"babel": {
|
||||||
|
"presets": [
|
||||||
|
"es2015"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,98 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
Template Name: Front
|
||||||
|
*/
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<header class="front-hero" role="banner">
|
||||||
|
<div class="marketing">
|
||||||
|
<div class="tagline">
|
||||||
|
<h1><?php bloginfo( 'name' ); ?></h1>
|
||||||
|
<h4 class="subheader"><?php bloginfo( 'description' ); ?></h4>
|
||||||
|
<a role="button" class="download large button sites-button hide-for-small-only" href="https://github.com/olefredrik/foundationpress">Download FoundationPress</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="watch">
|
||||||
|
<span id="stargazers"><a href="https://github.com/olefredrik/foundationpress">1.5k stargazers</a></span>
|
||||||
|
<span id="twitter"><a href="https://twitter.com/olefredrik">@olefredrik</a></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<?php do_action( 'foundationpress_before_content' ); ?>
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<section class="intro" role="main">
|
||||||
|
<div class="fp-intro">
|
||||||
|
|
||||||
|
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
|
||||||
|
<?php do_action( 'foundationpress_page_before_entry_content' ); ?>
|
||||||
|
<div class="entry-content">
|
||||||
|
<?php the_content(); ?>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<?php
|
||||||
|
wp_link_pages(
|
||||||
|
array(
|
||||||
|
'before' => '<nav id="page-nav"><p>' . __( 'Pages:', 'foundationpress' ),
|
||||||
|
'after' => '</p></nav>',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
?>
|
||||||
|
<p><?php the_tags(); ?></p>
|
||||||
|
</footer>
|
||||||
|
<?php do_action( 'foundationpress_page_before_comments' ); ?>
|
||||||
|
<?php comments_template(); ?>
|
||||||
|
<?php do_action( 'foundationpress_page_after_comments' ); ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
<?php do_action( 'foundationpress_after_content' ); ?>
|
||||||
|
|
||||||
|
<div class="section-divider">
|
||||||
|
<hr />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<section class="benefits">
|
||||||
|
<header>
|
||||||
|
<h2>Build Foundation based sites, powered by WordPress</h2>
|
||||||
|
<h4>Foundation is the professional choice for designers, developers and teams. <br /> WordPress is by far, <a href="http://trends.builtwith.com/cms">the world's most popular CMS</a> (currently powering 38% of the web).</h4>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="semantic">
|
||||||
|
<img src="<?php echo get_stylesheet_directory_uri(); ?>/dist/assets/images/demo/semantic.svg" alt="semantic">
|
||||||
|
<h3>Semantic</h3>
|
||||||
|
<p>Everything is semantic. You can have the cleanest markup without sacrificing the utility and speed of Foundation.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="responsive">
|
||||||
|
<img src="<?php echo get_stylesheet_directory_uri(); ?>/dist/assets/images/demo/responsive.svg" alt="responsive">
|
||||||
|
<h3>Responsive</h3>
|
||||||
|
<p>You can build for small devices first. Then, as devices get larger and larger, layer in more complexity for a complete responsive design.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="customizable">
|
||||||
|
<img src="<?php echo get_stylesheet_directory_uri(); ?>/dist/assets/images/demo/customizable.svg" alt="customizable">
|
||||||
|
<h3>Customizable</h3>
|
||||||
|
<p>You can customize your build to include or remove certain elements, as well as define the size of columns, colors, font size and more.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="professional">
|
||||||
|
<img src="<?php echo get_stylesheet_directory_uri(); ?>/dist/assets/images/demo/professional.svg" alt="professional">
|
||||||
|
<h3>Professional</h3>
|
||||||
|
<p>Millions of designers and developers depend on Foundation. We have business support, training and consulting to help grow your product or service.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="why-foundation">
|
||||||
|
<a href="/kitchen-sink">See what's in Foundation out of the box →</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,982 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
Template Name: Kitchen Sink
|
||||||
|
*/
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?php /* Start loop */ ?>
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<header class="kitchen-sink-header">
|
||||||
|
<h1 class="entry-title"><?php the_title(); ?></h1><hr>
|
||||||
|
<p class="lead">This page includes every single Foundation element so that we can make sure things work together smoothly.</p><hr>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<!-- Main wrapper for the components in the kitchen-sink -->
|
||||||
|
<div id="components" class="kitchen-sink-components">
|
||||||
|
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
|
||||||
|
<!-- Abide -->
|
||||||
|
<h2 id="abide" class="docs-heading" data-magellan-target="abide"><a href="abide"></a>Abide</h2>
|
||||||
|
|
||||||
|
<form data-abide novalidate>
|
||||||
|
<div class="row">
|
||||||
|
<div class="columns">
|
||||||
|
<div data-abide-error class="alert callout" style="display: none;">
|
||||||
|
<p><i class="fi-alert"></i> There are some errors in your form.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="small-12 columns">
|
||||||
|
<label>Number Requireds
|
||||||
|
<input type="text" placeholder="1234" aria-describedby="exampleHelpText" required pattern="number">
|
||||||
|
<span class="form-error">
|
||||||
|
Yo, you had better fill this out, it's requiredxx.
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
<p class="help-text" id="exampleHelpText">Here's how you use this input field!</p>
|
||||||
|
</div>
|
||||||
|
<div class="small-12 columns">
|
||||||
|
<label>Nothing Required!
|
||||||
|
<input type="text" placeholder="Use me, or don't" aria-describedby="exampleHelpTex" data-abide-ignore>
|
||||||
|
</label>
|
||||||
|
<p class="help-text" id="exampleHelpTex">This input is ignored by Abide using `data-abide-ignore`</p>
|
||||||
|
</div>
|
||||||
|
<div class="small-12 columns">
|
||||||
|
<label>Password Required
|
||||||
|
<input type="password" id="password" placeholder="yeti4preZ" aria-describedby="exampleHelpText" required >
|
||||||
|
<span class="form-error">
|
||||||
|
I'm required!
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
<p class="help-text" id="exampleHelpText">Enter a password please.</p>
|
||||||
|
</div>
|
||||||
|
<div class="small-12 columns">
|
||||||
|
<label>Re-enter Password
|
||||||
|
<input type="password" placeholder="yeti4preZ" aria-describedby="exampleHelpText2" required pattern="alpha_numeric" data-equalto="password">
|
||||||
|
<span class="form-error">
|
||||||
|
Hey, passwords are supposed to match!
|
||||||
|
</span>
|
||||||
|
</label>
|
||||||
|
<p class="help-text" id="exampleHelpText2">This field is using the `data-equalto="password"` attribute, causing it to match the password field above.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="medium-6 columns">
|
||||||
|
<label>
|
||||||
|
URL Pattern, not required, but throws error if it doesn't match the Regular Expression for a valid URL.
|
||||||
|
<input type="text" placeholder="http://foundation.zurb.com" pattern="url">
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<div class="medium-6 columns">
|
||||||
|
<label>European Cars, Choose One, it can't be the blank option.
|
||||||
|
<select id="select" required>
|
||||||
|
<option value=""></option>
|
||||||
|
<option value="volvo">Volvo</option>
|
||||||
|
<option value="saab">Saab</option>
|
||||||
|
<option value="mercedes">Mercedes</option>
|
||||||
|
<option value="audi">Audi</option>
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<fieldset class="medium-6 columns">
|
||||||
|
<legend>Choose Your Favorite, and this is required, so you have to pick one.</legend>
|
||||||
|
<input type="radio" name="pokemon" value="Red" id="pokemonRed"><label for="pokemonRed">Red</label>
|
||||||
|
<input type="radio" name="pokemon" value="Blue" id="pokemonBlue" required><label for="pokemonBlue">Blue</label>
|
||||||
|
<input type="radio" name="pokemon" value="Yellow" id="pokemonYellow"><label for="pokemonYellow">Yellow</label>
|
||||||
|
</fieldset>
|
||||||
|
<fieldset class="medium-6 columns">
|
||||||
|
<legend>Choose Your Favorite - not required, you can leave this one blank.</legend>
|
||||||
|
<input type="radio" name="pockets" value="Red" id="pocketsRed"><label for="pocketsRed">Red</label>
|
||||||
|
<input type="radio" name="pockets" value="Blue" id="pocketsBlue"><label for="pocketsBlue">Blue</label>
|
||||||
|
<input type="radio" name="pockets" value="Yellow" id="pocketsYellow"><label for="pocketsYellow">Yellow</label>
|
||||||
|
</fieldset>
|
||||||
|
<fieldset class="medium-6 columns">
|
||||||
|
<legend>Check these out</legend>
|
||||||
|
<input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label>
|
||||||
|
<input id="checkbox2" type="checkbox" required><label for="checkbox2">Checkbox 2</label>
|
||||||
|
<input id="checkbox3" type="checkbox"><label for="checkbox3">Checkbox 3</label>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<fieldset class="medium-6 columns">
|
||||||
|
<button class="button" type="submit" value="Submit">Submit</button>
|
||||||
|
</fieldset>
|
||||||
|
<fieldset class="medium-6 columns">
|
||||||
|
<button class="button" type="reset" value="Reset">Reset</button>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Accordion -->
|
||||||
|
<h2 id="accordion" class="docs-heading" data-magellan-target="accordion"><a href="#accordion"></a>Accordion</h2>
|
||||||
|
<ul class="accordion" data-accordion role="tablist">
|
||||||
|
<li class="accordion-item" data-accordion-item>
|
||||||
|
<!-- The tab title needs role="tab", an href, a unique ID, and aria-controls. -->
|
||||||
|
<a href="#panel1d" role="tab" class="accordion-title" id="panel1d-heading" aria-controls="panel1d">Accordion 1</a>
|
||||||
|
<!-- The content pane needs an ID that matches the above href, role="tabpanel", data-tab-content, and aria-labelledby. -->
|
||||||
|
<div id="panel1d" class="accordion-content" role="tabpanel" data-tab-content aria-labelledby="panel1d-heading">
|
||||||
|
Panel 1. Lorem ipsum dolor
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="accordion-item" data-accordion-item>
|
||||||
|
<!-- The tab title needs role="tab", an href, a unique ID, and aria-controls. -->
|
||||||
|
<a href="#panel1d" role="tab" class="accordion-title" id="panel1d-heading" aria-controls="panel1d">Accordion 2</a>
|
||||||
|
<!-- The content pane needs an ID that matches the above href, role="tabpanel", data-tab-content, and aria-labelledby. -->
|
||||||
|
<div id="panel1d" class="accordion-content" role="tabpanel" data-tab-content aria-labelledby="panel1d-heading">
|
||||||
|
Panel 2. Lorem ipsum dolor
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="accordion-item" data-accordion-item>
|
||||||
|
<!-- The tab title needs role="tab", an href, a unique ID, and aria-controls. -->
|
||||||
|
<a href="#panel1d" role="tab" class="accordion-title" id="panel1d-heading" aria-controls="panel1d">Accordion 3</a>
|
||||||
|
<!-- The content pane needs an ID that matches the above href, role="tabpanel", data-tab-content, and aria-labelledby. -->
|
||||||
|
<div id="panel1d" class="accordion-content" role="tabpanel" data-tab-content aria-labelledby="panel1d-heading">
|
||||||
|
Panel 3. Lorem ipsum dolor
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Accordion Menu -->
|
||||||
|
<h2 id="accordion-menu" class="docs-heading" data-magellan-target="accordion-menu"><a href="#accordion-menu"></a>Accordion Menu</h2>
|
||||||
|
<ul class="vertical menu" data-accordion-menu>
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 1</a>
|
||||||
|
<ul class="menu vertical nested is-active">
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 1A</a>
|
||||||
|
<ul class="menu vertical nested">
|
||||||
|
<li><a href="#">Item 1Ai</a></li>
|
||||||
|
<li><a href="#">Item 1Aii</a></li>
|
||||||
|
<li><a href="#">Item 1Aiii</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#">Item 1B</a></li>
|
||||||
|
<li><a href="#">Item 1C</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 2</a>
|
||||||
|
<ul class="menu vertical nested">
|
||||||
|
<li><a href="#">Item 2A</a></li>
|
||||||
|
<li><a href="#">Item 2B</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#">Item 3</a></li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Badge -->
|
||||||
|
<h2 id="badge" class="docs-heading" data-magellan-target="badge"><a href="#badge"></a>Badge</h2>
|
||||||
|
<span class="secondary badge">2</span>
|
||||||
|
<span class="success badge">3</span>
|
||||||
|
<span class="alert badge">A</span>
|
||||||
|
<span class="warning badge">B</span>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Breadcrumbs -->
|
||||||
|
<h2 id="breadcrumbs" class="docs-heading" data-magellan-target="breadcrumbs"><a href="#breadcrumbs"></a>Breadcrumbs</h2>
|
||||||
|
<nav aria-label="You are here:" role="navigation">
|
||||||
|
<ul class="breadcrumbs">
|
||||||
|
<li><a href="#">Home</a></li>
|
||||||
|
<li><a href="#">Features</a></li>
|
||||||
|
<li class="disabled">Gene Splicing</li>
|
||||||
|
<li><span class="show-for-sr">Current: </span> Cloning</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Button -->
|
||||||
|
<h2 id="button" class="docs-heading" data-magellan-target="button"><a href="#button"></a>Button</h2>
|
||||||
|
<a class="button primary" href="#">Primary</a>
|
||||||
|
<a class="button secondary" href="#">Secondary</a>
|
||||||
|
<a class="button success" href="#">Success</a>
|
||||||
|
<a class="button alert" href="#">Alert</a>
|
||||||
|
<a class="button warning" href="#">Warning</a>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<!-- Buttons (actions) -->
|
||||||
|
<button type="button" class="success button">Save</button>
|
||||||
|
<button type="button" class="alert button">Delete</button>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<a class="tiny button" href="#">So Tiny</a>
|
||||||
|
<a class="small button" href="#">So Small</a>
|
||||||
|
<a class="button" href="#">So Basic</a>
|
||||||
|
<a class="large button" href="#">So Large</a>
|
||||||
|
<a class="expanded button" href="#">Such Expand</a>
|
||||||
|
|
||||||
|
<div class="button-group">
|
||||||
|
<a class="button">One</a>
|
||||||
|
<a class="button">Two</a>
|
||||||
|
<a class="button">Three</a>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Callout -->
|
||||||
|
<h2 id="callout" class="docs-heading" data-magellan-target="callout"><a href="#callout"></a>Callout</h2>
|
||||||
|
<div class="callout">
|
||||||
|
<h5>This is a default callout.</h5>
|
||||||
|
<p>It has an easy to override visual style, and is appropriately subdued.</p>
|
||||||
|
<a href="#">It's dangerous to go alone, take this.</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="callout primary">
|
||||||
|
<h5>This is a primary callout</h5>
|
||||||
|
<p>It has an easy to override visual style, and is appropriately subdued.</p>
|
||||||
|
<a href="#">It's dangerous to go alone, take this.</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="callout secondary">
|
||||||
|
<h5>This is a secondary callout</h5>
|
||||||
|
<p>It has an easy to override visual style, and is appropriately subdued.</p>
|
||||||
|
<a href="#">It's dangerous to go alone, take this.</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="callout success">
|
||||||
|
<h5>This is a success callout</h5>
|
||||||
|
<p>It has an easy to override visual style, and is appropriately subdued.</p>
|
||||||
|
<a href="#">It's dangerous to go alone, take this.</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="callout warning">
|
||||||
|
<h5>This is a warning callout</h5>
|
||||||
|
<p>It has an easy to override visual style, and is appropriately subdued.</p>
|
||||||
|
<a href="#">It's dangerous to go alone, take this.</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="callout alert">
|
||||||
|
<h5>This is an alert callout</h5>
|
||||||
|
<p>It has an easy to override visual style, and is appropriately subdued.</p>
|
||||||
|
<a href="#">It's dangerous to go alone, take this.</a>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Cards -->
|
||||||
|
<h2 id="cards" class="docs-heading" data-magellan-target="cards"><a href="#cards"></a>Cards</h2>
|
||||||
|
|
||||||
|
<div class="cards-container">
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<img src="https://placeimg.com/300/200/arch">
|
||||||
|
<div class="card-content">
|
||||||
|
<h4>Dreams feel real</h4>
|
||||||
|
<p>I'm going to improvise. Listen, there's something you should know about me... about inception.</p>
|
||||||
|
<small>Last updated 1 minute ago</small>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<img src="https://placeimg.com/300/200/nature">
|
||||||
|
<div class="card-content">
|
||||||
|
<h4>Menus</h4>
|
||||||
|
<p>Cards play nicely with menus too! Give them a try.</p>
|
||||||
|
<ul class="menu simple">
|
||||||
|
<li><a href="#">One</a></li>
|
||||||
|
<li><a href="#">Two</a></li>
|
||||||
|
<li><a href="#">Three</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-divider">
|
||||||
|
<p>Featured</p>
|
||||||
|
</div>
|
||||||
|
<div class="card-content">
|
||||||
|
<h4>Your title here!</h4>
|
||||||
|
<p>An idea is like a virus, resilient, highly contagious. The smallest seed of an idea can grow. It can grow to define or destroy you.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<img src="https://placeimg.com/300/200/people">
|
||||||
|
<div class="card-content">
|
||||||
|
<h4>Buttons!</h4>
|
||||||
|
<p>Who doesn't love a good button? Buttons work in all of their forms too.</p>
|
||||||
|
<a class="button" href="#">I'm a button</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<img src="https://placeimg.com/300/200/tech">
|
||||||
|
<div class="card-content">
|
||||||
|
<h4>And button groups...</h4>
|
||||||
|
<p>Button groups also work great!</p>
|
||||||
|
<div class="button-group">
|
||||||
|
<a class="button">One</a>
|
||||||
|
<a class="button">Two</a>
|
||||||
|
<a class="button">Three</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="card text-center">
|
||||||
|
<div class="card-divider">
|
||||||
|
<p>Centered</p>
|
||||||
|
</div>
|
||||||
|
<img src="https://placeimg.com/300/200/animals">
|
||||||
|
<div class="card-content">
|
||||||
|
<p>The utility classes like .text-center work great too.</p>
|
||||||
|
<a class="button" href="#">Click me</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Close Button -->
|
||||||
|
<h2 id="close-button" class="docs-heading" data-magellan-target="close-button"><a href="#close-button"></a>Close Button</h2>
|
||||||
|
<div class="callout">
|
||||||
|
<button class="close-button" aria-label="Close alert" type="button">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
<p>This is a static close button example.</p>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Drilldown Menu -->
|
||||||
|
<h2 id="drilldown-menu" class="docs-heading" data-magellan-target="drilldown-menu"><a href="#drilldown-menu"></a>Drilldown Menu</h2>
|
||||||
|
<ul class="vertical menu" data-drilldown style="width: 200px" id="m1">
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 1</a>
|
||||||
|
<ul class="vertical menu" id="m2">
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 1A</a>
|
||||||
|
<ul class="vertical menu" id="m3">
|
||||||
|
<li><a href="#">Item 1Aa</a></li>
|
||||||
|
<li><a href="#">Item 1Ba</a></li>
|
||||||
|
<li><a href="#">Item 1Ca</a></li>
|
||||||
|
<li><a href="#">Item 1Da</a></li>
|
||||||
|
<li><a href="#">Item 1Ea</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#">Item 1B</a></li>
|
||||||
|
<li><a href="#">Item 1C</a></li>
|
||||||
|
<li><a href="#">Item 1D</a></li>
|
||||||
|
<li><a href="#">Item 1E</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 2</a>
|
||||||
|
<ul class="vertical menu">
|
||||||
|
<li><a href="#">Item 2A</a></li>
|
||||||
|
<li><a href="#">Item 2B</a></li>
|
||||||
|
<li><a href="#">Item 2C</a></li>
|
||||||
|
<li><a href="#">Item 2D</a></li>
|
||||||
|
<li><a href="#">Item 2E</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 3</a>
|
||||||
|
<ul class="vertical menu">
|
||||||
|
<li><a href="#">Item 3A</a></li>
|
||||||
|
<li><a href="#">Item 3B</a></li>
|
||||||
|
<li><a href="#">Item 3C</a></li>
|
||||||
|
<li><a href="#">Item 3D</a></li>
|
||||||
|
<li><a href="#">Item 3E</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href='#'> Item 4</a></li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Dropdown Menu -->
|
||||||
|
<h2 id="dropdown-menu" class="docs-heading" data-magellan-target="dropdown-menu"><a href="#dropdown-menu"></a>Dropdown Menu</h2>
|
||||||
|
<ul class="dropdown menu" data-dropdown-menu>
|
||||||
|
<li>
|
||||||
|
<a>Item 1</a>
|
||||||
|
<ul class="menu">
|
||||||
|
<li><a href="#">Item 1A Loooong</a></li>
|
||||||
|
<li>
|
||||||
|
<a href='#'> Item 1 sub</a>
|
||||||
|
<ul class='menu'>
|
||||||
|
<li><a href='#'>Item 1 subA</a></li>
|
||||||
|
<li><a href='#'>Item 1 subB</a></li>
|
||||||
|
<li>
|
||||||
|
<a href='#'> Item 1 sub</a>
|
||||||
|
<ul class='menu'>
|
||||||
|
<li><a href='#'>Item 1 subA</a></li>
|
||||||
|
<li><a href='#'>Item 1 subB</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href='#'> Item 1 sub</a>
|
||||||
|
<ul class='menu'>
|
||||||
|
<li><a href='#'>Item 1 subA</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#">Item 1B</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#">Item 2</a>
|
||||||
|
<ul class="menu">
|
||||||
|
<li><a href="#">Item 2A</a></li>
|
||||||
|
<li><a href="#">Item 2B</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#">Item 3</a></li>
|
||||||
|
<li><a href='#'>Item 4</a></li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Dropdown Pane -->
|
||||||
|
<h2 id="dropdown-pane" class="docs-heading" data-magellan-target="dropdown-pane"><a href="#dropdown-pane"></a>Dropdown Pane</h2>
|
||||||
|
<button class="button" type="button" data-toggle="example-dropdown">Toggle Dropdown</button>
|
||||||
|
<div class="dropdown-pane" id="example-dropdown" data-dropdown>
|
||||||
|
Just some junk that needs to be said. Or not. Your choice.
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<h2 id="equalizer" class="docs-heading" data-magellan-target="equalizer"><a href="#equalizer"></a>Equalizer</h2>
|
||||||
|
<div class="grid-container">
|
||||||
|
<div class="grid-x grid-margin-x" data-equalizer data-equalize-on="medium" id="test-eq">
|
||||||
|
<div class="medium-4 cell">
|
||||||
|
<div class="callout" data-equalizer-watch>
|
||||||
|
<img src= "https://placeimg.com/300/200/arch">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="medium-4 cell">
|
||||||
|
<div class="callout" data-equalizer-watch>
|
||||||
|
<p>Pellentesque habitant morbi tristique senectus et netus et, ante.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="medium-4 cell">
|
||||||
|
<div class="callout" data-equalizer-watch>
|
||||||
|
<img src= "https://placeimg.com/400/100/arch">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Flex Video -->
|
||||||
|
<h2 id="flex-video" class="docs-heading" data-magellan-target="flex-video"><a href="#flex-video"></a>Flex Video</h2>
|
||||||
|
<div class="flex-video">
|
||||||
|
<iframe width="420" height="315" src="https://www.youtube.com/embed/V9gkYw35Vws" frameborder="0" allowfullscreen></iframe>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Forms -->
|
||||||
|
<h2 id="forms" class="docs-heading" data-magellan-target="forms"><a href="#forms"></a>Forms</h2>
|
||||||
|
<form>
|
||||||
|
<label>Input Label
|
||||||
|
<input type="text" placeholder=".small-12.columns" aria-describedby="exampleHelpText">
|
||||||
|
</label>
|
||||||
|
<p class="help-text" id="exampleHelpText">Here's how you use this input field!</p>
|
||||||
|
<label>
|
||||||
|
How many puppies?
|
||||||
|
<input type="number" value="100">
|
||||||
|
</label>
|
||||||
|
<label>
|
||||||
|
What books did you read over summer break?
|
||||||
|
<textarea placeholder="None"></textarea>
|
||||||
|
</label>
|
||||||
|
<label>Select Menu
|
||||||
|
<select>
|
||||||
|
<option value="husker">Husker</option>
|
||||||
|
<option value="starbuck">Starbuck</option>
|
||||||
|
<option value="hotdog">Hot Dog</option>
|
||||||
|
<option value="apollo">Apollo</option>
|
||||||
|
</select>
|
||||||
|
</label>
|
||||||
|
<div class="row">
|
||||||
|
<fieldset class="large-6 columns">
|
||||||
|
<legend>Choose Your Favorite</legend>
|
||||||
|
<input type="radio" name="pokemon" value="Red" id="pokemonRed" required><label for="pokemonRed">Red</label>
|
||||||
|
<input type="radio" name="pokemon" value="Blue" id="pokemonBlue"><label for="pokemonBlue">Blue</label>
|
||||||
|
<input type="radio" name="pokemon" value="Yellow" id="pokemonYellow"><label for="pokemonYellow">Yellow</label>
|
||||||
|
</fieldset>
|
||||||
|
<fieldset class="large-6 columns">
|
||||||
|
<legend>Check these out</legend>
|
||||||
|
<input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label>
|
||||||
|
<input id="checkbox2" type="checkbox"><label for="checkbox2">Checkbox 2</label>
|
||||||
|
<input id="checkbox3" type="checkbox"><label for="checkbox3">Checkbox 3</label>
|
||||||
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="small-3 columns">
|
||||||
|
<label for="middle-label" class="right middle">Label</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="small-9 columns">
|
||||||
|
<input type="text" id="middle-label" placeholder="Right- and middle-aligned text input">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="input-group">
|
||||||
|
<span class="input-group-label">$</span>
|
||||||
|
<input class="input-group-field" type="url">
|
||||||
|
<div class="input-group-button">
|
||||||
|
<input type="submit" class="button" value="Submit">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Grid -->
|
||||||
|
<h2 id="grid" class="docs-heading" data-magellan-target="grid"><a href="#grid"></a>Grid (XY)</h2>
|
||||||
|
<div class="kitchen-sink-grid">
|
||||||
|
<div class="grid-x">
|
||||||
|
<div class="cell">full width cell</div>
|
||||||
|
<div class="cell">full width cell</div>
|
||||||
|
</div>
|
||||||
|
<div class="grid-x">
|
||||||
|
<div class="small-6 cell">6 cells</div>
|
||||||
|
<div class="small-6 cell">6 cells</div>
|
||||||
|
</div>
|
||||||
|
<div class="grid-x">
|
||||||
|
<div class="medium-6 large-4 cell">12/6/4 cells</div>
|
||||||
|
<div class="medium-6 large-8 cell">12/6/8 cells</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Label -->
|
||||||
|
<h2 id="label" class="docs-heading" data-magellan-target="label"><a href="#label"></a>Label</h2>
|
||||||
|
<span class="secondary label">Secondary Label</span>
|
||||||
|
<span class="success label">Success Label</span>
|
||||||
|
<span class="alert label">Alert Label</span>
|
||||||
|
<span class="warning label">Warning Label</span>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Media Object -->
|
||||||
|
<h2 id="media-object" class="docs-heading" data-magellan-target="media-object"><a href="#media-object"></a>Media Object</h2>
|
||||||
|
<div class="media-object">
|
||||||
|
<div class="media-object-section">
|
||||||
|
<img src= "http://placeimg.com/200/200/people">
|
||||||
|
</div>
|
||||||
|
<div class="media-object-section">
|
||||||
|
<h4>Dreams feel real while we're in them.</h4>
|
||||||
|
<p>I'm going to improvise. Listen, there's something you should know about me... about inception. An idea is like a virus, resilient, highly contagious. The smallest seed of an idea can grow. It can grow to define or destroy you.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Menu -->
|
||||||
|
<h2 id="menu" class="docs-heading" data-magellan-target="menu"><a href="#menu"></a>Menu</h2>
|
||||||
|
<ul class="menu">
|
||||||
|
<li><a href="#">One</a></li>
|
||||||
|
<li><a href="#">Two</a></li>
|
||||||
|
<li><a href="#">Three</a></li>
|
||||||
|
<li><a href="#">Four</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<ul class="menu icon-top">
|
||||||
|
<li><a href="#"><i class="fi-list"></i> <span>One</span></a></li>
|
||||||
|
<li><a href="#"><i class="fi-list"></i> <span>Two</span></a></li>
|
||||||
|
<li><a href="#"><i class="fi-list"></i> <span>Three</span></a></li>
|
||||||
|
<li><a href="#"><i class="fi-list"></i> <span>Four</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Motion UI -->
|
||||||
|
<h2 id="motion-ui" class="docs-heading" data-magellan-target="motion-ui"><a href="#motion-ui"></a>Motion UI</h2>
|
||||||
|
<div id="motion-example-1" data-toggler data-animate="fade-in fade-out" data-toggle="motion-example-1" class="callout secondary">
|
||||||
|
<p>This panel fades.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="motion-example-2" data-toggler data-animate="slide-in-down slide-out-up" data-toggle="motion-example-2" class="callout secondary">
|
||||||
|
<p>This panel slides.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button type="button" class="button" data-toggle="motion-example-1">Fade</button>
|
||||||
|
<button type="button" class="button" data-toggle="motion-example-2">Slide</button>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Orbit -->
|
||||||
|
<h2 id="orbit" class="docs-heading" data-magellan-target="orbit"><a href="#orbit"></a>Orbit</h2>
|
||||||
|
<div class="orbit" role="region" aria-label="Favorite Space Pictures" data-orbit>
|
||||||
|
<ul class="orbit-container">
|
||||||
|
<button class="orbit-previous" aria-label="previous"><span class="show-for-sr">Previous Slide</span>◀</button>
|
||||||
|
<button class="orbit-next" aria-label="next"><span class="show-for-sr">Next Slide</span>▶</button>
|
||||||
|
<li class="is-active orbit-slide">
|
||||||
|
<div>
|
||||||
|
<h3 class="text-center">You can also throw some text in here!</h3>
|
||||||
|
<p class="text-center">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Unde harum rem, beatae ipsa consectetur quisquam. Rerum ratione, delectus atque tempore sed, suscipit ullam, beatae distinctio cupiditate ipsam eligendi tempora expedita.</p>
|
||||||
|
<h3 class="text-center">This Orbit slide has chill</h3>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="orbit-slide">
|
||||||
|
<div>
|
||||||
|
<h3 class="text-center">You can also throw some text in here!</h3>
|
||||||
|
<p class="text-center">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Unde harum rem, beatae ipsa consectetur quisquam. Rerum ratione, delectus atque tempore sed, suscipit ullam, beatae distinctio cupiditate ipsam eligendi tempora expedita.</p>
|
||||||
|
<h3 class="text-center">This Orbit slide has chill</h3>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="orbit-slide">
|
||||||
|
<div>
|
||||||
|
<h3 class="text-center">You can also throw some text in here!</h3>
|
||||||
|
<p class="text-center">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Unde harum rem, beatae ipsa consectetur quisquam. Rerum ratione, delectus atque tempore sed, suscipit ullam, beatae distinctio cupiditate ipsam eligendi tempora expedita.</p>
|
||||||
|
<h3 class="text-center">This Orbit slide has chill</h3>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li class="orbit-slide">
|
||||||
|
<div>
|
||||||
|
<h3 class="text-center">You can also throw some text in here!</h3>
|
||||||
|
<p class="text-center">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Unde harum rem, beatae ipsa consectetur quisquam. Rerum ratione, delectus atque tempore sed, suscipit ullam, beatae distinctio cupiditate ipsam eligendi tempora expedita.</p>
|
||||||
|
<h3 class="text-center">This Orbit slide has chill</h3>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<nav class="orbit-bullets">
|
||||||
|
<button class="is-active" data-slide="0"><span class="show-for-sr">First slide details.</span><span class="show-for-sr">Current Slide</span></button>
|
||||||
|
<button data-slide="1"><span class="show-for-sr">Second slide details.</span></button>
|
||||||
|
<button data-slide="2"><span class="show-for-sr">Third slide details.</span></button>
|
||||||
|
<button data-slide="3"><span class="show-for-sr">Fourth slide details.</span></button>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Pagination -->
|
||||||
|
<h2 id="pagination" class="docs-heading" data-magellan-target="pagination"><a href="#pagination"></a>Pagination</h2>
|
||||||
|
<ul class="pagination" role="navigation" aria-label="Pagination">
|
||||||
|
<li class="disabled">Previous <span class="show-for-sr">page</span></li>
|
||||||
|
<li class="current"><span class="show-for-sr">You're on page</span> 1</li>
|
||||||
|
<li><a href="#" aria-label="Page 2">2</a></li>
|
||||||
|
<li><a href="#" aria-label="Page 3">3</a></li>
|
||||||
|
<li><a href="#" aria-label="Page 4">4</a></li>
|
||||||
|
<li class="ellipsis" aria-hidden="true"></li>
|
||||||
|
<li><a href="#" aria-label="Page 12">12</a></li>
|
||||||
|
<li><a href="#" aria-label="Page 13">13</a></li>
|
||||||
|
<li><a href="#" aria-label="Next page">Next <span class="show-for-sr">page</span></a></li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Progress Bar -->
|
||||||
|
<h2 id="progress-bar" class="docs-heading" data-magellan-target="progress-bar"><a href="#progress-bar"></a>Progress Bar</h2>
|
||||||
|
<div class="success progress" role="progressbar" tabindex="0" aria-valuenow="25" aria-valuemin="0" aria-valuetext="25 percent" aria-valuemax="100">
|
||||||
|
<div class="progress-meter" style="width: 25%">
|
||||||
|
<p class="progress-meter-text">25%</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="warning progress">
|
||||||
|
<div class="progress-meter" style="width: 50%">
|
||||||
|
<p class="progress-meter-text">50%</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="alert progress">
|
||||||
|
<div class="progress-meter" style="width: 75%">
|
||||||
|
<p class="progress-meter-text">75%</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<p><strong>Native progress:</strong> As an alternative to our custom progress bar style, you can also opt to use the native <code><progress></code> element. It provides a more succinct way to create progress bars, but it's not supported in IE9, and some other older browsers. <a href="http://caniuse.com/#feat=progress">View <code><progress></code> element support.</a></p>
|
||||||
|
<progress max="100" value="75"></progress>
|
||||||
|
|
||||||
|
<br /><br />
|
||||||
|
<p><strong>Native meter:</strong> For the <em>extra</em> adventurous developers out there, we also provide styles for the <code><meter></code> element. What's the difference? <code><progress></code> represents a value that changes over time, like storage capacity. <code><meter></code> represents a value that fluctates around some optimum value. It also has <em>no</em> support in Internet Explorer, Mobile Safari, or Android 2. <a href="http://caniuse.com/#search=meter">View <code><meter></code> element support.</a></p>
|
||||||
|
<meter value="30" min="0" low="33" high="66" optimum="100" max="100"></meter>
|
||||||
|
<meter value="50" min="0" low="33" high="66" optimum="100" max="100"></meter>
|
||||||
|
<meter value="100" min="0" low="33" high="66" optimum="100" max="100"></meter>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Reveal -->
|
||||||
|
<h2 id="reveal" class="docs-heading" data-magellan-target="reveal"><a href="#reveal"></a>Reveal</h2>
|
||||||
|
<p><a data-open="exampleModal1">Click me for a basic modal</a></p>
|
||||||
|
<p><a data-toggle="exampleModal8">Click me for a full-screen modal</a></p>
|
||||||
|
|
||||||
|
<!-- Basic modal -->
|
||||||
|
<div class="reveal" id="exampleModal1" data-reveal>
|
||||||
|
<h2>This is a basic modal</h2>
|
||||||
|
<p class="lead">Using hipster ipsum for dummy text</p>
|
||||||
|
<p>Stumptown direct trade swag hella iPhone post-ironic. Before they sold out blog twee, quinoa forage pour-over microdosing deep v keffiyeh fanny pack. Occupy polaroid tilde, bitters vegan man bun gentrify meggings.</p>
|
||||||
|
<button class="close-button" data-close aria-label="Close reveal" type="button">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Full screen modal -->
|
||||||
|
<div class="full reveal" id="exampleModal8" data-reveal>
|
||||||
|
<h2>Full screen modal</h2>
|
||||||
|
<img src="https://placeimg.com/800/600/arch" alt="Intropsective Cage">
|
||||||
|
<button class="close-button" data-close aria-label="Close reveal" type="button">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Slider -->
|
||||||
|
<h2 id="slider" class="docs-heading" data-magellan-target="slider"><a href="#slider"></a>Slider</h2>
|
||||||
|
<div class="slider" data-slider data-initial-start='50' data-end='200'>
|
||||||
|
<span class="slider-handle" data-slider-handle role="slider" tabindex="1"></span>
|
||||||
|
<span class="slider-fill" data-slider-fill></span>
|
||||||
|
<input type="hidden">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="slider vertical" data-slider data-initial-start='25' data-end='200' data-vertical="true">
|
||||||
|
<span class="slider-handle" data-slider-handle role="slider" tabindex="1"></span>
|
||||||
|
<span class="slider-fill" data-slider-fill></span>
|
||||||
|
<input type="hidden">
|
||||||
|
</div>
|
||||||
|
<br /><br />
|
||||||
|
<p><strong>Native range slider:</strong> In Foundation 6.2, we introduced styles for <code><input type="range"></code>, the native HTML element for range sliders. It's not supported in every browser, namely IE9 and some older mobile browsers. <a href="http://caniuse.com/#feat=input-range">View browser support for the range input type.</a></p>
|
||||||
|
<input type="range" min="1" max="100" step="1">
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Switch -->
|
||||||
|
<h2 id="switch" class="docs-heading" data-magellan-target="switch"><a href="#switch"></a>Switch</h2>
|
||||||
|
<div class="switch tiny">
|
||||||
|
<input class="switch-input" id="tinySwitch" type="checkbox" name="exampleSwitch">
|
||||||
|
<label class="switch-paddle" for="tinySwitch">
|
||||||
|
<span class="show-for-sr">Tiny Sandwiches Enabled</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="switch small">
|
||||||
|
<input class="switch-input" id="smallSwitch" type="checkbox" name="exampleSwitch">
|
||||||
|
<label class="switch-paddle" for="smallSwitch">
|
||||||
|
<span class="show-for-sr">Small Portions Only</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="switch large">
|
||||||
|
<input class="switch-input" id="largeSwitch" type="checkbox" name="exampleSwitch">
|
||||||
|
<label class="switch-paddle" for="largeSwitch">
|
||||||
|
<span class="show-for-sr">Show Large Elephants</span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Table -->
|
||||||
|
<h2 id="table" class="docs-heading" data-magellan-target="table"><a href="#table"></a>Table</h2>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th width="200">Table Header</th>
|
||||||
|
<th>Table Header</th>
|
||||||
|
<th width="150">Table Header</th>
|
||||||
|
<th width="150">Table Header</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
<td>This is longer content Donec id elit non mi porta gravida at eget metus.</td>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
<td>Content Goes Here</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Tabs -->
|
||||||
|
<h2 id="tabs" class="docs-heading" data-magellan-target="tabs"><a href="#tabs"></a>Tabs</h2>
|
||||||
|
|
||||||
|
<ul class="tabs" data-responsive-accordion-tabs="accordion medium-tabs" id="example-tabs">
|
||||||
|
<li class="tabs-title is-active"><a href="#panel1" aria-selected="true">Tab 1</a></li>
|
||||||
|
<li class="tabs-title"><a href="#panel2">Tab 2</a></li>
|
||||||
|
<li class="tabs-title"><a href="#panel3">Tab 3</a></li>
|
||||||
|
<li class="tabs-title"><a href="#panel4">Tab 4</a></li>
|
||||||
|
<li class="tabs-title"><a href="#panel5">Tab 5</a></li>
|
||||||
|
<li class="tabs-title"><a href="#panel6">Tab 6</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="tabs-content" data-tabs-content="example-tabs">
|
||||||
|
<div class="tabs-panel is-active" id="panel1">
|
||||||
|
<p>One</p>
|
||||||
|
<p>Check me out! I'm a super cool Tab panel with text content! On medium-down screen sizes, this component will transform into an accordion.</p>
|
||||||
|
</div>
|
||||||
|
<div class="tabs-panel" id="panel2">
|
||||||
|
<p>Two</p>
|
||||||
|
<img class="thumbnail" src="http://placeimg.com/200/200/arch">
|
||||||
|
</div>
|
||||||
|
<div class="tabs-panel" id="panel3">
|
||||||
|
<p>Three</p>
|
||||||
|
<p>Check me out! I'm a super cool Tab panel with text content!</p>
|
||||||
|
</div>
|
||||||
|
<div class="tabs-panel" id="panel4">
|
||||||
|
<p>Four</p>
|
||||||
|
<img class="thumbnail" src="http://placeimg.com/200/200/arch">
|
||||||
|
</div>
|
||||||
|
<div class="tabs-panel" id="panel5">
|
||||||
|
<p>Five</p>
|
||||||
|
<p>Check me out! I'm a super cool Tab panel with text content!</p>
|
||||||
|
</div>
|
||||||
|
<div class="tabs-panel" id="panel6">
|
||||||
|
<p>Six</p>
|
||||||
|
<img class="thumbnail" src="http://placeimg.com/200/200/arch">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Thumbnail -->
|
||||||
|
<h2 id="thumbnail" class="docs-heading" data-magellan-target="thumbnail"><a href="#thumbnail"></a>Thumbnail</h2>
|
||||||
|
<div class="row">
|
||||||
|
<div class="small-4 columns">
|
||||||
|
<img class="thumbnail" src="http://placeimg.com/200/200/nature" alt="Placeholder image.">
|
||||||
|
</div>
|
||||||
|
<div class="small-4 columns">
|
||||||
|
<img class="thumbnail" src="http://placeimg.com/200/200/nature" alt="Placeholder image.">
|
||||||
|
</div>
|
||||||
|
<div class="small-4 columns">
|
||||||
|
<img class="thumbnail" src="http://placeimg.com/200/200/nature" alt="Placeholder image.">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Title Bar -->
|
||||||
|
<h2 id="title-bar" class="docs-heading" data-magellan-target="title-bar"><a href="#title-bar"></a>Title Bar</h2>
|
||||||
|
<div class="title-bar">
|
||||||
|
<div class="title-bar-left">
|
||||||
|
<button class="menu-icon" type="button"></button>
|
||||||
|
<span class="title-bar-title">FoundationPress</span>
|
||||||
|
</div>
|
||||||
|
<div class="title-bar-right">
|
||||||
|
<button class="menu-icon" type="button"></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Toggler -->
|
||||||
|
<h2 id="toggler" class="docs-heading" data-magellan-target="toggler"><a href="#toggler"></a>Toggler</h2>
|
||||||
|
<p><button class="button small primary" type="button" data-toggle="menuBar">Toggle width</button></p>
|
||||||
|
|
||||||
|
<ul class="menu" id="menuBar" data-toggler=".expanded">
|
||||||
|
<li><a href="#">One</a></li>
|
||||||
|
<li><a href="#">Two</a></li>
|
||||||
|
<li><a href="#">Three</a></li>
|
||||||
|
<li><a href="#">Four</a></li>
|
||||||
|
</ul>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Tooltip -->
|
||||||
|
<h2 id="tooltip" class="docs-heading" data-magellan-target="tooltip"><a href="#tooltip"></a>Tooltip</h2>
|
||||||
|
<p>The <span data-tooltip aria-haspopup="true" class="has-tip" data-disable-hover='false' tabindex=1 title="Fancy word for a beetle.">scarabaeus</span> hung quite clear of any branches, and, if allowed to fall, would have fallen at our feet. Legrand immediately took the scythe, and cleared with it a circular space, three or four yards in diameter, just beneath the insect, and, having accomplished this, ordered Jupiter to let go the string and come down from the tree.</p>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Top bar -->
|
||||||
|
<h2 id="top-bar" class="docs-heading" data-magellan-target="top-bar"><a href="#top-bar"></a>Top Bar</h2>
|
||||||
|
<div class="top-bar">
|
||||||
|
<div class="top-bar-left">
|
||||||
|
<ul class="dropdown menu" data-dropdown-menu>
|
||||||
|
<li class="menu-text">Site Title</li>
|
||||||
|
<li class="has-submenu">
|
||||||
|
<a href="#">One</a>
|
||||||
|
<ul class="submenu menu vertical" data-submenu>
|
||||||
|
<li><a href="#">One</a></li>
|
||||||
|
<li><a href="#">Two</a></li>
|
||||||
|
<li><a href="#">Three</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#">Two</a></li>
|
||||||
|
<li><a href="#">Three</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="top-bar-right">
|
||||||
|
<ul class="menu">
|
||||||
|
<li><input type="search" placeholder="Search"></li>
|
||||||
|
<li><button type="button" class="button">Search</button></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<!-- Visibility Classes -->
|
||||||
|
<h2 id="visibility-classes" class="docs-heading" data-magellan-target="visibility-classes"><a href="#visibility-classes"></a>Visibility classes</h2>
|
||||||
|
<div class="visibility-classes">
|
||||||
|
|
||||||
|
<p>You are on a small screen or larger.</p>
|
||||||
|
<p class="show-for-medium">You are on a medium screen or larger.</p>
|
||||||
|
<p class="show-for-large">You are on a large screen or larger.</p>
|
||||||
|
<p class="show-for-small-only">You are <em>definitely</em> on a small screen.</p>
|
||||||
|
<p class="show-for-medium-only">You are <em>definitely</em> on a medium screen.</p>
|
||||||
|
<p class="show-for-large-only">You are <em>definitely</em> on a large screen.</p>
|
||||||
|
|
||||||
|
<p class="hide-for-medium">You are <em>not</em> on a medium screen or larger.</p>
|
||||||
|
<p class="hide-for-large">You are <em>not</em> on a large screen or larger.</p>
|
||||||
|
<p class="hide-for-small-only">You are <em>definitely not</em> on a small screen.</p>
|
||||||
|
<p class="hide-for-medium-only">You are <em>definitely not</em> on a medium screen.</p>
|
||||||
|
<p class="hide-for-large-only">You are <em>definitely not</em> on a large screen.</p>
|
||||||
|
<p class="hide">Can't touch this.</p>
|
||||||
|
|
||||||
|
<p class="invisible">Can sort of touch this.</p>
|
||||||
|
|
||||||
|
<p class="show-for-landscape">You are in landscape orientation.</p>
|
||||||
|
<p class="show-for-portrait">You are in portrait orientation.</p>
|
||||||
|
|
||||||
|
<p class="show-for-sr">This text can only be read by a screen reader.</p>
|
||||||
|
<p>There's a line of text above this one, you just can't see it.</p>
|
||||||
|
|
||||||
|
<p aria-hidden="true">This text can be seen, but won't be read by a screen reader.</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<hr>
|
||||||
|
</article>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- On this page - sidebar nav container -->
|
||||||
|
<nav id="kitchen-sink-nav" class="kitchen-sink-nav" data-sticky-container>
|
||||||
|
<div class="docs-toc" data-sticky="sidebar" data-anchor="components">
|
||||||
|
<ul class="vertical menu docs-sub-menu" data-magellan>
|
||||||
|
<li class="docs-menu-title">On this page:</li>
|
||||||
|
<li><a href="#abide">Abide</a></li>
|
||||||
|
<li><a href="#accordion">Accordion</a></li>
|
||||||
|
<li><a href="#accordion-menu">Accordion Menu</a></li>
|
||||||
|
<li><a href="#badge">Badge</a></li>
|
||||||
|
<li><a href="#breadcrumbs">Breadcrumbs</a></li>
|
||||||
|
<li><a href="#button">Button</a></li>
|
||||||
|
<li><a href="#callout">Callout</a></li>
|
||||||
|
<li><a href="#cards">Cards</a></li>
|
||||||
|
<li><a href="#close-button">Close button</a></li>
|
||||||
|
<li><a href="#drilldown-menu">Drilldown Menu</a></li>
|
||||||
|
<li><a href="#dropdown-menu">Dropdown Menu</a></li>
|
||||||
|
<li><a href="#dropdown-pane">Dropdown Pane</a></li>
|
||||||
|
<li><a href="#equalizer">Equalizer</a></li>
|
||||||
|
<li><a href="#flex-video">Flex Video</a></li>
|
||||||
|
<li><a href="#forms">Forms</a></li>
|
||||||
|
<li><a href="#grid">Grid</a></li>
|
||||||
|
<li><a href="#label">Label</a></li>
|
||||||
|
<li><a href="#media-object">Media Object</a></li>
|
||||||
|
<li><a href="#menu">Menu</a></li>
|
||||||
|
<li><a href="#motion-ui">Motion UI</a></li>
|
||||||
|
<li><a href="#orbit">Orbit</a></li>
|
||||||
|
<li><a href="#pagination">Pagination</a></li>
|
||||||
|
<li><a href="#progress-bar">Progress Bar</a></li>
|
||||||
|
<li><a href="#reveal">Reveal</a></li>
|
||||||
|
<li><a href="#slider">Slider</a></li>
|
||||||
|
<li><a href="#switch">Switch</a></li>
|
||||||
|
<li><a href="#table">Table</a></li>
|
||||||
|
<li><a href="#tabs">Tabs</a></li>
|
||||||
|
<li><a href="#thumbnail">Thumbnail</a></li>
|
||||||
|
<li><a href="#title-bar">Title Bar</a></li>
|
||||||
|
<li><a href="#toggler">Toggler</a></li>
|
||||||
|
<li><a href="#tooltip">Tooltip</a></li>
|
||||||
|
<li><a href="#top-bar">Top Bar</a></li>
|
||||||
|
<li><a href="#visibility-classes">Visibility Classes</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<div class="entry-content">
|
||||||
|
<?php the_content(); ?>
|
||||||
|
</div>
|
||||||
|
</div><!-- Close main-grid -->
|
||||||
|
</div><!-- Close main-container -->
|
||||||
|
<?php endwhile; ?>
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
Template Name: Full Width
|
||||||
|
*/
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<?php get_template_part( 'template-parts/featured-image' ); ?>
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<main class="main-content-full-width">
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', 'page' ); ?>
|
||||||
|
<?php comments_template(); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
Template Name: Left Sidebar
|
||||||
|
*/
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<?php get_template_part( 'template-parts/featured-image' ); ?>
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid sidebar-left">
|
||||||
|
<main class="main-content">
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', 'page' ); ?>
|
||||||
|
<?php comments_template(); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
</main>
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying pages
|
||||||
|
*
|
||||||
|
* This is the template that displays all pages by default.
|
||||||
|
* Please note that this is the WordPress construct of pages and that
|
||||||
|
* other "pages" on your WordPress site will use a different template.
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<?php get_template_part( 'template-parts/featured-image' ); ?>
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<main class="main-content">
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', 'page' ); ?>
|
||||||
|
<?php comments_template(); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
</main>
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
get_footer();
|
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<phpunit
|
||||||
|
bootstrap="tests/bootstrap.php"
|
||||||
|
backupGlobals="false"
|
||||||
|
colors="true"
|
||||||
|
convertErrorsToExceptions="true"
|
||||||
|
convertNoticesToExceptions="true"
|
||||||
|
convertWarningsToExceptions="true"
|
||||||
|
>
|
||||||
|
<testsuites>
|
||||||
|
<testsuite>
|
||||||
|
<directory prefix="test-" suffix=".php">./tests/</directory>
|
||||||
|
<exclude>./tests/test-sample.php</exclude>
|
||||||
|
</testsuite>
|
||||||
|
</testsuites>
|
||||||
|
</phpunit>
|
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
|
@ -0,0 +1,46 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying search results pages.
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<main id="search-results" class="main-content">
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h1 class="entry-title"><?php _e( 'Search Results for', 'foundationpress' ); ?> "<?php echo get_search_query(); ?>"</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<?php if ( have_posts() ) : ?>
|
||||||
|
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', get_post_format() ); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
|
||||||
|
<?php else : ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', 'none' ); ?>
|
||||||
|
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
if ( function_exists( 'foundationpress_pagination' ) ) :
|
||||||
|
foundationpress_pagination();
|
||||||
|
elseif ( is_paged() ) :
|
||||||
|
?>
|
||||||
|
<nav id="post-nav">
|
||||||
|
<div class="post-previous"><?php next_posts_link( __( '← Older posts', 'foundationpress' ) ); ?></div>
|
||||||
|
<div class="post-next"><?php previous_posts_link( __( 'Newer posts →', 'foundationpress' ) ); ?></div>
|
||||||
|
</nav>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,19 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying search form
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
?>
|
||||||
|
|
||||||
|
<form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
|
||||||
|
<div class="input-group">
|
||||||
|
<input type="text" class="input-group-field" value="" name="s" id="s" aria-label="Search" placeholder="<?php
|
||||||
|
esc_attr_e( 'Search', 'foundationpress' ); ?>">
|
||||||
|
<div class="input-group-button">
|
||||||
|
<input type="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'foundationpress' ); ?>" class="button">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The sidebar containing the main widget area
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
?>
|
||||||
|
<aside class="sidebar">
|
||||||
|
<?php dynamic_sidebar( 'sidebar-widgets' ); ?>
|
||||||
|
</aside>
|
|
@ -0,0 +1,24 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* The template for displaying all single posts and attachments
|
||||||
|
*
|
||||||
|
* @package FoundationPress
|
||||||
|
* @since FoundationPress 1.0.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
get_header(); ?>
|
||||||
|
|
||||||
|
<?php get_template_part( 'template-parts/featured-image' ); ?>
|
||||||
|
<div class="main-container">
|
||||||
|
<div class="main-grid">
|
||||||
|
<main class="main-content">
|
||||||
|
<?php while ( have_posts() ) : the_post(); ?>
|
||||||
|
<?php get_template_part( 'template-parts/content', '' ); ?>
|
||||||
|
<?php the_post_navigation(); ?>
|
||||||
|
<?php comments_template(); ?>
|
||||||
|
<?php endwhile; ?>
|
||||||
|
</main>
|
||||||
|
<?php get_sidebar(); ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php get_footer();
|
|
@ -0,0 +1,54 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||||
|
width="270px" height="270px" viewBox="0 0 270 270" style="enable-background:new 0 0 270 270;" xml:space="preserve">
|
||||||
|
<style type="text/css">
|
||||||
|
.st0{opacity:0.2;}
|
||||||
|
.st1{fill:none;stroke:#3F5D69;stroke-width:0.5069;stroke-miterlimit:10;}
|
||||||
|
.st2{fill:#4F5764;}
|
||||||
|
.st3{fill:url(#SVGID_1_);}
|
||||||
|
.st4{fill:url(#SVGID_2_);}
|
||||||
|
.st5{fill:url(#SVGID_3_);}
|
||||||
|
.st6{fill:url(#SVGID_4_);}
|
||||||
|
</style>
|
||||||
|
<g class="st0">
|
||||||
|
<polyline class="st1" points="15.4,124.2 133.9,248.4 208.8,34.2 15.4,124.2 "/>
|
||||||
|
<polyline class="st1" points="220.2,158.5 137.4,17.4 248.8,115.6 219.4,161.2 "/>
|
||||||
|
<polyline class="st1" points="248.8,115.6 15.4,124.2 52.4,55.6 137.4,17.4 "/>
|
||||||
|
<g>
|
||||||
|
<circle class="st2" cx="248.8" cy="115.6" r="4.1"/>
|
||||||
|
<circle class="st2" cx="15.4" cy="124.2" r="4.6"/>
|
||||||
|
<circle class="st2" cx="137.4" cy="17.4" r="4.1"/>
|
||||||
|
<circle class="st2" cx="52.4" cy="55.6" r="3.3"/>
|
||||||
|
<circle class="st2" cx="133.9" cy="248.4" r="3.8"/>
|
||||||
|
<circle class="st2" cx="208.8" cy="34.2" r="4.7"/>
|
||||||
|
<circle class="st2" cx="219.4" cy="161.2" r="5.3"/>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g>
|
||||||
|
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="126.3543" y1="93.2575" x2="138.7467" y2="93.2575">
|
||||||
|
<stop offset="0" style="stop-color:#4F5764"/>
|
||||||
|
<stop offset="0.6682" style="stop-color:#293942"/>
|
||||||
|
<stop offset="1" style="stop-color:#111C21"/>
|
||||||
|
</linearGradient>
|
||||||
|
<rect x="126.4" y="80.3" class="st3" width="12.4" height="26"/>
|
||||||
|
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="96.7949" y1="187.5047" x2="114.2522" y2="97.1009">
|
||||||
|
<stop offset="0" style="stop-color:#D0D1D3"/>
|
||||||
|
<stop offset="0.5225" style="stop-color:#CDD2D1"/>
|
||||||
|
<stop offset="0.994" style="stop-color:#F2F2F2"/>
|
||||||
|
</linearGradient>
|
||||||
|
<rect x="97.4" y="97.1" class="st4" width="16.2" height="90.6"/>
|
||||||
|
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="80.9993" y1="93.2569" x2="126.3543" y2="93.2569">
|
||||||
|
<stop offset="0" style="stop-color:#4F5764"/>
|
||||||
|
<stop offset="0.6682" style="stop-color:#293942"/>
|
||||||
|
<stop offset="1" style="stop-color:#111C21"/>
|
||||||
|
</linearGradient>
|
||||||
|
<rect x="81" y="85.4" class="st5" width="45.4" height="15.7"/>
|
||||||
|
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="145.8713" y1="185.0645" x2="190.5812" y2="87.2338">
|
||||||
|
<stop offset="0" style="stop-color:#3D96D2"/>
|
||||||
|
<stop offset="1" style="stop-color:#069FB0"/>
|
||||||
|
</linearGradient>
|
||||||
|
<path class="st6" d="M181.1,81.2l-2,0.9v10.7l-8.6,5.7l-7.6-5.7V82.2l-1.4-0.7l-8.1,11.6v12.3l9.5,8.5v73.8h16.3v-74.2l9.8-8.9
|
||||||
|
V93.2L181.1,81.2z M171.2,182.4c-1.7,0-3-1.4-3-3c0-1.7,1.4-3,3-3c1.7,0,3,1.4,3,3C174.2,181,172.9,182.4,171.2,182.4z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue