grunterino

This commit is contained in:
James Koster 2014-10-01 19:33:49 +01:00
parent 3f3780a528
commit 67521cf396
17 changed files with 573 additions and 1810 deletions

5
.gitignore vendored
View file

@ -1 +1,6 @@
# Sass
.sass-cache

# Grunt
/node_modules/
/deploy/

24
.jshintrc Normal file
View file

@ -0,0 +1,24 @@
{
"boss": true,
"curly": true,
"eqeqeq": true,
"eqnull": true,
"es3": true,
"expr": true,
"immed": true,
"noarg": true,
"onevar": true,
"quotmark": "single",
"trailing": true,
"undef": true,
"unused": true,

"browser": true,

"globals": {
"_": false,
"Backbone": false,
"jQuery": false,
"wp": false
}
}

246
Gruntfile.js Normal file
View file

@ -0,0 +1,246 @@
/* jshint node:true */
module.exports = function( grunt ) {
'use strict';

grunt.initConfig({

// setting folder templates
dirs: {
wc_css: 'inc/woocommerce/css',
images: 'images',
js: 'js',
customizer_js: 'inc/customizer/js',
wc_js: 'inc/woocommerce/js'
},

// JavaScript linting with JSHint.
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'<%= dirs.js %>/*.js',
'!<%= dirs.js %>/*.min.js',
'<%= dirs.customizer_js %>/*.js',
'!<%= dirs.customizer_js %>/*.min.js',
'<%= dirs.wc_js %>/*.js',
'!<%= dirs.wc_js %>/*.min.js'
]
},

// Minify .js files.
uglify: {
options: {
preserveComments: 'some'
},
main: {
files: [{
expand: true,
cwd: '<%= dirs.js %>/',
src: [
'*.js',
'!*.min.js'
],
dest: '<%= dirs.js %>/',
ext: '.min.js'
}]
},
woocommerce: {
files: [{
expand: true,
cwd: '<%= dirs.wc_js %>/',
src: [
'*.js',
'!*.min.js'
],
dest: '<%= dirs.wc_js %>/',
ext: '.min.js'
}]
},
customizer: {
files: [{
expand: true,
cwd: '<%= dirs.customizer_js %>/',
src: [
'*.js',
'!*.min.js'
],
dest: '<%= dirs.customizer_js %>/',
ext: '.min.js'
}]
}
},

// Compile all .scss files.
sass: {
compile: {
options: {
sourcemap: 'none',
loadPath: require( 'node-bourbon' ).includePaths
},
files: [{
'style.css': 'style.scss',
'inc/woocommerce/css/bookings.css': 'inc/woocommerce/css/bookings.scss',
'inc/woocommerce/css/brands.css': 'inc/woocommerce/css/brands.scss',
'inc/woocommerce/css/wishlists.css': 'inc/woocommerce/css/wishlists.scss',
'inc/woocommerce/css/woocommerce.css': 'inc/woocommerce/css/woocommerce.scss',
}]
}
},

// Minify all .css files.
cssmin: {
minify: {
files: [{
'style.css': 'style.scss',
'inc/woocommerce/css/bookings.css': 'inc/woocommerce/css/bookings.scss',
'inc/woocommerce/css/brands.css': 'inc/woocommerce/css/brands.scss',
'inc/woocommerce/css/wishlists.css': 'inc/woocommerce/css/wishlists.scss',
'inc/woocommerce/css/woocommerce.css': 'inc/woocommerce/css/woocommerce.scss',
}]
}
},

// Watch changes for assets.
watch: {
css: {
files: [
'style.scss',
'<%= dirs.wc_css %>/*.scss'
],
tasks: [
'sass',
'cssmin'
]
},
js: {
files: [
// main js
'<%= dirs.js %>/*js',
'!<%= dirs.js %>/*.min.js',

// wc js
'<%= dirs.wc_js %>/*js',
'!<%= dirs.wc_js %>/*.min.js',

// customizer js
'<%= dirs.customizer_js %>/*js',
'!<%= dirs.customizer_js %>/*.min.js'
],
tasks: ['uglify']
}
},

// Generate POT files.
makepot: {
options: {
type: 'wp-theme',
domainPath: 'languages',
potHeaders: {
'report-msgid-bugs-to': 'https://github.com/woothemes/storefront/issues',
'language-team': 'LANGUAGE <EMAIL@ADDRESS>'
},
},
frontend: {
options: {
potFilename: 'storefront.pot',
processPot: function ( pot ) {
pot.headers['project-id-version'];
return pot;
}
}
},
},

// Check textdomain errors.
// @todo
checktextdomain: {
options:{
text_domain: 'storefront',
keywords: [
'__:1,2d',
'_e:1,2d',
'_x:1,2c,3d',
'esc_html__:1,2d',
'esc_html_e:1,2d',
'esc_html_x:1,2c,3d',
'esc_attr__:1,2d',
'esc_attr_e:1,2d',
'esc_attr_x:1,2c,3d',
'_ex:1,2c,3d',
'_n:1,2,4d',
'_nx:1,2,4c,5d',
'_n_noop:1,2,3d',
'_nx_noop:1,2,3c,4d'
]
},
files: {
src: [
'**/*.php', // Include all files
'!node_modules/**' // Exclude node_modules/
],
expand: true
}
},

// Copy files to deploy.
copy: {
deploy: {
src: [
'**',
'!.*',
'!*.md',
'!.*/**',
'.htaccess',
'!Gruntfile.js',
'!sftp-config.json',
'!package.json',
'!node_modules/**',
],
dest: 'deploy',
expand: true,
dot: true
}
},

// Clean the directory.
clean: {
deploy: {
src: [ 'deploy' ]
}
}
});

// Load NPM tasks to be used here
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
grunt.loadNpmTasks( 'grunt-contrib-sass' );
grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-contrib-copy' );
grunt.loadNpmTasks( 'grunt-contrib-clean' );
grunt.loadNpmTasks( 'grunt-wp-i18n' );
grunt.loadNpmTasks( 'grunt-checktextdomain' );

// Register tasks
grunt.registerTask( 'default', [
'css',
'uglify'
]);

