11 Commits

Author SHA1 Message Date
MickeyKay 27835605d3 * Add grunt and various tasks.
* Run csscomb task on stylesheet - not ideal formatting though.
2015-07-24 17:14:59 -07:00
Mickey Kay 51c177d85a Merge pull request #34 from MIGHTYminnow/fix/mobile-menu-jquery
Update jQuery to add +/- signs to mobile menu. Fixes #33.
2015-07-20 13:52:37 -05:00
Mickey Kay 69184c5f90 Merge pull request #36 from MIGHTYminnow/feature/add-img-check-function
Feature/add img check function
2015-07-20 13:36:07 -05:00
MickeyKay b52e7e3387 Add empty line at file end. 2015-07-20 11:31:19 -07:00
MickeyKay 59ec252bc4 Update comment 2015-07-20 11:27:49 -07:00
MickeyKay 331fd2e271 Add helper function to check if img has size. 2015-07-20 11:26:36 -07:00
Braad b1d4ec9775 Add screen-reader-text class to our stylesheet for accessibility
WordPress has been moving in the direction of better accessibility for themes, and as part of this they are encouraging the use of a standard class "screen-reader-text" on the front end of all themes. This change adds the official CSS recommended by core.

For more information see https://make.wordpress.org/themes/2015/01/26/supporting-screen-reader-text/ and https://codex.wordpress.org/CSS#WordPress_Generated_Classes
2015-07-13 11:11:43 -07:00
Braad Martin 974933f5c2 Fix CSS typo and move editor body style 2015-07-12 12:04:13 -07:00
Braad Martin 0ba318f54a Explicitly set the editor background color to white 2015-07-12 12:01:32 -07:00
Braad Martin 2b50585a14 Fix detection of logo for body class 2015-07-12 10:38:17 -07:00
Braad 4d104ab1f2 Add a class "logos" to the anchors that wrap the logos 2015-07-06 16:36:30 -07:00
8 changed files with 3823 additions and 2878 deletions
+3
View File
@@ -0,0 +1,3 @@
node_modules/
svn/
vendor/
+101
View File
@@ -0,0 +1,101 @@
/*jslint node: true */
"use strict";
module.exports = function( grunt ) {
// Grab package as variable for later use/
var pkg = grunt.file.readJSON( 'package.json' );
// Load all tasks.
require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
// Project configuration
grunt.initConfig( {
pkg: pkg,
devUpdate: {
main: {
options: {
updateType: 'prompt',
packages: {
devDependencies: true
},
}
}
},
prompt: {
version: {
options: {
questions: [
{
config: 'newVersion',
type: 'input',
message: 'What specific version would you like',
default: '<%= pkg.version %>'
}
]
}
}
},
replace: {
package: {
src: ['package.json'],
overwrite: true,
replacements: [
{
from: /("version":\s*).*,\n/g,
to: '$1"<%= newVersion %>",\n'
}
]
},
style: {
src: ['style.css'],
overwrite: true,
replacements: [
{
from: /(Version:\s*).*/g,
to: '$1<%= newVersion %>'
}
]
},
functions: {
src: ['functions.php'],
overwrite: true,
replacements: [
{
from: /(define\( \'TRESTLE_THEME_VERSION\'\,\s*\').*\'/g,
to: '$1<%= newVersion %>\''
}
]
}
},
makepot: {
target: {
options: {
domainPath: '/languages/', // Where to save the POT file.
potFilename: 'trestle.pot', // Name of the POT file.
type: 'wp-theme' // Type of project (wp-plugin or wp-theme).
}
}
},
wpcss: {
stylesheet: {
options: {
commentSpacing: true, // Whether to clean up newlines around comments between CSS rules.
config: 'default' // Which CSSComb config to use for sorting properties.
},
files: {
'style.css': ['style.css']
}
},
}
} );
grunt.registerTask( 'build', [
'prompt',
'replace',
'makepot',
'wpcss',
] );
grunt.util.linefeed = '\n';
};
+336
View File
@@ -0,0 +1,336 @@
{
"exclude": [
".git/**",
"node_modules/**"
],
"verbose": true,
"always-semicolon": true,
"block-indent": "\t",
"color-case": "lower",
"color-shorthand": true,
"element-case": "lower",
"eof-newline": true,
"leading-zero": true,
"quotes": "double",
"remove-empty-rulesets": true,
"rule-delimiter": "\n\n",
"sort-order-fallback": "abc",
"space-after-colon": " ",
"space-after-combinator": " ",
"space-after-opening-brace": "\n",
"space-after-selector-delimiter": "\n",
"space-before-closing-brace": "\n",
"space-before-colon": "",
"space-before-combinator": " ",
"space-before-opening-brace": " ",
"space-before-selector-delimiter": "",
"space-between-declarations": "\n",
"strip-spaces": false,
"unitless-zero": true,
"sort-order": [
[
"$variable",
"$include",
"$import"
],
[
"display",
"visibility",
"float",
"clear",
"overflow",
"overflow-x",
"overflow-y",
"-ms-overflow-x",
"-ms-overflow-y",
"clip",
"zoom",
"flex-direction",
"flex-order",
"flex-pack",
"flex-align",
"position",
"z-index",
"top",
"right",
"bottom",
"left",
"-webkit-box-sizing",
"-moz-box-sizing",
"box-sizing",
"width",
"min-width",
"max-width",
"height",
"min-height",
"max-height",
"margin",
"margin-top",
"margin-right",
"margin-bottom",
"margin-left",
"padding",
"padding-top",
"padding-right",
"padding-bottom",
"padding-left",
"border",
"border-width",
"border-style",
"border-color",
"border-top",
"border-top-width",
"border-top-style",
"border-top-color",
"border-right",
"border-right-width",
"border-right-style",
"border-right-color",
"border-bottom",
"border-bottom-width",
"border-bottom-style",
"border-bottom-color",
"border-left",
"border-left-width",
"border-left-style",
"border-left-color",
"-webkit-border-radius",
"-moz-border-radius",
"border-radius",
"-webkit-border-top-left-radius",
"-moz-border-radius-topleft",
"border-top-left-radius",
"-webkit-border-top-right-radius",
"-moz-border-radius-topright",
"border-top-right-radius",
"-webkit-border-bottom-right-radius",
"-moz-border-radius-bottomright",
"border-bottom-right-radius",
"-webkit-border-bottom-left-radius",
"-moz-border-radius-bottomleft",
"border-bottom-left-radius",
"-webkit-border-image",
"-moz-border-image",
"-o-border-image",
"border-image",
"-webkit-border-image-source",
"-moz-border-image-source",
"-o-border-image-source",
"border-image-source",
"-webkit-border-image-slice",
"-moz-border-image-slice",
"-o-border-image-slice",
"border-image-slice",
"-webkit-border-image-width",
"-moz-border-image-width",
"-o-border-image-width",
"border-image-width",
"-webkit-border-image-outset",
"-moz-border-image-outset",
"-o-border-image-outset",
"border-image-outset",
"-webkit-border-image-repeat",
"-moz-border-image-repeat",
"-o-border-image-repeat",
"border-image-repeat",
"table-layout",
"empty-cells",
"caption-side",
"border-spacing",
"border-collapse",
"outline",
"outline-width",
"outline-style",
"outline-color",
"outline-offset",
"opacity",
"filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
"-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
"-ms-interpolation-mode",
"color",
"background",
"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
"background-color",
"background-image",
"background-repeat",
"background-attachment",
"background-position",
"background-position-x",
"-ms-background-position-x",
"background-position-y",
"-ms-background-position-y",
"-webkit-background-clip",
"-moz-background-clip",
"background-clip",
"background-origin",
"-webkit-background-size",
"-moz-background-size",
"-o-background-size",
"background-size",
"box-decoration-break",
"-webkit-box-shadow",
"-moz-box-shadow",
"box-shadow",
"filter:progid:DXImageTransform.Microsoft.gradient",
"-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
"text-shadow",
"font",
"font-family",
"src",
"font-size",
"font-weight",
"font-style",
"font-variant",
"font-size-adjust",
"font-stretch",
"font-effect",
"font-emphasize",
"font-emphasize-position",
"font-emphasize-style",
"-webkit-font-smoothing",
"-moz-osx-font-smoothing",
"font-smooth",
"line-height",
"text-align",
"-webkit-text-align-last",
"-moz-text-align-last",
"-ms-text-align-last",
"text-align-last",
"vertical-align",
"white-space",
"text-decoration",
"text-emphasis",
"text-emphasis-color",
"text-emphasis-style",
"text-emphasis-position",
"text-indent",
"-ms-text-justify",
"text-justify",
"letter-spacing",
"word-spacing",
"-ms-writing-mode",
"text-outline",
"text-transform",
"text-wrap",
"text-overflow",
"-ms-text-overflow",
"text-overflow-ellipsis",
"text-overflow-mode",
"-ms-word-wrap",
"word-wrap",
"word-break",
"-ms-word-break",
"-moz-tab-size",
"-o-tab-size",
"tab-size",
"-webkit-hyphens",
"-moz-hyphens",
"hyphens",
"list-style",
"list-style-position",
"list-style-type",
"list-style-image",
"content",
"quotes",
"counter-reset",
"counter-increment",
"resize",
"cursor",
"-webkit-user-select",
"-moz-user-select",
"-ms-user-select",
"user-select",
"nav-index",
"nav-up",
"nav-right",
"nav-down",
"nav-left",
"-webkit-transition",
"-moz-transition",
"-ms-transition",
"-o-transition",
"transition",
"-webkit-transition-delay",
"-moz-transition-delay",
"-ms-transition-delay",
"-o-transition-delay",
"transition-delay",
"-webkit-transition-timing-function",
"-moz-transition-timing-function",
"-ms-transition-timing-function",
"-o-transition-timing-function",
"transition-timing-function",
"-webkit-transition-duration",
"-moz-transition-duration",
"-ms-transition-duration",
"-o-transition-duration",
"transition-duration",
"-webkit-transition-property",
"-moz-transition-property",
"-ms-transition-property",
"-o-transition-property",
"transition-property",
"-webkit-transform",
"-moz-transform",
"-ms-transform",
"-o-transform",
"transform",
"-webkit-transform-origin",
"-moz-transform-origin",
"-ms-transform-origin",
"-o-transform-origin",
"transform-origin",
"-webkit-animation",
"-moz-animation",
"-ms-animation",
"-o-animation",
"animation",
"-webkit-animation-name",
"-moz-animation-name",
"-ms-animation-name",
"-o-animation-name",
"animation-name",
"-webkit-animation-duration",
"-moz-animation-duration",
"-ms-animation-duration",
"-o-animation-duration",
"animation-duration",
"-webkit-animation-play-state",
"-moz-animation-play-state",
"-ms-animation-play-state",
"-o-animation-play-state",
"animation-play-state",
"-webkit-animation-timing-function",
"-moz-animation-timing-function",
"-ms-animation-timing-function",
"-o-animation-timing-function",
"animation-timing-function",
"-webkit-animation-delay",
"-moz-animation-delay",
"-ms-animation-delay",
"-o-animation-delay",
"animation-delay",
"-webkit-animation-iteration-count",
"-moz-animation-iteration-count",
"-ms-animation-iteration-count",
"-o-animation-iteration-count",
"animation-iteration-count",
"-webkit-animation-direction",
"-moz-animation-direction",
"-ms-animation-direction",
"-o-animation-direction",
"animation-direction",
"-webkit-backface-visibility",
"-moz-backface-visibility",
"backface-visibility",
"text-rendering",
"pointer-events"
]
]
}
+1 -1
View File
@@ -49,7 +49,7 @@ function trestle_theme_setup() {
// Child theme definitions (do not remove).
define( 'TRESTLE_THEME_NAME', 'Trestle' );
define( 'TRESTLE_THEME_URL', 'http://demo.mightyminnow.com/theme/trestle/' );
define( 'TRESTLE_THEME_VERSION', '2.1.0' );
define( 'TRESTLE_THEME_VERSION', '2.2.0' );
define( 'TRESTLE_SETTINGS_FIELD', 'trestle-settings' );
// Setup default theme settings.
+41 -2
View File
@@ -195,7 +195,7 @@ function trestle_body_classes( $classes ) {
}
// Add logo class.
if ( trestle_get_option( 'logo_url' ) || trestle_get_option( 'logo_url_mobile' ) ) {
if ( trestle_get_option( 'logo_id' ) || trestle_get_option( 'logo_id_mobile' ) ) {
$classes[] = 'has-logo';
}
@@ -268,7 +268,7 @@ function trestle_do_logos( $title, $inside, $wrap ) {
}
if ( $logo_html ) {
$inside .= sprintf( '<a href="%s" title="%s">%s</a>',
$inside .= sprintf( '<a href="%s" title="%s" class="logos">%s</a>',
trailingslashit( home_url() ),
esc_attr( get_bloginfo( 'name' ) ),
$logo_html
@@ -418,3 +418,42 @@ function trestle_read_more_link( $default_text ) {
return $default_text;
}
}
/*===========================================
* Helper Functions
===========================================*/
/**
* Check if image has specified image size.
*
* @since 2.2.0
*
* @param int $image_id ID of image to check.
* @param string $image_size Slug of image size to check for.
*
* @return true|false Whether or not the image has the specified size generated.
*/
function trestle_image_has_size( $image_id, $image_size = null ) {
global $_wp_additional_image_sizes;
// Return with error if no image_size is specified.
if ( ! $image_size ) {
return new WP_Error( 'no_image_size_specified', __( 'Please specify an image size.', 'trestle' ) );
}
// Get the attributes for the specified image size.
$image_size_atts = $_wp_additional_image_sizes[ $image_size ];
// Get data for specified image ID and size.
$img_data = wp_get_attachment_image_src( $image_id, $image_size );
// Check if the dimensions match.
if ( $img_data[1] == $image_size_atts['width'] && $img_data[2] == $image_size_atts['height'] ) {
return true;
}
return false;
}
+371 -202
View File
@@ -1,348 +1,517 @@
# Copyright (C) 2015 MIGHTYminnow
# This file is distributed under the same license as the Trestle package.
msgid ""
msgstr ""
"Project-Id-Version: Trestle\n"
"POT-Creation-Date: 2014-01-16 11:55-0800\n"
"PO-Revision-Date: 2014-01-16 11:55-0800\n"
"Last-Translator: Mickey <mickey@mightyminnow.com>\n"
"Language-Team: MIGHTYminnow <info@mightyminnow.com>\n"
"Language: en\n"
"Project-Id-Version: Trestle 2.2.0\n"
"Report-Msgid-Bugs-To: http://wordpress.org/support/theme/style\n"
"POT-Creation-Date: 2015-07-25 00:14:21+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"
"X-Generator: Poedit 1.6.3\n"
"X-Poedit-Basepath: .\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-KeywordsList: __;_e;_x;_n\n"
"X-Poedit-SearchPath-0: ..\n"
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"X-Generator: grunt-wp-i18n 0.5.2\n"
#: ../includes/admin/admin-functions.php:38
msgid "Navigation"
msgstr ""
#: ../includes/admin/admin-functions.php:39
#: includes/admin/admin.php:28
msgid "Read&nbsp;More&nbsp;&raquo;"
msgstr ""
#: ../includes/admin/admin-functions.php:121
msgid "Trestle Settings <small>by</small>"
msgstr ""
#: ../includes/admin/admin-functions.php:135
msgid "Layout"
msgstr ""
#: ../includes/admin/admin-functions.php:143
msgid "Primary Navigation"
msgstr ""
#: ../includes/admin/admin-functions.php:145
msgid ""
"Automatically generate nav menu (replaces custom/manual menu with auto-"
"generated menu)"
msgstr ""
#: ../includes/admin/admin-functions.php:146
msgid "Include home link"
msgstr ""
#: ../includes/admin/admin-functions.php:149
msgid "Text for mobile navigation button (shortcodes can be included):"
msgstr ""
#: ../includes/admin/admin-functions.php:153
msgid "Primary Navigation Extras"
msgstr ""
#: ../includes/admin/admin-functions.php:154
msgid ""
"Display custom navigation extras content (overrides standard Genesis "
"navigation extras)"
msgstr ""
#: ../includes/admin/admin-functions.php:156
msgid "Custom navigation extras text:"
msgstr ""
#: ../includes/admin/admin-functions.php:160
msgid "Blog/Posts"
msgstr ""
#: ../includes/admin/admin-functions.php:162
msgid "Custom read more link text"
msgstr ""
#: ../includes/admin/admin-functions.php:165
msgid "Number of post revisions"
msgstr ""
#: ../includes/admin/admin-functions.php:176
msgid "Post Info & Meta"
msgstr ""
#: ../includes/admin/admin-functions.php:177
msgid "Manually select where to show Post Info & Meta"
msgstr ""
#: ../includes/admin/admin-functions.php:180
msgid "Show Post Info on:"
msgstr ""
#: ../includes/admin/admin-functions.php:190 ../includes/admin/admin-functions.php:210
#, php-format
msgid "%s (single)"
msgstr ""
#: ../includes/admin/admin-functions.php:193 ../includes/admin/admin-functions.php:213
#, php-format
msgid "%s (archive)"
msgstr ""
#: ../includes/admin/admin-functions.php:200
msgid "Show Post Meta on:"
msgstr ""
#: ../includes/admin/admin-functions.php:221
msgid "Footer Widgets"
msgstr ""
#: ../includes/admin/admin-functions.php:223
msgid "Number"
msgstr ""
#: ../includes/admin/admin-functions.php:233
msgid "Link Icons"
msgstr ""
#: ../includes/admin/admin-functions.php:235
msgid "Add icons to external links"
msgstr ""
#: ../includes/admin/admin-functions.php:236
msgid "Add icons to email links"
msgstr ""
#: ../includes/admin/admin-functions.php:237
msgid "Add icons to .pdf links"
msgstr ""
#: ../includes/admin/admin-functions.php:238
msgid "Add icons to .doc links"
msgstr ""
#: ../includes/admin/admin-functions.php:398
#: ../includes/classes/class-tgm-plugin-activation.php:155
#: includes/admin/admin.php:271 lib/class-tgm-plugin-activation.php:161
msgid "Install Required Plugins"
msgstr ""
#: ../includes/admin/admin-functions.php:399
#: ../includes/classes/class-tgm-plugin-activation.php:156
#: includes/admin/admin.php:272 lib/class-tgm-plugin-activation.php:162
msgid "Install Plugins"
msgstr ""
#: ../includes/admin/admin-functions.php:400
#: ../includes/classes/class-tgm-plugin-activation.php:157
#, php-format
#: includes/admin/admin.php:273 lib/class-tgm-plugin-activation.php:163
msgid "Installing Plugin: %s"
msgstr ""
#: ../includes/admin/admin-functions.php:401
#: includes/admin/admin.php:274
msgid "Something went wrong with the plugin API."
msgstr ""
#: ../includes/admin/admin-functions.php:412
#: ../includes/classes/class-tgm-plugin-activation.php:169
#: includes/admin/admin.php:275 lib/class-tgm-plugin-activation.php:165
msgid "This theme requires the following plugin: %1$s."
msgid_plural "This theme requires the following plugins: %1$s."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:276
msgid "Recommended plugin: %1$s."
msgid_plural "Recommended plugins: %1$s."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:277 lib/class-tgm-plugin-activation.php:167
msgid ""
"Sorry, but you do not have the correct permissions to install the %s "
"plugin. Contact the administrator of this site for help on getting the "
"plugin installed."
msgid_plural ""
"Sorry, but you do not have the correct permissions to install the %s "
"plugins. Contact the administrator of this site for help on getting the "
"plugins installed."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:278 lib/class-tgm-plugin-activation.php:168
msgid "The following required plugin is currently inactive: %1$s."
msgid_plural "The following required plugins are currently inactive: %1$s."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:279 lib/class-tgm-plugin-activation.php:169
msgid "The following recommended plugin is currently inactive: %1$s."
msgid_plural "The following recommended plugins are currently inactive: %1$s."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:280 lib/class-tgm-plugin-activation.php:170
msgid ""
"Sorry, but you do not have the correct permissions to activate the %s "
"plugin. Contact the administrator of this site for help on getting the "
"plugin activated."
msgid_plural ""
"Sorry, but you do not have the correct permissions to activate the %s "
"plugins. Contact the administrator of this site for help on getting the "
"plugins activated."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:281 lib/class-tgm-plugin-activation.php:171
msgid ""
"The following plugin needs to be updated to its latest version to ensure "
"maximum compatibility with this theme: %1$s."
msgid_plural ""
"The following plugins need to be updated to their latest version to ensure "
"maximum compatibility with this theme: %1$s."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:282 lib/class-tgm-plugin-activation.php:172
msgid ""
"Sorry, but you do not have the correct permissions to update the %s plugin. "
"Contact the administrator of this site for help on getting the plugin "
"updated."
msgid_plural ""
"Sorry, but you do not have the correct permissions to update the %s "
"plugins. Contact the administrator of this site for help on getting the "
"plugins updated."
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:283 lib/class-tgm-plugin-activation.php:173
msgid "Begin installing plugin"
msgid_plural "Begin installing plugins"
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:284
msgid "Activate installed plugin"
msgid_plural "Activate installed plugins"
msgstr[0] ""
msgstr[1] ""
#: includes/admin/admin.php:285 lib/class-tgm-plugin-activation.php:175
msgid "Return to Required Plugins Installer"
msgstr ""
#: ../includes/admin/admin-functions.php:413
#: ../includes/classes/class-tgm-plugin-activation.php:171
#: ../includes/classes/class-tgm-plugin-activation.php:1840
#: includes/admin/admin.php:286 lib/class-tgm-plugin-activation.php:177
#: lib/class-tgm-plugin-activation.php:1956
msgid "Plugin activated successfully."
msgstr ""
#: ../includes/admin/admin-functions.php:414
#, php-format
#: includes/admin/admin.php:287
msgid "All plugins installed and activated successfully. %s"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:158
#: includes/admin/customizer.php:28
msgid "Trestle Settings"
msgstr ""
#: includes/admin/customizer.php:47
msgid "Layout"
msgstr ""
#: includes/admin/customizer.php:50
msgid "Bubble"
msgstr ""
#: includes/admin/customizer.php:51
msgid "Solid"
msgstr ""
#: includes/admin/customizer.php:71
msgid "Upload a logo"
msgstr ""
#: includes/admin/customizer.php:94
msgid "Upload a mobile logo"
msgstr ""
#: includes/admin/customizer.php:117
msgid "Upload a favicon"
msgstr ""
#: includes/admin/customizer.php:138
msgid "Menu style"
msgstr ""
#: includes/admin/customizer.php:141
msgid "Full Width"
msgstr ""
#: includes/admin/customizer.php:142
msgid "Header Right"
msgstr ""
#: includes/admin/customizer.php:161
msgid "Mobile Menu Toggle"
msgstr ""
#: includes/admin/customizer.php:164
msgid "Small Icon"
msgstr ""
#: includes/admin/customizer.php:165
msgid "Big Button"
msgstr ""
#: includes/admin/customizer.php:184
msgid "Add search to mobile navigation"
msgstr ""
#: includes/admin/customizer.php:204
msgid "Custom read more link text"
msgstr ""
#: includes/admin/customizer.php:223
msgid "Number of post revisions"
msgstr ""
#: includes/admin/customizer.php:226
msgid "Unlimited"
msgstr ""
#: includes/admin/customizer.php:256
msgid "Number of footer widgets"
msgstr ""
#: includes/admin/customizer.php:283
msgid "Icon links"
msgstr ""
#: includes/admin/customizer.php:302
msgid "Add icons to external links"
msgstr ""
#: includes/admin/customizer.php:321
msgid "Add icons to email links"
msgstr ""
#: includes/admin/customizer.php:340
msgid "Add icons to .pdf links"
msgstr ""
#: includes/admin/customizer.php:359
msgid "Add icons to .doc links"
msgstr ""
#: includes/functions/theme-functions.php:99
msgid "Navigation"
msgstr ""
#: includes/functions/theme-functions.php:443
msgid "Please specify an image size."
msgstr ""
#: includes/widget-areas/widget-areas.php:20
msgid "Sample Widget Area"
msgstr ""
#: includes/widget-areas/widget-areas.php:21
msgid "This is the sample widget area"
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:493
msgid "The jsDelivr API servers appear to be temporarily unavailable."
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1042
msgid "Insert Icon"
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1062
msgid "Better Font Awesome"
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1068
msgid "API Error"
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1070
msgid ""
"The attempt to reach the jsDelivr API server failed with the following "
"error: %s"
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1080
msgid "Remote CSS Error"
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1082
msgid ""
"The attempt to fetch the remote Font Awesome stylesheet failed with the "
"following error: %s %s The embedded fallback Font Awesome will be used "
"instead (version: %s)."
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1092
msgid ""
"<b>Don't worry! Better Font Awesome will still render using the included "
"fallback version:</b> "
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1096
msgid "Solution"
msgstr ""
#: lib/better-font-awesome-library/better-font-awesome-library.php:1098
msgid ""
"This may be the result of a temporary server or connectivity issue which "
"will resolve shortly. However if the problem persists please file a support "
"ticket on the %splugin forum%s, citing the errors listed above. "
msgstr ""
#: lib/class-tgm-plugin-activation.php:164
msgid "Something went wrong."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:170
#: lib/class-tgm-plugin-activation.php:166
msgid "This theme recommends the following plugin: %1$s."
msgid_plural "This theme recommends the following plugins: %1$s."
msgstr[0] ""
msgstr[1] ""
#: lib/class-tgm-plugin-activation.php:174
msgid "Begin activating plugin"
msgid_plural "Begin activating plugins"
msgstr[0] ""
msgstr[1] ""
#: lib/class-tgm-plugin-activation.php:176
msgid "Return to the dashboard"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:172
#: ../includes/classes/class-tgm-plugin-activation.php:1538
#: lib/class-tgm-plugin-activation.php:178
#: lib/class-tgm-plugin-activation.php:1644
msgid "The following plugin was activated successfully:"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:173
#, php-format
#: lib/class-tgm-plugin-activation.php:179
msgid "All plugins installed and activated successfully. %1$s"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:174
#: lib/class-tgm-plugin-activation.php:180
msgid "Dismiss this notice"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1085
msgid "External Link"
#: lib/class-tgm-plugin-activation.php:532
#: lib/class-tgm-plugin-activation.php:2173
msgid "Return to the Dashboard"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1090
#: lib/class-tgm-plugin-activation.php:1167
#: lib/class-tgm-plugin-activation.php:1348
msgid "Private Repository"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1093
#: lib/class-tgm-plugin-activation.php:1170
#: lib/class-tgm-plugin-activation.php:1351
msgid "Pre-Packaged"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1097
#: lib/class-tgm-plugin-activation.php:1175
msgid "WordPress Repository"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1100
#: lib/class-tgm-plugin-activation.php:1178
msgid "Required"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1100
#: lib/class-tgm-plugin-activation.php:1178
msgid "Recommended"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1103
#: lib/class-tgm-plugin-activation.php:1181
msgid "Not Installed"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1105
#: lib/class-tgm-plugin-activation.php:1183
msgid "Installed But Not Activated"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1275
#, php-format
#: lib/class-tgm-plugin-activation.php:1288
#: lib/class-tgm-plugin-activation.php:1409
msgid "Install"
msgstr ""
#: lib/class-tgm-plugin-activation.php:1312
#: lib/class-tgm-plugin-activation.php:1410
msgid "Activate"
msgstr ""
#: lib/class-tgm-plugin-activation.php:1372
msgid ""
"No plugins to install or activate. <a href=\"%1$s\" title=\"Return to the "
"Dashboard\">Return to the Dashboard</a>"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1291
#: lib/class-tgm-plugin-activation.php:1388
msgid "Plugin"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1292
#: lib/class-tgm-plugin-activation.php:1389
msgid "Source"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1293
#: lib/class-tgm-plugin-activation.php:1390
msgid "Type"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1294
#: lib/class-tgm-plugin-activation.php:1391
msgid "Status"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1312
msgid "Install"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1313
msgid "Activate"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1823
#: lib/class-tgm-plugin-activation.php:1939
msgid "Install package not available."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1824
#, php-format
#: lib/class-tgm-plugin-activation.php:1940
msgid "Downloading install package from <span class=\"code\">%s</span>&#8230;"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1825
#: lib/class-tgm-plugin-activation.php:1941
msgid "Unpacking the package&#8230;"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1826
#: lib/class-tgm-plugin-activation.php:1942
msgid "Installing the plugin&#8230;"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1827
#: lib/class-tgm-plugin-activation.php:1943
msgid "Plugin install failed."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1828
#: lib/class-tgm-plugin-activation.php:1944
msgid "Plugin installed successfully."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1839
#: lib/class-tgm-plugin-activation.php:1955
msgid "Plugin activation failed."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1949
#: lib/class-tgm-plugin-activation.php:2069
msgid ""
"The installation and activation process is starting. This process may take a "
"while on some hosts, so please be patient."
"The installation and activation process is starting. This process may take "
"a while on some hosts, so please be patient."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1950
#, php-format
#: lib/class-tgm-plugin-activation.php:2070
msgid "%1$s installed and activated successfully."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1950
#: ../includes/classes/class-tgm-plugin-activation.php:1959
#: lib/class-tgm-plugin-activation.php:2070
#: lib/class-tgm-plugin-activation.php:2079
msgid "Show Details"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1950
#: ../includes/classes/class-tgm-plugin-activation.php:1959
#: lib/class-tgm-plugin-activation.php:2070
#: lib/class-tgm-plugin-activation.php:2079
msgid "Hide Details"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1951
#: lib/class-tgm-plugin-activation.php:2071
msgid "All installations and activations have been completed."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1952
#, php-format
#: lib/class-tgm-plugin-activation.php:2072
msgid "Installing and Activating Plugin %1$s (%2$d/%3$d)"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1956
#: lib/class-tgm-plugin-activation.php:2076
msgid ""
"The installation process is starting. This process may take a while on some "
"hosts, so please be patient."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1957
#, php-format
#: lib/class-tgm-plugin-activation.php:2077
msgid "An error occurred while installing %1$s: <strong>%2$s</strong>."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1958
#, php-format
#: lib/class-tgm-plugin-activation.php:2078
msgid "The installation of %1$s failed."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1959
#, php-format
#: lib/class-tgm-plugin-activation.php:2079
msgid "%1$s installed successfully."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1960
#: lib/class-tgm-plugin-activation.php:2080
msgid "All installations have been completed."
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:1961
#, php-format
#: lib/class-tgm-plugin-activation.php:2081
msgid "Installing Plugin %1$s (%2$d/%3$d)"
msgstr ""
#: ../includes/classes/class-tgm-plugin-activation.php:2052
msgid "Return to the Dashboard"
#: page_archive_all_pages.php:35
msgid "Pages:"
msgstr ""
#: ../includes/functions/theme-functions.php:136
msgid "Trestle Auto Nav Placeholder"
#: page_archive_all_pages.php:40
msgid "Categories:"
msgstr ""
#: page_archive_all_pages.php:45
msgid "Authors:"
msgstr ""
#: page_archive_all_pages.php:50
msgid "Monthly:"
msgstr ""
#: page_archive_all_pages.php:55
msgid "Recent Posts:"
msgstr ""
#. Theme Name of the plugin/theme
msgid "Trestle"
msgstr ""
#. Theme URI of the plugin/theme
msgid "http://demo.mightyminnow.com/theme/trestle"
msgstr ""
#. Description of the plugin/theme
msgid ""
"Trestle is a Genesis child theme for developers based on the default <a "
"href=\"http://www.genesisframework.com/\">Genesis 2.0 Sample Theme</a>. It "
"features mobile first CSS, helpful theme options, and lots more tools to "
"support your development process."
msgstr ""
#. Author of the plugin/theme
msgid "MIGHTYminnow"
msgstr ""
#. Author URI of the plugin/theme
msgid "http://www.mightyminnow.com/"
msgstr ""
#. Template Name of the plugin/theme
msgid "Archive - All Pages"
msgstr ""
+20
View File
@@ -0,0 +1,20 @@
{
"title": "Trestle",
"description": "A handy boilerplate child theme for serious Genesis developers.",
"version": "2.2.0",
"homepage": "https://github.com/MIGHTYminnow/trestle",
"author": {
"name": "MIGHTYminnow Web Studio & School",
"email": "info@mightyminnow.com",
"url": "http://mightyminnow.com/plugin-landing-page?utm_source=trestle&utm_medium=theme&utm_campaign=Trestle"
},
"devDependencies": {
"grunt": "latest",
"load-grunt-tasks": "latest",
"grunt-dev-update": "latest",
"grunt-prompt": "latest",
"grunt-text-replace": "latest",
"grunt-wp-i18n": "latest",
"grunt-wp-css": "latest"
}
}
+2950 -2673
View File
File diff suppressed because it is too large Load Diff