grunt.registerTask( 'css', [
'sass',
'cssmin'
]);

grunt.registerTask( 'dev', [
'default',
'makepot'
]);

grunt.registerTask( 'deploy', [
'clean:deploy',
'copy:deploy'
]);
};

0
cwd Normal file
View file

0
dest Normal file
View file

View file

@ -1 +1 @@
!function($){wp.customize("blogname",function(t){t.bind(function(t){$(".site-title a").text(t)})}),wp.customize("blogdescription",function(t){t.bind(function(t){$(".site-description").text(t)})}),wp.customize("storefront_text_color",function(t){t.bind(function(t){$("body, .widget-area .widget a").css("color",t)})}),wp.customize("storefront_heading_color",function(t){t.bind(function(t){$(".site-content h1, .site-content h2, .site-content h3, .site-content h4, .site-content h5, .site-content h6").css("color",t),$(".hentry .entry-header").css("border-color",t)})}),wp.customize("storefront_header_text_color",function(t){t.bind(function(t){$("p.site-description, ul.menu li.current-menu-item > a, .secondary-navigation ul.menu li a, .secondary-navigation ul.menu a, .site-header-cart .widget_shopping_cart, .site-header .product_list_widget li .quantity").css("color",t)})}),wp.customize("storefront_header_link_color",function(t){t.bind(function(t){$(".main-navigation ul li a, .site-title a, a.cart-contents, .site-header-cart .widget_shopping_cart a").css("color",t)})}),wp.customize("storefront_header_background_color",function(t){t.bind(function(t){$(".site-header, .main-navigation ul ul, .secondary-navigation ul ul, .main-navigation ul.menu > li.menu-item-has-children:after, .site-header-cart .widget_shopping_cart, .secondary-navigation ul.menu ul").css("background-color",t)})}),wp.customize("storefront_footer_heading_color",function(t){t.bind(function(t){$(".site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6").css("color",t)})}),wp.customize("storefront_footer_text_color",function(t){t.bind(function(t){$(".site-footer").css("color",t)})}),wp.customize("storefront_footer_link_color",function(t){t.bind(function(t){$(".site-footer a:not(.button)").css("color",t)})}),wp.customize("storefront_footer_background_color",function(t){t.bind(function(t){$(".site-footer").css("background-color",t)})})}(jQuery);
!function(a){wp.customize("blogname",function(b){b.bind(function(b){a(".site-title a").text(b)})}),wp.customize("blogdescription",function(b){b.bind(function(b){a(".site-description").text(b)})}),wp.customize("storefront_text_color",function(b){b.bind(function(b){a("body, .widget-area .widget a").css("color",b)})}),wp.customize("storefront_heading_color",function(b){b.bind(function(b){a(".site-content h1, .site-content h2, .site-content h3, .site-content h4, .site-content h5, .site-content h6").css("color",b),a(".hentry .entry-header").css("border-color",b)})}),wp.customize("storefront_header_text_color",function(b){b.bind(function(b){a("p.site-description, ul.menu li.current-menu-item > a, .secondary-navigation ul.menu li a, .secondary-navigation ul.menu a, .site-header-cart .widget_shopping_cart, .site-header .product_list_widget li .quantity").css("color",b)})}),wp.customize("storefront_header_link_color",function(b){b.bind(function(b){a(".main-navigation ul li a, .site-title a, a.cart-contents, .site-header-cart .widget_shopping_cart a").css("color",b)})}),wp.customize("storefront_header_background_color",function(b){b.bind(function(b){a(".site-header, .main-navigation ul ul, .secondary-navigation ul ul, .main-navigation ul.menu > li.menu-item-has-children:after, .site-header-cart .widget_shopping_cart, .secondary-navigation ul.menu ul").css("background-color",b)})}),wp.customize("storefront_footer_heading_color",function(b){b.bind(function(b){a(".site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6").css("color",b)})}),wp.customize("storefront_footer_text_color",function(b){b.bind(function(b){a(".site-footer").css("color",b)})}),wp.customize("storefront_footer_link_color",function(b){b.bind(function(b){a(".site-footer a:not(.button)").css("color",b)})}),wp.customize("storefront_footer_background_color",function(b){b.bind(function(b){a(".site-footer").css("background-color",b)})})}(jQuery);

View file

@ -1,74 +1 @@
/**
* WooCommerce Bookings
*/
/**
* Imports
*/
#wc-bookings-booking-form {
border: 0;
padding: 0; }
#wc-bookings-booking-form .wc-bookings-booking-cost {
margin: 0;
border: 0;
background: rgba(0, 0, 0, 0.05); }
#wc-bookings-booking-form .wc-bookings-date-picker-date-fields input {
margin-bottom: 0; }
#wc-bookings-booking-form .wc-bookings-date-picker-date-fields label {
width: 20%; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker-header {
border: 0;
background-color: #424a4c;
background-image: none; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-widget-content {
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
background: none; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev,
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next {
background-color: rgba(0, 0, 0, 0.1) !important; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker th {
background: rgba(0, 0, 0, 0.1);
border: 0;
color: #424a4c; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td {
border: 0; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-state-disabled {
background: none; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-state-disabled .ui-state-default {
background-color: rgba(0, 0, 0, 0.1);
color: #424a4c; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a {
text-shadow: none;
background-color: #a46497 !important; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a:hover {
background-color: #a46497 !important; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.bookable a.ui-state-active {
box-shadow: inset 0 0 0 1.618em rgba(0, 0, 0, 0.1); }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day, #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-today {
background-color: rgba(0, 0, 0, 0.1) !important; }
#wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a, #wc-bookings-booking-form .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-today a {
background-color: rgba(0, 0, 0, 0.1) !important; }
#wc-bookings-booking-form .wc-bookings-date-picker-choose-date {
color: #a46497; }
#wc-bookings-booking-form .block-picker {
text-align: left; }
#wc-bookings-booking-form .block-picker li a {
border: 0 !important;
padding: .236em .53em;
display: inline-block;
text-align: center;
color: #fff;
background-color: #424a4c; }
#wc-bookings-booking-form .block-picker li a:hover {
color: #fff;
background-color: #a46497;
text-decoration: none;
border: 0; }
#wc-bookings-booking-form .block-picker li a.selected {
background-color: #a46497;
color: #fff; }

.product-type-booking form.cart {
padding-left: 0;
padding-right: 0; }
#wc-bookings-booking-form{padding:0;.wc-bookings-booking-cost{margin:0;border:0;background:rgba(0,0,0,.05)}.wc-bookings-date-picker-date-fields{input{margin-bottom:0}label{width:20%}.wc-bookings-date-picker{.ui-datepicker-header{border:0;background-color:$color_body;background-image:none}.ui-widget-content{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;background:0 0}.ui-datepicker{.ui-datepicker-prev,.ui-datepicker-next{background-color:rgba(0,0,0,.1)!important}th{background:rgba(0,0,0,.1);border:0;color:$color_body}td{border:0;&.ui-state-disabled{background:0 0;.ui-state-default{background-color:rgba(0,0,0,.1);color:$color_body}&.bookable{a{text-shadow:none;background-color:$color_links!important;&:hover{background-color:$color_links!important}&.ui-state-active{box-shadow:inset 0 0 0 1.618em rgba(0,0,0,.1)}&.ui-datepicker-current-day,&.ui-datepicker-today{background-color:rgba(0,0,0,.1)!important;a{background-color:rgba(0,0,0,.1)!important}.wc-bookings-date-picker-choose-date{color:$color_links}.block-picker{li{a{border:0!important;padding:.236em .53em;display:inline-block;text-align:center;color:#fff;background-color:$color_body;&:hover{color:#fff;background-color:$color_links;text-decoration:none;border:0}&.selected{background-color:$color_links;color:#fff}.product-type-booking{form.cart{padding-left:0;padding-right:0}

View file

@ -6,9 +6,9 @@
* Imports
*/
@import 'bourbon';
@import '../../../sass/settings';
@import '../../../sass/mixins';
@import '../../../sass/gridset';
@import '../../../sass/modules/variables';
@import '../../../sass/modules/mixins';
@import '../../../sass/vendor/gridset';

#wc-bookings-booking-form {
border: 0;

View file

@ -1,21 +1 @@
/**
* WooCommerce Brands
*/
/**
* Imports
*/
.header-widget-region .widget_brand_thumbnails ul.brand-thumbnails {
text-align: center; }
.header-widget-region .widget_brand_thumbnails ul.brand-thumbnails:after {
content: "";
display: table;
clear: both; }
.header-widget-region .widget_brand_thumbnails ul.brand-thumbnails li {
display: inline-block;
width: auto !important;
float: none !important;
margin-bottom: 0 !important; }
.header-widget-region .widget_brand_thumbnails ul.brand-thumbnails li img {
max-height: 16px;
width: auto;
display: block; }
.header-widget-region{.widget_brand_thumbnails{ul.brand-thumbnails{@include clearfix;text-align:center;li{display:inline-block;width:auto!important;float:none!important;margin-bottom:0!important;img{max-height:16px;display:block}

View file

@ -1,50 +1 @@
/**
* WooCommerce Wishlists
*/
/**
* Imports
*/
#wl-wrapper.wl-button-wrap {
padding: 1.618em 0 0 0; }

.wl-add-link {
padding-left: 0 !important;
background: none !important; }
.wl-add-link:before {
font-family: "FontAwesome";
content: "\f004";
margin-right: .53em;
font-weight: 400; }

#wl-wrapper .wl-tabs {
border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important; }
#wl-wrapper .wl-tabs > li {
border-bottom: 0; }
#wl-wrapper .wl-tabs > li > a {
padding: 1em 1.387em;
border: 0 !important;
border-top-left-radius: 0;
border-top-right-radius: 0;
background-color: transparent !important; }
#wl-wrapper .wl-tabs > li.active a {
box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1); }
#wl-wrapper .wl-table td {
padding: .857em 1.387em !important; }
#wl-wrapper .wl-table td:first-child {
padding-left: 1.387em !important; }
#wl-wrapper .wl-meta-share,
#wl-wrapper .wl-share-url {
border-bottom-color: rgba(0, 0, 0, 0.1); }

.wl-tab-wrap ul.tabs,
.wl-tab-wrap .panel {
width: 100%;
margin: 0; }
.wl-tab-wrap ul.tabs li:after {
display: none !important; }

.button.wl-create-new:before {
font-family: "FontAwesome";
content: "\f067";
margin-right: .53em;
font-weight: 400; }
#wl-wrapper.wl-button-wrap{padding:1.618em 0 0}.wl-add-link{padding-left:0!important;background:none!important;&:before{font-family:FontAwesome;content:"\f004";margin-right:.53em;font-weight:400}#wl-wrapper{.wl-tabs{border-bottom:1px solid $color_border!important;>li{border-bottom:0;>a{padding:1em 1.387em;border:0!important;@include border-top-radius(0);background-color:transparent!important}&.active{a{box-shadow:inset 0 -3px 0 rgba(0,0,0,.1)}.wl-table{td{padding:.857em 1.387em!important;&:first-child{padding-left:1.387em!important}.wl-meta-share,.wl-share-url{border-bottom-color:$color_border}.wl-tab-wrap{ul.tabs,.panel{width:100%;margin:0}ul.tabs{li{&:after{display:none!important}.button.wl-create-new{&:before{font-family:FontAwesome;content:"\f067";margin-right:.53em;font-weight:400}

File diff suppressed because one or more lines are too long

View file

@ -1 +1 @@
!function(){var e,n,a;if(e=document.getElementById("site-navigation"),e&&(n=e.getElementsByTagName("button")[0],"undefined"!=typeof n)){if(a=e.getElementsByTagName("ul")[0],"undefined"==typeof a)return void(n.style.display="none");-1===a.className.indexOf("nav-menu")&&(a.className+=" nav-menu"),n.onclick=function(){-1!==e.className.indexOf("toggled")?e.className=e.className.replace(" toggled",""):e.className+=" toggled"}}}();
!function(){var a,b,c;if(a=document.getElementById("site-navigation"),a&&(b=a.getElementsByTagName("button")[0],"undefined"!=typeof b)){if(c=a.getElementsByTagName("ul")[0],"undefined"==typeof c)return void(b.style.display="none");-1===c.className.indexOf("nav-menu")&&(c.className+=" nav-menu"),b.onclick=function(){-1!==a.className.indexOf("toggled")?a.className=a.className.replace(" toggled",""):a.className+=" toggled"}}}();

View file

@ -1 +1 @@
!function(){var e=navigator.userAgent.toLowerCase().indexOf("webkit")>-1,t=navigator.userAgent.toLowerCase().indexOf("opera")>-1,n=navigator.userAgent.toLowerCase().indexOf("msie")>-1;(e||t||n)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var e=document.getElementById(location.hash.substring(1));e&&(/^(?:a|select|input|button|textarea)$/i.test(e.tagName)||(e.tabIndex=-1),e.focus())},!1)}();
!function(){var a=navigator.userAgent.toLowerCase().indexOf("webkit")>-1,b=navigator.userAgent.toLowerCase().indexOf("opera")>-1,c=navigator.userAgent.toLowerCase().indexOf("msie")>-1;(a||b||c)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var a=document.getElementById(location.hash.substring(1));a&&(/^(?:a|select|input|button|textarea)$/i.test(a.tagName)||(a.tabIndex=-1),a.focus())},!1)}();

View file

@ -3,501 +3,588 @@
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: http://wordpress.org/tag/storefront\n"
"POT-Creation-Date: 2014-09-14 11:36:44+00:00\n"
"Report-Msgid-Bugs-To: https://github.com/woothemes/storefront/issues\n"
"POT-Creation-Date: 2014-10-01 18:19:44+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
"X-Generator: grunt-wp-i18n 0.4.8\n"

#: 404.php:15
#: 404.php:15 deploy/404.php:15
msgid "Oops! That page can&rsquo;t be found."
msgstr ""

#: 404.php:19
msgid "It looks like nothing was found at this location. Maybe try one of the links below or a search?"
#: 404.php:19 deploy/404.php:19
msgid ""
"It looks like nothing was found at this location. Maybe try one of the "
"links below or a search?"
msgstr ""

#: 404.php:27
#: 404.php:27 deploy/404.php:27
msgid "Most Used Categories"
msgstr ""

#: 404.php:43
#: 404.php:43 deploy/404.php:43
msgid "Try looking in the monthly archives."
msgstr ""

#: archive.php:27
#: archive.php:27 deploy/archive.php:27
msgid "Author: %s"
msgstr ""

#: archive.php:30
#: archive.php:30 deploy/archive.php:30
msgid "Day: %s"
msgstr ""

#: archive.php:33
#: archive.php:33 deploy/archive.php:33
msgid "Month: %s"
msgstr ""

#: archive.php:33
msgctxt "monthly archives date format"
msgid "F Y"
msgstr ""

#: archive.php:36
#: archive.php:36 deploy/archive.php:36
msgid "Year: %s"
msgstr ""

#: archive.php:36
msgctxt "yearly archives date format"
msgid "Y"
msgstr ""

#: archive.php:39
#: archive.php:39 deploy/archive.php:39
msgid "Asides"
msgstr ""

#: archive.php:42
#: archive.php:42 deploy/archive.php:42
msgid "Galleries"
msgstr ""

#: archive.php:45
#: archive.php:45 deploy/archive.php:45
msgid "Images"
msgstr ""

#: archive.php:48
#: archive.php:48 deploy/archive.php:48
msgid "Videos"
msgstr ""

#: archive.php:51
#: archive.php:51 deploy/archive.php:51
msgid "Quotes"
msgstr ""

#: archive.php:54
#: archive.php:54 deploy/archive.php:54
msgid "Links"
msgstr ""

#: archive.php:57
#: archive.php:57 deploy/archive.php:57
msgid "Statuses"
msgstr ""

#: archive.php:60
#: archive.php:60 deploy/archive.php:60
msgid "Audios"
msgstr ""

#: archive.php:63
#: archive.php:63 deploy/archive.php:63
msgid "Chats"
msgstr ""

#: archive.php:66
#: archive.php:66 deploy/archive.php:66
msgid "Archives"
msgstr ""

#: comments.php:26
msgctxt "comments title"
msgid "One thought on &ldquo;%2$s&rdquo;"
msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
msgstr[0] ""
msgstr[1] ""

#: comments.php:33 comments.php:51
#: comments.php:33 comments.php:51 deploy/comments.php:33
#: deploy/comments.php:51
msgid "Comment navigation"
msgstr ""

#: comments.php:34 comments.php:52
#: comments.php:34 comments.php:52 deploy/comments.php:34
#: deploy/comments.php:52
msgid "&larr; Older Comments"
msgstr ""

#: comments.php:35 comments.php:53
#: comments.php:35 comments.php:53 deploy/comments.php:35
#: deploy/comments.php:53
msgid "Newer Comments &rarr;"
msgstr ""

#: comments.php:63
#: comments.php:63 deploy/comments.php:63
msgid "Comments are closed."
msgstr ""

#: content-none.php:13
#: content-none.php:13 deploy/content-none.php:13
msgid "Nothing Found"
msgstr ""

#: content-none.php:19
#: content-none.php:19 deploy/content-none.php:19
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
msgstr ""

#: content-none.php:23
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
#: content-none.php:23 deploy/content-none.php:23
msgid ""
"Sorry, but nothing matched your search terms. Please try again with some "
"different keywords."
msgstr ""

#: content-none.php:28
msgid "It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help."
#: content-none.php:28 deploy/content-none.php:28
msgid ""
"It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps "
"searching can help."
msgstr ""

#: header.php:23
#: deploy/header.php:23 header.php:23
msgid "Skip to content"
msgstr ""

#: inc/admin/welcome-screen.php:82
msgid "Awesome! You've decided to use Storefront to enrich your WooCommerce store design."
#: deploy/inc/admin/welcome-screen.php:82 inc/admin/welcome-screen.php:82
msgid ""
"Awesome! You've decided to use Storefront to enrich your WooCommerce store "
"design."
msgstr ""

#: inc/admin/welcome-screen.php:83
msgid "Whether you're a store owner, WordPress developer, or both - we hope you enjoy Storefront's deep integration with WooCommerce core (including several popular WooCommerce extensions), plus the flexible design and extensible codebase that this theme provides."
#: deploy/inc/admin/welcome-screen.php:83 inc/admin/welcome-screen.php:83
msgid ""
"Whether you're a store owner, WordPress developer, or both - we hope you "
"enjoy Storefront's deep integration with WooCommerce core (including "
"several popular WooCommerce extensions), plus the flexible design and "
"extensible codebase that this theme provides."
msgstr ""

#: inc/admin/welcome-screen.php:104
#: deploy/inc/admin/welcome-screen.php:104 inc/admin/welcome-screen.php:104
msgid "Who are WooThemes?"
msgstr ""

#: inc/admin/welcome-screen.php:105
msgid "WooCommerce creators WooThemes is an international team of WordPress superstars building products for a passionate community of hundreds of thousands of users."
#: deploy/inc/admin/welcome-screen.php:105 inc/admin/welcome-screen.php:105
msgid ""
"WooCommerce creators WooThemes is an international team of WordPress "
"superstars building products for a passionate community of hundreds of "
"thousands of users."
msgstr ""

#: inc/admin/welcome-screen.php:110
#: deploy/inc/admin/welcome-screen.php:110 inc/admin/welcome-screen.php:110
msgid "What is WooCommerce?"
msgstr ""

#: inc/admin/welcome-screen.php:111
msgid "WooCommerce is the most popular WordPress eCommerce plugin. Packed full of intuitive features and surrounded by a thriving community - it's the perfect solution for building an online store with WordPress."
#: deploy/inc/admin/welcome-screen.php:111 inc/admin/welcome-screen.php:111
msgid ""
"WooCommerce is the most popular WordPress eCommerce plugin. Packed full of "
"intuitive features and surrounded by a thriving community - it's the "
"perfect solution for building an online store with WordPress."
msgstr ""

#: inc/admin/welcome-screen.php:112
#: deploy/inc/admin/welcome-screen.php:112 inc/admin/welcome-screen.php:112
msgid "Download & Install WooCommerce"
msgstr ""

#: inc/admin/welcome-screen.php:113
#: deploy/inc/admin/welcome-screen.php:113 inc/admin/welcome-screen.php:113
msgid "View WooCommerce Documentation"
msgstr ""

#: inc/admin/welcome-screen.php:118
#: deploy/inc/admin/welcome-screen.php:118 inc/admin/welcome-screen.php:118
msgid "Can I Contribute?"
msgstr ""

#: inc/admin/welcome-screen.php:119
msgid "Found a bug? Want to contribute a patch or create a new feature? GitHub is the place to go! Please send any pull requests to the latest develop branch, but please remember that GitHub is for code, not support."
#: deploy/inc/admin/welcome-screen.php:119 inc/admin/welcome-screen.php:119
msgid ""
"Found a bug? Want to contribute a patch or create a new feature? GitHub is "
"the place to go! Please send any pull requests to the latest develop "
"branch, but please remember that GitHub is for code, not support."
msgstr ""

#: inc/admin/welcome-screen.php:120
#: deploy/inc/admin/welcome-screen.php:120 inc/admin/welcome-screen.php:120
msgid "Storefront at GitHub"
msgstr ""

#: inc/admin/welcome-screen.php:141
#: deploy/inc/admin/welcome-screen.php:141 inc/admin/welcome-screen.php:141
msgid "Using Storefront"
msgstr ""

#: inc/admin/welcome-screen.php:142
msgid "We've purposely kept Storefront lean & mean so configuration is a breeze. Here are some common theme-setup tasks:"
#: deploy/inc/admin/welcome-screen.php:142 inc/admin/welcome-screen.php:142
msgid ""
"We've purposely kept Storefront lean & mean so configuration is a breeze. "
"Here are some common theme-setup tasks:"
msgstr ""

#: inc/admin/welcome-screen.php:146 inc/admin/welcome-screen.php:149
#: deploy/inc/admin/welcome-screen.php:146
#: deploy/inc/admin/welcome-screen.php:149 inc/admin/welcome-screen.php:146
#: inc/admin/welcome-screen.php:149
msgid "Install WooCommerce"
msgstr ""

#: inc/admin/welcome-screen.php:147
msgid "Although Storefront works fine as a standard WordPress theme, it really shines when used for an online store. Install WooCommerce and start selling now."
#: deploy/inc/admin/welcome-screen.php:147 inc/admin/welcome-screen.php:147
msgid ""
"Although Storefront works fine as a standard WordPress theme, it really "
"shines when used for an online store. Install WooCommerce and start selling "
"now."
msgstr ""

#: inc/admin/welcome-screen.php:152
#: deploy/inc/admin/welcome-screen.php:152 inc/admin/welcome-screen.php:152
msgid "Configure menu locations"
msgstr ""

#: inc/admin/welcome-screen.php:153
msgid "Storefront includes two menu locations for primary and secondary navigation. The primary navigation is perfect for your key pages like the shop and product categories. The secondary navigation is better suited to lower traffic pages such as terms and conditions."
#: deploy/inc/admin/welcome-screen.php:153 inc/admin/welcome-screen.php:153
msgid ""
"Storefront includes two menu locations for primary and secondary "
"navigation. The primary navigation is perfect for your key pages like the "
"shop and product categories. The secondary navigation is better suited to "
"lower traffic pages such as terms and conditions."
msgstr ""

#: inc/admin/welcome-screen.php:154
#: deploy/inc/admin/welcome-screen.php:154 inc/admin/welcome-screen.php:154
msgid "Configure menus"
msgstr ""

#: inc/admin/welcome-screen.php:156
#: deploy/inc/admin/welcome-screen.php:156 inc/admin/welcome-screen.php:156
msgid "Create a color scheme"
msgstr ""

#: inc/admin/welcome-screen.php:157
msgid "Using the WordPress Customizer you can tweak Storefront's appearance to match your brand."
#: deploy/inc/admin/welcome-screen.php:157 inc/admin/welcome-screen.php:157
msgid ""
"Using the WordPress Customizer you can tweak Storefront's appearance to "
"match your brand."
msgstr ""

#: inc/admin/welcome-screen.php:158
#: deploy/inc/admin/welcome-screen.php:158 inc/admin/welcome-screen.php:158
msgid "Open the Customizer"
msgstr ""

#: inc/admin/welcome-screen.php:162
#: deploy/inc/admin/welcome-screen.php:162 inc/admin/welcome-screen.php:162
msgid "Configure homepage template"
msgstr ""

#: inc/admin/welcome-screen.php:163
msgid "Storefront includes a homepage template that displays a selection of products from your store."
#: deploy/inc/admin/welcome-screen.php:163 inc/admin/welcome-screen.php:163
msgid ""
"Storefront includes a homepage template that displays a selection of "
"products from your store."
msgstr ""

#: inc/admin/welcome-screen.php:164
msgid "To set this up you will need to create a new page and assign the \"Homepage\" template to it. You can then set that as a static homepage in the %sReading%s settings."
#: deploy/inc/admin/welcome-screen.php:164 inc/admin/welcome-screen.php:164
msgid ""
"To set this up you will need to create a new page and assign the "
"\"Homepage\" template to it. You can then set that as a static homepage in "
"the %sReading%s settings."
msgstr ""

#: inc/admin/welcome-screen.php:165
msgid "Once set up you can toggle and re-order the homepage components using the %sHomepage Control%s plugin."
#: deploy/inc/admin/welcome-screen.php:165 inc/admin/welcome-screen.php:165
msgid ""
"Once set up you can toggle and re-order the homepage components using the "
"%sHomepage Control%s plugin."
msgstr ""

#: inc/admin/welcome-screen.php:167
#: deploy/inc/admin/welcome-screen.php:167 inc/admin/welcome-screen.php:167
msgid "Add your logo"
msgstr ""

#: inc/admin/welcome-screen.php:168
#: deploy/inc/admin/welcome-screen.php:168 inc/admin/welcome-screen.php:168
msgid "Activate the %sSite Logo%s plugin to enable a custom logo option."
msgstr ""

#: inc/admin/welcome-screen.php:170 inc/admin/welcome-screen.php:172
#: deploy/inc/admin/welcome-screen.php:170
#: deploy/inc/admin/welcome-screen.php:172 inc/admin/welcome-screen.php:170
#: inc/admin/welcome-screen.php:172
msgid "View documentation"
msgstr ""

#: inc/admin/welcome-screen.php:171
msgid "You can read detailed information on Storefronts features and how to develop on top of it in the documentation."
#: deploy/inc/admin/welcome-screen.php:171 inc/admin/welcome-screen.php:171
msgid ""
"You can read detailed information on Storefronts features and how to "
"develop on top of it in the documentation."
msgstr ""

#: inc/admin/welcome-screen.php:188
#: deploy/inc/admin/welcome-screen.php:188 inc/admin/welcome-screen.php:188
msgid "Enhance your site"
msgstr ""

#: inc/admin/welcome-screen.php:191
msgid "Below you will find a selection of hand-picked WooCommerce and Storefront extensions that could help improve your online store. Each WooCommerce extension integrates seamlessly with Storefront for enhanced performance."
#: deploy/inc/admin/welcome-screen.php:191 inc/admin/welcome-screen.php:191
msgid ""
"Below you will find a selection of hand-picked WooCommerce and Storefront "
"extensions that could help improve your online store. Each WooCommerce "
"extension integrates seamlessly with Storefront for enhanced performance."
msgstr ""

#: inc/admin/welcome-screen.php:195
#: deploy/inc/admin/welcome-screen.php:195 inc/admin/welcome-screen.php:195
msgid "WooCommerce Extensions"
msgstr ""

#: inc/admin/welcome-screen.php:197
#: deploy/inc/admin/welcome-screen.php:197 inc/admin/welcome-screen.php:197
msgid "WooCommerce Bookings"
msgstr ""

#: inc/admin/welcome-screen.php:198 inc/admin/welcome-screen.php:208
msgid "Allows you to sell your time or date based bookings, adding a new product type to your WooCommerce site. Perfect for those wanting to offer appointments, services or rentals."
#: deploy/inc/admin/welcome-screen.php:198
#: deploy/inc/admin/welcome-screen.php:208 inc/admin/welcome-screen.php:198
#: inc/admin/welcome-screen.php:208
msgid ""
"Allows you to sell your time or date based bookings, adding a new product "
"type to your WooCommerce site. Perfect for those wanting to offer "
"appointments, services or rentals."
msgstr ""

#: inc/admin/welcome-screen.php:199 inc/admin/welcome-screen.php:204
#: inc/admin/welcome-screen.php:209
#: deploy/inc/admin/welcome-screen.php:199
#: deploy/inc/admin/welcome-screen.php:204
#: deploy/inc/admin/welcome-screen.php:209 inc/admin/welcome-screen.php:199
#: inc/admin/welcome-screen.php:204 inc/admin/welcome-screen.php:209
msgid "Buy now"
msgstr ""

#: inc/admin/welcome-screen.php:202
#: deploy/inc/admin/welcome-screen.php:202 inc/admin/welcome-screen.php:202
msgid "WooCommerce Product Gallery Slider"
msgstr ""

#: inc/admin/welcome-screen.php:203
msgid "The Product Gallery Slider is a nifty extension which transforms your product galleries into a fully responsive, jQuery powered slideshow."
#: deploy/inc/admin/welcome-screen.php:203 inc/admin/welcome-screen.php:203
msgid ""
"The Product Gallery Slider is a nifty extension which transforms your "
"product galleries into a fully responsive, jQuery powered slideshow."
msgstr ""

#: inc/admin/welcome-screen.php:207
#: deploy/inc/admin/welcome-screen.php:207 inc/admin/welcome-screen.php:207
msgid "WooCommerce Wishlists"
msgstr ""

#: inc/admin/welcome-screen.php:214
#: deploy/inc/admin/welcome-screen.php:214 inc/admin/welcome-screen.php:214
msgid "Storefront Extensions"
msgstr ""

#: inc/admin/welcome-screen.php:216
#: deploy/inc/admin/welcome-screen.php:216 inc/admin/welcome-screen.php:216
msgid "Storefront Designer - Coming soon"
msgstr ""

#: inc/admin/welcome-screen.php:217
msgid "Adds a bunch of additional appearance settings allowing you to further tweak and perfect your Storefront design by changing the header layout, button styles, typographical schemes/scales and more."
#: deploy/inc/admin/welcome-screen.php:217 inc/admin/welcome-screen.php:217
msgid ""
"Adds a bunch of additional appearance settings allowing you to further "
"tweak and perfect your Storefront design by changing the header layout, "
"button styles, typographical schemes/scales and more."
msgstr ""

#: inc/admin/welcome-screen.php:220
#: deploy/inc/admin/welcome-screen.php:220 inc/admin/welcome-screen.php:220
msgid "Storefront WooCommerce Customiser - Coming soon"
msgstr ""

#: inc/admin/welcome-screen.php:221
msgid "Gives you further control over the look and feel of your shop. Change the product archive and single layouts, toggle various shop components, enable a distraction free checkout design and more."
#: deploy/inc/admin/welcome-screen.php:221 inc/admin/welcome-screen.php:221
msgid ""
"Gives you further control over the look and feel of your shop. Change the "
"product archive and single layouts, toggle various shop components, enable "
"a distraction free checkout design and more."
msgstr ""

#: inc/admin/welcome-screen.php:224
#: deploy/inc/admin/welcome-screen.php:224 inc/admin/welcome-screen.php:224
msgid "Storefront Parallax Hero - Coming soon"
msgstr ""

#: inc/admin/welcome-screen.php:225
msgid "Adds a parallax hero component to your homepage. Easily change the colors / copy and give your visitors a warm welcome!"
#: deploy/inc/admin/welcome-screen.php:225 inc/admin/welcome-screen.php:225
msgid ""
"Adds a parallax hero component to your homepage. Easily change the colors / "
"copy and give your visitors a warm welcome!"
msgstr ""

#: inc/admin/welcome-screen.php:233
msgid "There are literally hundreds of awesome extensions available for you to use. Looking for Table Rate Shipping? Subscriptions? Product Add-ons? You can find these and more in the WooCommerce extension shop. %sGo shopping%s."
#: deploy/inc/admin/welcome-screen.php:233 inc/admin/welcome-screen.php:233
msgid ""
"There are literally hundreds of awesome extensions available for you to "
"use. Looking for Table Rate Shipping? Subscriptions? Product Add-ons? You "
"can find these and more in the WooCommerce extension shop. %sGo shopping%s."
msgstr ""

#: inc/customizer/controls.php:24
#: deploy/inc/customizer/controls.php:24 inc/customizer/controls.php:24
msgid "Background"
msgstr ""

#: inc/customizer/controls.php:31
#: deploy/inc/customizer/controls.php:31 inc/customizer/controls.php:31
msgid "Typography"
msgstr ""

#: deploy/inc/customizer/controls.php:86 deploy/inc/functions/setup.php:101
#: inc/customizer/controls.php:86 inc/functions/setup.php:101
msgid "Header"
msgstr ""

#: inc/customizer/controls.php:88
#: deploy/inc/customizer/controls.php:88 inc/customizer/controls.php:88
msgid "Customise the look & feel of your web site header."
msgstr ""

#: inc/customizer/controls.php:140
#: deploy/inc/customizer/controls.php:140 inc/customizer/controls.php:140
msgid "Footer"
msgstr ""

#: inc/customizer/controls.php:142
#: deploy/inc/customizer/controls.php:142 inc/customizer/controls.php:142
msgid "Customise the look & feel of your web site footer."
msgstr ""

#: inc/customizer/controls.php:209
#: deploy/inc/customizer/controls.php:209 inc/customizer/controls.php:209
msgid "Buttons"
msgstr ""

#: inc/customizer/controls.php:211
#: deploy/inc/customizer/controls.php:211 inc/customizer/controls.php:211
msgid "Customise the look & feel of your web site buttons."
msgstr ""

#: inc/customizer/controls.php:278
#: deploy/inc/customizer/controls.php:278 inc/customizer/controls.php:278
msgid "Layout"
msgstr ""

#: inc/customizer/controls.php:280
#: deploy/inc/customizer/controls.php:280 inc/customizer/controls.php:280
msgid "Customise the web site layout"
msgstr ""

#: inc/customizer/controls.php:286
#: deploy/inc/customizer/controls.php:286 inc/customizer/controls.php:286
msgid "Sidebar position"
msgstr ""

#: inc/functions/extras.php:61
#: deploy/inc/functions/extras.php:61 inc/functions/extras.php:61
msgid "Page %s"
msgstr ""

#: deploy/inc/functions/setup.php:57 deploy/inc/structure/header.php:63
#: inc/functions/setup.php:57 inc/structure/header.php:63
msgid "Primary Menu"
msgstr ""

#: inc/functions/setup.php:58
#: deploy/inc/functions/setup.php:58 inc/functions/setup.php:58
msgid "Secondary Menu"
msgstr ""

#: inc/functions/setup.php:91
#: deploy/inc/functions/setup.php:91 inc/functions/setup.php:91
msgid "Sidebar"
msgstr ""

#: inc/functions/setup.php:114
#: deploy/inc/functions/setup.php:114 inc/functions/setup.php:114
msgid "Footer %d"
msgstr ""

#: inc/functions/setup.php:116
#: deploy/inc/functions/setup.php:116 inc/functions/setup.php:116
msgid "Widgetized Footer Region %d."
msgstr ""

#: inc/structure/comments.php:43
#: deploy/inc/structure/comments.php:43 inc/structure/comments.php:43
msgid "<cite class=\"fn\">%s</cite>"
msgstr ""

#: inc/structure/comments.php:46
#: deploy/inc/structure/comments.php:46 inc/structure/comments.php:46
msgid "Your comment is awaiting moderation."
msgstr ""

#: inc/structure/comments.php:62
#: deploy/inc/structure/comments.php:62 inc/structure/comments.php:62
msgid "Edit"
msgstr ""

#: inc/structure/footer.php:60
#: deploy/inc/structure/footer.php:60 inc/structure/footer.php:60
msgid "%1$s designed by %2$s."
msgstr ""

#: deploy/inc/structure/page.php:33 deploy/inc/structure/post.php:47
#: inc/structure/page.php:33 inc/structure/post.php:47
msgid "Pages:"
msgstr ""

#: inc/structure/post.php:44
#: deploy/inc/structure/post.php:44 inc/structure/post.php:44
msgid "Continue reading <span class=\"meta-nav\">&rarr;</span>"
msgstr ""

#. translators: used between list items, there is a space after the comma

#: deploy/inc/structure/post.php:67 deploy/inc/structure/post.php:75
#: inc/structure/post.php:67 inc/structure/post.php:75
#. translators: used between list items, there is a space after the comma
msgid ", "
msgstr ""

#: inc/structure/post.php:83
#: deploy/inc/structure/post.php:83 inc/structure/post.php:83
msgid "Leave a comment"
msgstr ""

#: inc/structure/post.php:83
#: deploy/inc/structure/post.php:83 inc/structure/post.php:83
msgid "1 Comment"
msgstr ""

#: inc/structure/post.php:83
#: deploy/inc/structure/post.php:83 inc/structure/post.php:83
msgid "% Comments"
msgstr ""

#: inc/structure/post.php:101
#: deploy/inc/structure/post.php:101 inc/structure/post.php:101
msgid "Posts navigation"
msgstr ""

#: inc/structure/post.php:105
#: deploy/inc/structure/post.php:105 inc/structure/post.php:105
msgid "<span class=\"meta-nav\">&larr;</span> Older posts"
msgstr ""

#: inc/structure/post.php:109
#: deploy/inc/structure/post.php:109 inc/structure/post.php:109
msgid "Newer posts <span class=\"meta-nav\">&rarr;</span>"
msgstr ""

#: inc/structure/post.php:132
#: deploy/inc/structure/post.php:132 inc/structure/post.php:132
msgid "Post navigation"
msgstr ""

#: inc/structure/post.php:135
msgctxt "Previous post link"
msgid "<span class=\"meta-nav\">&larr;</span>&nbsp;%title"
msgstr ""

#: inc/structure/post.php:136
msgctxt "Next post link"
msgid "%title&nbsp;<span class=\"meta-nav\">&rarr;</span>"
msgstr ""

#: inc/structure/post.php:162
msgctxt "post date"
msgid "Posted on %s"
msgstr ""

#: inc/structure/post.php:167
msgctxt "post author"
msgid "by %s"
msgstr ""

#: inc/structure/template-tags.php:26
#: deploy/inc/structure/template-tags.php:26 inc/structure/template-tags.php:26
msgid "Product Categories"
msgstr ""

#: inc/structure/template-tags.php:54
#: deploy/inc/structure/template-tags.php:54 inc/structure/template-tags.php:54
msgid "Recent Products"
msgstr ""

#: inc/structure/template-tags.php:82
#: deploy/inc/structure/template-tags.php:82 inc/structure/template-tags.php:82
msgid "Featured Products"
msgstr ""

#: deploy/inc/structure/template-tags.php:110
#: inc/structure/template-tags.php:110
msgid "Top Rated Products"
msgstr ""

#: deploy/inc/structure/template-tags.php:138
#: inc/structure/template-tags.php:138
msgid "On Sale"
msgstr ""

#: deploy/inc/woocommerce/template-tags.php:24
#: inc/woocommerce/template-tags.php:24
msgid "View your shopping cart"
msgstr ""

#: deploy/inc/woocommerce/template-tags.php:25
#: inc/woocommerce/template-tags.php:25
msgid "%d item"
msgid_plural "%d items"
msgstr[0] ""
msgstr[1] ""

#: search.php:16
#: deploy/search.php:16 search.php:16
msgid "Search Results for: %s"
msgstr ""

#. Template Name of the plugin/theme
msgid "Full width"
msgstr ""

#. Template Name of the plugin/theme
msgid "Homepage"
msgstr ""

#: archive.php:33 deploy/archive.php:33
msgctxt "monthly archives date format"
msgid "F Y"
msgstr ""

#: archive.php:36 deploy/archive.php:36
msgctxt "yearly archives date format"
msgid "Y"
msgstr ""

#: comments.php:26 deploy/comments.php:26
msgctxt "comments title"
msgid "One thought on &ldquo;%2$s&rdquo;"
msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
msgstr[0] ""
msgstr[1] ""

#: deploy/inc/structure/post.php:135 inc/structure/post.php:135
msgctxt "Previous post link"
msgid "<span class=\"meta-nav\">&larr;</span>&nbsp;%title"
msgstr ""

#: deploy/inc/structure/post.php:136 inc/structure/post.php:136
msgctxt "Next post link"
msgid "%title&nbsp;<span class=\"meta-nav\">&rarr;</span>"
msgstr ""

#: deploy/inc/structure/post.php:162 inc/structure/post.php:162
msgctxt "post date"
msgid "Posted on %s"
msgstr ""

#: deploy/inc/structure/post.php:167 inc/structure/post.php:167
msgctxt "post author"
msgid "by %s"
msgstr ""

0
loadPath Normal file
View file

28
package.json Normal file
View file

@ -0,0 +1,28 @@
{
"name": "storefront",
"title": "Storefront",
"version": "1.0.2",
"homepage": "http://www.woothemes.com/storefront/",
"repository": {
"type": "git",
"url": "https://github.com/woothemes/storefront.git"
},
"main": "Gruntfile.js",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-checktextdomain": "^0.1.1",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.10.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "~0.5.1",
"grunt-contrib-watch": "~0.6.1",
"grunt-wp-i18n": "^0.4.8",
"grunt-contrib-sass": "^0.8.1",
"node-bourbon": "~1.0.0"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.1.0"
}
}

View file