From 762a3103bbab13788f6e0acc80eda167d289ffb5 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 7 May 2018 12:17:55 -0300 Subject: [PATCH 01/35] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 51f2bd2..945086d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ [![Translate Aldine](https://img.shields.io/badge/dynamic/json.svg?label=translated&url=https%3A%2F%2Ftenpercent.now.sh%2F%3Forganization%3Dpressbooks%26project%3Daldine&query=%24.status&colorB=e05d44&suffix=%25)](https://www.transifex.com/pressbooks/aldine/translate/) [![Packagist](https://img.shields.io/packagist/dt/pressbooks/pressbooks-aldine.svg)](https://packagist.org/packages/pressbooks/pressbooks-aldine) -[![Slack](https://pressbooks-slack.now.sh/badge.svg)](https://pressbooks-slack.now.sh) [![Open Collective](https://opencollective.com/pressbooks/tiers/backer/badge.svg?label=backers&color=brightgreen)](https://opencollective.com/pressbooks/) [![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&color=brightgreen)](https://opencollective.com/pressbooks/) **Tags:** publishing, catalog, pressbooks, default-theme From a53ee4930b6225420db6fa8e47480983331051d6 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 7 May 2018 12:18:14 -0300 Subject: [PATCH 02/35] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 945086d..3e85674 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ [![Packagist](https://img.shields.io/packagist/dt/pressbooks/pressbooks-aldine.svg)](https://packagist.org/packages/pressbooks/pressbooks-aldine) [![Open Collective](https://opencollective.com/pressbooks/tiers/backer/badge.svg?label=backers&color=brightgreen)](https://opencollective.com/pressbooks/) [![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&color=brightgreen)](https://opencollective.com/pressbooks/) -**Tags:** publishing, catalog, pressbooks, default-theme +**Tags:** publishing, catalog, pressbooks, default-theme **Requires at least:** 4.9.4 **Tested up to:** 4.9.4 **Stable tag:** 1.2.1 From abd4314b3672824b06cfad00349fef09e71d010e Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Wed, 9 May 2018 10:22:26 -0300 Subject: [PATCH 03/35] Add customizer options for dark (hover) colours (#125) * Add dark variants for primary/accent colours in customizer. * Expand contrast checks to handle dark variants. --- inc/actions/namespace.php | 7 ------- inc/customizer/namespace.php | 20 ++++++++++++++++++-- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/inc/actions/namespace.php b/inc/actions/namespace.php index f1fbdc7..50426fc 100644 --- a/inc/actions/namespace.php +++ b/inc/actions/namespace.php @@ -243,15 +243,8 @@ function add_color_variants( $option, $old_value, $value ) { $color = Hex::fromString( $value ); $color = $color->toRgb(); $color_alpha = $color->toRgba( 0.25 ); - $color_dark = new Rgb( - $color->red() * 0.9, - $color->green() * 0.9, - $color->blue() * 0.9 - ); $color_alpha = (string) $color_alpha; - $color_dark = (string) $color_dark; - update_option( $option . '_dark', $color_dark ); update_option( $option . '_alpha', $color_alpha ); } diff --git a/inc/customizer/namespace.php b/inc/customizer/namespace.php index 31aa5bb..fced824 100644 --- a/inc/customizer/namespace.php +++ b/inc/customizer/namespace.php @@ -61,12 +61,24 @@ function customize_register( \WP_Customize_Manager $wp_customize ) { 'label' => __( 'Primary Color', 'pressbooks-aldine' ), 'description' => __( 'Primary color, used for links and other primary elements.', 'pressbooks-aldine' ), ], + [ + 'slug' => 'primary_dark', + 'hex' => '#7f0c07', + 'label' => __( 'Primary Color (Dark)', 'pressbooks-aldine' ), + 'description' => __( 'Darkened variant of the primary color, used for primary element hover states.', 'pressbooks-aldine' ), + ], [ 'slug' => 'accent', 'hex' => '#015d75', 'label' => __( 'Accent Color', 'pressbooks-aldine' ), 'description' => __( 'Accent color, used for flourishes and secondary elements.', 'pressbooks-aldine' ), ], + [ + 'slug' => 'accent_dark', + 'hex' => '#013542', + 'label' => __( 'Accent Color (Dark)', 'pressbooks-aldine' ), + 'description' => __( 'Darkened variant of the accent color, used for secondary element hover states.', 'pressbooks-aldine' ), + ], [ 'slug' => 'primary_fg', 'hex' => '#ffffff', @@ -203,8 +215,12 @@ function enqueue_color_contrast_validator() { $exports = [ 'validate_color_contrast' => [ - 'pb_network_color_primary_fg' => [ 'pb_network_color_primary' ], - 'pb_network_color_accent_fg' => [ 'pb_network_color_accent' ], + 'pb_network_color_primary_fg' => [ 'pb_network_color_primary', 'pb_network_color_primary_dark' ], + 'pb_network_color_accent_fg' => [ 'pb_network_color_accent', 'pb_network_color_accent_dark' ], + 'pb_network_color_primary' => [ 'pb_network_color_primary_fg' ], + 'pb_network_color_primary_dark' => [ 'pb_network_color_primary_fg' ], + 'pb_network_color_accent' => [ 'pb_network_color_accent_fg' ], + 'pb_network_color_accent_dark' => [ 'pb_network_color_accent_fg' ], ], ]; From 5615e8c063ebbfb218a6461de95300b410434928 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 14 May 2018 19:40:56 -0300 Subject: [PATCH 04/35] Adjust labels as per feedback. --- inc/customizer/namespace.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/customizer/namespace.php b/inc/customizer/namespace.php index fced824..e358112 100644 --- a/inc/customizer/namespace.php +++ b/inc/customizer/namespace.php @@ -64,8 +64,8 @@ function customize_register( \WP_Customize_Manager $wp_customize ) { [ 'slug' => 'primary_dark', 'hex' => '#7f0c07', - 'label' => __( 'Primary Color (Dark)', 'pressbooks-aldine' ), - 'description' => __( 'Darkened variant of the primary color, used for primary element hover states.', 'pressbooks-aldine' ), + 'label' => __( 'Primary Color (Hover)', 'pressbooks-aldine' ), + 'description' => __( 'Variant of the primary color, used for primary element hover states.', 'pressbooks-aldine' ), ], [ 'slug' => 'accent', @@ -76,8 +76,8 @@ function customize_register( \WP_Customize_Manager $wp_customize ) { [ 'slug' => 'accent_dark', 'hex' => '#013542', - 'label' => __( 'Accent Color (Dark)', 'pressbooks-aldine' ), - 'description' => __( 'Darkened variant of the accent color, used for secondary element hover states.', 'pressbooks-aldine' ), + 'label' => __( 'Accent Color (Hover)', 'pressbooks-aldine' ), + 'description' => __( 'Variant of the accent color, used for secondary element hover states.', 'pressbooks-aldine' ), ], [ 'slug' => 'primary_fg', From aeebc63a4e1369b282c0d8dc89776fde99612f60 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Tue, 15 May 2018 11:48:19 -0300 Subject: [PATCH 05/35] Bump version. --- README.md | 22 ++- languages/ar.po | 180 ++++++++++++++---------- languages/ca.po | 180 ++++++++++++++---------- languages/cs.po | 180 ++++++++++++++---------- languages/cs_CZ.po | 180 ++++++++++++++---------- languages/da_DK.po | 180 ++++++++++++++---------- languages/de_CH.po | 180 ++++++++++++++---------- languages/de_DE.mo | Bin 9778 -> 9963 bytes languages/de_DE.po | 198 +++++++++++++++------------ languages/el.po | 180 ++++++++++++++---------- languages/en_CA.po | 180 ++++++++++++++---------- languages/en_GB.po | 180 ++++++++++++++---------- languages/es_ES.po | 180 ++++++++++++++---------- languages/et.po | 180 ++++++++++++++---------- languages/eu.po | 180 ++++++++++++++---------- languages/fr_FR.mo | Bin 598 -> 696 bytes languages/fr_FR.po | 185 +++++++++++++++---------- languages/gl_ES.mo | Bin 601 -> 1066 bytes languages/gl_ES.po | 199 ++++++++++++++++----------- languages/he.po | 180 ++++++++++++++---------- languages/hu_HU.po | 180 ++++++++++++++---------- languages/it_IT.mo | Bin 600 -> 2037 bytes languages/it_IT.po | 233 ++++++++++++++++++-------------- languages/ja.po | 180 ++++++++++++++---------- languages/ka_GE.po | 180 ++++++++++++++---------- languages/kk@Cyrl.po | 180 ++++++++++++++---------- languages/km_KH.po | 180 ++++++++++++++---------- languages/ko.po | 180 ++++++++++++++---------- languages/nb_NO.po | 180 ++++++++++++++---------- languages/nl_NL.po | 180 ++++++++++++++---------- languages/no.po | 180 ++++++++++++++---------- languages/pl.po | 180 ++++++++++++++---------- languages/pressbooks-aldine.pot | 180 ++++++++++++++---------- languages/pt_BR.po | 180 ++++++++++++++---------- languages/pt_PT.po | 180 ++++++++++++++---------- languages/ro.po | 180 ++++++++++++++---------- languages/ru_RU.po | 180 ++++++++++++++---------- languages/sk_SK.po | 180 ++++++++++++++---------- languages/sv_SE.po | 180 ++++++++++++++---------- languages/ta_IN.po | 180 ++++++++++++++---------- languages/ta_LK.po | 180 ++++++++++++++---------- languages/tr_TR.po | 180 ++++++++++++++---------- languages/uk.po | 180 ++++++++++++++---------- languages/zh.po | 180 ++++++++++++++---------- languages/zh_CN.po | 180 ++++++++++++++---------- languages/zh_TW.po | 180 ++++++++++++++---------- readme.txt | 18 ++- style.css | 2 +- 48 files changed, 4432 insertions(+), 3085 deletions(-) diff --git a/README.md b/README.md index 3e85674..37a40a1 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,14 @@ [![Translate Aldine](https://img.shields.io/badge/dynamic/json.svg?label=translated&url=https%3A%2F%2Ftenpercent.now.sh%2F%3Forganization%3Dpressbooks%26project%3Daldine&query=%24.status&colorB=e05d44&suffix=%25)](https://www.transifex.com/pressbooks/aldine/translate/) [![Packagist](https://img.shields.io/packagist/dt/pressbooks/pressbooks-aldine.svg)](https://packagist.org/packages/pressbooks/pressbooks-aldine) +[![Slack](https://pressbooks-slack.now.sh/badge.svg)](https://pressbooks-slack.now.sh) [![Open Collective](https://opencollective.com/pressbooks/tiers/backer/badge.svg?label=backers&color=brightgreen)](https://opencollective.com/pressbooks/) [![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&color=brightgreen)](https://opencollective.com/pressbooks/) - **Tags:** publishing, catalog, pressbooks, default-theme -**Requires at least:** 4.9.4 -**Tested up to:** 4.9.4 -**Stable tag:** 1.2.1 + +**Requires at least:** 4.9.5 +**Tested up to:** 4.9.5 +**Stable tag:** 1.3.0 **License:** GNU General Public License v3 or later **License URI:** LICENSE @@ -42,6 +43,19 @@ TK. ## Changelog +# 1.3.0 + +**Minor Changes** + +- Add customizer options for dark (hover) colours: [#125](https://github.com/pressbooks/pressbooks-aldine/issues/125) +- Update Isotope to 3.0.6: [#120](https://github.com/pressbooks/pressbooks-aldine/issues/120) + +### Patches + +- Fix incorrect contact form title ([#122](https://github.com/pressbooks/pressbooks-aldine/issues/122)): [#123](https://github.com/pressbooks/pressbooks-aldine/issues/123) +- Don't run Intervention functions during AJAX: [#121](https://github.com/pressbooks/pressbooks-aldine/issues/121) + + # 1.2.1 **Patches** diff --git a/languages/ar.po b/languages/ar.po index 849aa22..ba84192 100644 --- a/languages/ar.po +++ b/languages/ar.po @@ -110,29 +110,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -205,7 +241,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -235,151 +271,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -395,35 +439,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -467,10 +503,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/ca.po b/languages/ca.po index 151cd93..0626dbf 100644 --- a/languages/ca.po +++ b/languages/ca.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/cs.po b/languages/cs.po index de20510..ad4dbaa 100644 --- a/languages/cs.po +++ b/languages/cs.po @@ -107,29 +107,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -202,7 +238,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -392,35 +436,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -464,10 +500,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/cs_CZ.po b/languages/cs_CZ.po index 79a9fca..53e06c3 100644 --- a/languages/cs_CZ.po +++ b/languages/cs_CZ.po @@ -107,29 +107,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -202,7 +238,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -392,35 +436,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -464,10 +500,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/da_DK.po b/languages/da_DK.po index 55e7987..e8a6778 100644 --- a/languages/da_DK.po +++ b/languages/da_DK.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/de_CH.po b/languages/de_CH.po index 7db8191..73cfb47 100644 --- a/languages/de_CH.po +++ b/languages/de_CH.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/de_DE.mo b/languages/de_DE.mo index c5302a9d022b355c8db6eddf037120bfd49d3ef7..cc3ee50288e58c8118fcf00763477a822333c3a7 100644 GIT binary patch delta 2826 zcmb8wS!`5Q9LMp07q$XzDOFpxUT7<|#g;-{C{|j87G*0?mTJLv%55o3J2=yVV017V zUW^*0ybxSSv_WIQFp0qkYQ*h91!IU&gBmpi+!6w6#0UKT?wm2i_~J?b^Eu~k=bZmJ z_x8w=pO(hI&dc0ulzw6oaV*2^8EhND59QP-vuykn$KtnGfxqG~oRDRfiyr1+HIBgs zybhP)9PC0}|GYatlr(M$D(c{ERG%kN5Bwa};W^C5-`)Aqqmvzs$0Ck~UCwdSD}t#8!7a6HSWQ+_#Wy(lSz|iSb`cr73%uAsF}5( z2Hb<1NECJbqj)Vo=^R4->^ML1GAbWYp%42Fr(y;RS&F5o2QNl-*p9j}jOyS4WRmtc zYJmGt&pCiGJd7u?nDx{EF5)$q#m&0T8%O>%gGvtQK~1R5(t?fn1nS1qs1*K;{MiM5 zw7D`!oA%5^)Xa-rdj`_C)u5ic0NZc{*5V=5edqJYzbY3vpc(v$A++&ki=Y#=YhOWS z;0WsaH}QIWA7|h%sF_V5T?=t0PR4CG5eHENeigN8KSWLJT$~Djc7>nSn9oz@;%3zG zA=Hw*fot##YNj>Zt@CxbI^Ap~YQ_giraEH~Wv~b}p?EbFk4hbC zn_z>zf`U-i5oke9Loduqb1=x=DsOKC&W$qwq^Sy>7$4;OI zc*dQ-fZ2NguTW73*$hiFFGSri3q4$d)!2(#Pma8Sd}^evs0+5CHqBE=QtT~MD!;*-@em6=I`hr4RMqL6j4zvdmS2OjGYmoxu3LuCWzY5}K`wW>ZIysbHp?a4w+|CKeJ}B4tHu z%ignkLS;Uof4y3&4npNN;;x{U+#6c9v3mbgMQLA?YT#N|-;A>fEl)48k+_G@da~@6 zPN?{V-un$iH?e?NM1+V&LhH>3C-_|7fj1FB|68D$&}UJbFIB3jXsta$YuH0%5@iI- z8Eh>0r?k78_CtoN>vg=k%%Y*4&-MwvB?awNQe_&IRze>ay|2@WHbSL_=nQIR>rvl> zsjj^oR}ia-#l(F?s;o=&j*1Vf-0Jsv^COWhUh_aG+!Nc>)7Ndwb#PT=Alm6C>n;BM z{UI)j?fEggBsW%T&5`YX)ZgfZc6g<+#JZfOv~oWd3oh{@eO_Znr>}-JN3TBIvc0Fj z-;XBt=MJW4MY_AgzPHrx8%R`+uNz$zboxI=vU$pkoPP~u&%;HN5+jOsrBzrjBsG-Ar4~^zKkwBhsk&zlkgJWj@NKG z{)FWimtenNg?jF>4Vfk?8lVF;<{+xWr%?kQ!X@~M^ZYcbgD_^`c}&5p$e;O@%SQYQ z8QW|~w4ZxW{j@sz&}~A-yg;Rx2d8imUPg8JE#8K|IqlJms^?3PCXisLImEA;5 zIG%KBqA95NvvC;~J9>~m)6ON7Po|}Q7bJ& zO|TJz*ow1w5!LT&?58Gr8r9DX>P%cpCjTBPiHxEdHlkAHMGfrZqJf4{XX91W3Qs!s z?;>NENmR!dunoV!3M?Y6`rIx@A8MjcVHfUCA^%&cT%|#$xnQyVfnv<%em$zW!ZOsvpFw?VLdfFHQPdfE6Wut0n)od0{iW=iwkEWaie4;0#xUzp zDXT+GpvkcpS8>1Jd42*l;3=p5EGiS1QJ?z-%g~i(_rD4GGqqfpgR$)Uka?a;4h>^i ziqoi$Z#uf@RT)`^WZPsQyJbpH?|JZUY;m3+L``%Iv+*O;o_~W{`E}G8`ySi${r{PY zz9#kj{82S6s7wSg4-aDpPNF(WVdIs$RMer%Ll$dFQ4?%%o_C?P%8%+lgj)GasQ1Uw zt?&O7l{Gkr+T&!VuZ*}+EAXIF+J|~RjJ#@&qB@#DP5d*|)?LR@`~hR5j5)xG)C691 z+h^@K>i!Ids;Nv<*^W`1M4jSB)JpfD2H1-%-W)+~#XF9Zs0^G#o%T;rE1tsu{)mra zN0!}w7PSR4s0n;p)0ctuYgT&)REuqp%Y?!aH{|`{9BZ>&6vWM76G!QCnL=~a5#u7V;JVK>o{%T*e z{|^z`rbyZ1RCG9X4oV4aXQVVSzS+!OnbYzFx(IE7ihdEbUu1v2?B=TP{yoGVqL0wN zYLA-9wAl{`Zd&H($A=h&WBE`N&%sR zs-k}`^mTL-UZR*NAygI;I!}@EFqL&gKe3fqPv`(vhA+m4TqDmVW!1WytnMN2pwFFO z-Q8{Zh6>E~&fV6(t(yk}JyyW#xpjNL6%5)>f)(M3q?)L3)}mw4;pxSdi6ey>Ma`XE z!R}t4cW8+2`<|uyeO@cT7)_RU$nyQ?Y4bp!vv=TDPa0{reEoxrV}Gh*3r+Ll65WuZ#Ju91#FG3XD+Q0z^b7^xWcSj{qErQ&3?R>;peVJtI4M6r gyI3zdKi5u2!N|bSVq@G7My|sR3I#>^1^LAc0N+O, 2018 msgid "" msgstr "" "Project-Id-Version: pressbooks-aldine\n" +"Last-Translator: Hugh McGuire , 2018\n" "Language-Team: French (https://www.transifex.com/pressbooks/teams/9194/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -106,29 +109,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -142,7 +181,7 @@ msgstr "" #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php:143 msgid "About" -msgstr "" +msgstr "À propos" #: ../inc/activation/namespace.php:39 msgid "" @@ -201,7 +240,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +270,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +438,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +502,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/gl_ES.mo b/languages/gl_ES.mo index 62bc5f463756e77b38c0b348a26e43e5303a0421..e81d50ed2c626b2a6de7f6b572906eef4c9925ad 100644 GIT binary patch delta 534 zcmZvWyGjE=6oyaCs_};4tq{R!l^E12NRR|UEQ}FM9hmGMba8iQo!Q0Mm}ju?0n$nu z8w=aKgCK&K%E~9u!haM+#RDJTT+jLMovU2?amu+Q)CgDr9+&`KVCxACfGumc|8F}M%gMlY~!3(E*H8T4#yZOezD^n-${!p*!`UtKF+H(oR66_>Rug~wDg0(XclwXcj|lk_@~h}k`o so-zfh1u{>SR_aMQkWJPi>~(zeGiRj!jgRB6_=w%R6|wds*N, 2018 msgid "" msgstr "" "Project-Id-Version: pressbooks-aldine\n" +"Last-Translator: xesusmosquera , 2018\n" "Language-Team: Galician (https://www.transifex.com/pressbooks/teams/9194/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,7 +39,7 @@ msgstr[1] "" #: ../comments.php:63 msgid "Comments are closed." -msgstr "" +msgstr "Os comentarios están pechados." #: ../footer.php40, ../footer.php:44 msgid "%s on Facebook" @@ -64,15 +67,15 @@ msgstr "" #: ../footer.php75, ../inc/activation/namespace.php:27 msgid "Learn More" -msgstr "" +msgstr "Saber máis" #: ../footer.php79, ../footer.php:83 msgid "Pressbooks on Facebook" -msgstr "" +msgstr "Pressbooks no Facebook" #: ../footer.php85, ../footer.php:89 msgid "Pressbooks on Twitter" -msgstr "" +msgstr "Pressbooks no Twitter" #: ../functions.php:18 msgid "Dependencies Missing" @@ -96,39 +99,75 @@ msgstr "" #: ../inc/intervention.php:12 msgid "Hello," -msgstr "" +msgstr "Ola," #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 msgid "Primary Menu" -msgstr "" +msgstr "Menú principal" #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -142,7 +181,7 @@ msgstr "" #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php:143 msgid "About" -msgstr "" +msgstr "Acerca de" #: ../inc/activation/namespace.php:39 msgid "" @@ -174,7 +213,7 @@ msgstr "" #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php:173 msgid "Help" -msgstr "" +msgstr "Axuda" #: ../inc/activation/namespace.php:58 msgid "" @@ -201,7 +240,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +270,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +438,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +502,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/he.po b/languages/he.po index 0a3d53f..43953f5 100644 --- a/languages/he.po +++ b/languages/he.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/hu_HU.po b/languages/hu_HU.po index d0cb69e..04d0f56 100644 --- a/languages/hu_HU.po +++ b/languages/hu_HU.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/it_IT.mo b/languages/it_IT.mo index ca4fe6ee078cb2eb831e648d176396e641a4e892..9fdcfa8c36a664131b8e153127af2794b1497ec4 100644 GIT binary patch literal 2037 zcmZ{kzi%Wp6vqvOU*YE+KLQBEL+C_;vb))EMQ(FJBzs9Nx`bOu0(6mg=4IAl)*i;5 z%a4lV51@hqQPDvK4FwVsJp~lBi0UL75EL|YeBbQsZa9Lq-jAQ>+5Y<3e!rZb_*kJl zgZeD$Z>Segzr6#0D4jc%x*L20d=z{eycg_Mb_Sk@eG_~f{0JoQ3-CVhd+=%SC-5Hd zcW?sy3!DW124(!jT}nLwPJvH>FM{&@a@D^MJ_&mpd;&ZG9|GS89|S+F_$es*J_lv} zuRziD4QQ~|58xxP7a&IVd=(VG2o%2*d>*_BJ_ddUHo>n!@%t4d@J~?Uat@0Lr$EvF z94K*|sq8gy3ig|oeNgcRDEs*Ul>K}Himop!eh13FegyGTKjTm0aSN37{s5~ZD$hmw zWPKSUMPe-Rk#Y`IG)P=!4k-x5sECeX5iPQwXp#NP*$m6WXdrxL+_3#J9&)x)?njmQ zspYOK!r-4eIeXuA?p?3iI_T6TLsF5&I&fT9S2)U9d!{vK18tiVMpwo*W*Zsyv}L?E zHc_jc-4&YNcRA@aB^P>}6PI%bhh=8envP0atrsR{3XXPV;As(8IZfTH0y4E>X{c$# z{zt;5OB~5!7rffKzOpe``I@nD%GI(n>UDj?Bsv&p)paPQZCB(GtMRVMSsKauclXYr z34wDso4(GEsqIoXwzk+7YTHFdr?kbf(Q4@LnF(8G<%@3L1nL$cI6JY;I*)po%^h$Q zY8!FwEzUiZwI~}MLQSW!u{^n{eW>l^+WJ%@cr98th370|>X^jhpmImkYjElw2cB!r z(B<4EoSCE7lD;-+J#zh5XK8+}xqzu`Qs{(hJFNRH+Q1%J;+LC zpO0i2A`O~L)0SRX zqUOxv_z!{H0qyy1$H%xeYB@T$T8Wd$>ZiJuU_bsuc$Lk8*I4J^c66Y>HisRY z^7+Z`oMYfa`B4Ne!|>$PHOe z+=>h`?&0$<(*)y9OV%(>Num%7xiZr!pPe)CLi1SD MdxcSL&Lge<0SsOm#{d8T delta 70 zcmey$e}l#1o)F7a1|VPrVi_P-0b*t#)&XJ=umEB?CI$veAPrIj1C!4(Yi@RA`OXLc DDn1Ax diff --git a/languages/it_IT.po b/languages/it_IT.po index 87f9c03..42d2c6b 100644 --- a/languages/it_IT.po +++ b/languages/it_IT.po @@ -1,8 +1,11 @@ # Copyright (C) 2018 pressbooks-aldine # This file is distributed under the same license as the pressbooks-aldine package. +# Translators: +# Giuseppe Pignataro (Fastbyte01) , 2018 msgid "" msgstr "" "Project-Id-Version: pressbooks-aldine\n" +"Last-Translator: Giuseppe Pignataro (Fastbyte01) , 2018\n" "Language-Team: Italian (https://www.transifex.com/pressbooks/teams/9194/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,7 +55,7 @@ msgstr "" #: ../footer.php:72 msgid "Open Source" -msgstr "" +msgstr "Open Source" #: ../footer.php:73 msgid "Open Textbooks" @@ -68,15 +71,15 @@ msgstr "" #: ../footer.php79, ../footer.php:83 msgid "Pressbooks on Facebook" -msgstr "" +msgstr "Pressbooks su Facebook" #: ../footer.php85, ../footer.php:89 msgid "Pressbooks on Twitter" -msgstr "" +msgstr "Pressbooks su Twitter" #: ../functions.php:18 msgid "Dependencies Missing" -msgstr "" +msgstr "Dipendenze mancanti" #: ../functions.php:19 msgid "You must run composer install from the Aldine directory." @@ -88,7 +91,7 @@ msgstr "" #: ../header.php:64 msgid "Logo for %s" -msgstr "" +msgstr "Logo per %s" #: ../header.php:74 msgid "Toggle Menu" @@ -96,42 +99,78 @@ msgstr "" #: ../inc/intervention.php:12 msgid "Hello," -msgstr "" +msgstr "Ciao," #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 msgid "Primary Menu" -msgstr "" +msgstr "Menu principale" #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" -msgstr "" +msgstr "Aumenta dimensione carattere" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" -msgstr "" +msgstr "Diminuisci dimensione carattere" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" -msgstr "" +msgstr "Informazioni su Pressbooks" #: ../inc/activation/namespace.php:26 msgid "" @@ -142,7 +181,7 @@ msgstr "" #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php:143 msgid "About" -msgstr "" +msgstr "Informazioni su" #: ../inc/activation/namespace.php:39 msgid "" @@ -153,11 +192,11 @@ msgstr "" #: ../inc/activation/namespace.php:40 msgid "MOBI (for Kindle ebooks)" -msgstr "" +msgstr "MOBI (per ebook Kindle)" #: ../inc/activation/namespace.php:41 msgid "EPUB (for all other ebookstores)" -msgstr "" +msgstr "EPUB (per tutti gli altri negozi di libri online)" #: ../inc/activation/namespace.php:42 msgid "designed PDF (for print-on-demand and digital distribution)" @@ -169,12 +208,12 @@ msgstr "" #: ../inc/activation/namespace.php:46 msgid "see here" -msgstr "" +msgstr "guarda qui" #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php:173 msgid "Help" -msgstr "" +msgstr "Aiuto" #: ../inc/activation/namespace.php:58 msgid "" @@ -188,7 +227,7 @@ msgstr "" #: ../inc/activation/namespace.php:60 msgid "Guide to Using Pressbooks" -msgstr "" +msgstr "Guida all'utilizzo di Pressbooks" #: ../inc/activation/namespace.php:62 msgid "" @@ -199,15 +238,15 @@ msgstr "" #: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, #: ../inc/activation/namespace.php158, ../page-catalog.php:4 msgid "Catalog" -msgstr "" +msgstr "Catalogo" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" #: ../inc/admin/namespace.php:30 msgid "Catalog updated." -msgstr "" +msgstr "Catalogo aggiornato." #: ../inc/admin/namespace.php:31 msgid "Sorry, but your catalog was not updated. Please try again." @@ -219,7 +258,7 @@ msgstr "" #: ../inc/admin/namespace.php:61 msgid "In Catalog" -msgstr "" +msgstr "In catalogo" #: ../inc/admin/namespace.php:72 msgctxt "pressbooks-aldine" @@ -231,151 +270,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" -msgstr "" +msgstr "Colore primario" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" -msgstr "" +msgstr "Social Media" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" -msgstr "" +msgstr "Facebook" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" -msgstr "" +msgstr "Twitter" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +438,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +502,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" @@ -497,7 +532,7 @@ msgstr "" #: ../partials/paged-navigation.php:2 msgid "Navigation" -msgstr "" +msgstr "Navigazione" #: ../search.php:21 msgid "Search Results for: %s" @@ -511,4 +546,4 @@ msgstr "" #: ../searchform.php:6 msgctxt "submit button" msgid "Search" -msgstr "" +msgstr "Cerca" diff --git a/languages/ja.po b/languages/ja.po index 956df43..e8f8325 100644 --- a/languages/ja.po +++ b/languages/ja.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/ka_GE.po b/languages/ka_GE.po index cc8d6d4..c88a381 100644 --- a/languages/ka_GE.po +++ b/languages/ka_GE.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/kk@Cyrl.po b/languages/kk@Cyrl.po index d98a754..7cc1883 100644 --- a/languages/kk@Cyrl.po +++ b/languages/kk@Cyrl.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/km_KH.po b/languages/km_KH.po index 8a69b26..753c199 100644 --- a/languages/km_KH.po +++ b/languages/km_KH.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/ko.po b/languages/ko.po index d12dd5d..7624d61 100644 --- a/languages/ko.po +++ b/languages/ko.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/nb_NO.po b/languages/nb_NO.po index 9eab70a..369add2 100644 --- a/languages/nb_NO.po +++ b/languages/nb_NO.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/nl_NL.po b/languages/nl_NL.po index 6fcfa8b..e589ec2 100644 --- a/languages/nl_NL.po +++ b/languages/nl_NL.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/no.po b/languages/no.po index 2e8778f..b65090e 100644 --- a/languages/no.po +++ b/languages/no.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/pl.po b/languages/pl.po index 91efada..e49c038 100644 --- a/languages/pl.po +++ b/languages/pl.po @@ -108,29 +108,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -203,7 +239,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -233,151 +269,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -393,35 +437,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -465,10 +501,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/pressbooks-aldine.pot b/languages/pressbooks-aldine.pot index ee735b1..947d075 100644 --- a/languages/pressbooks-aldine.pot +++ b/languages/pressbooks-aldine.pot @@ -105,26 +105,62 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php:139, ../partials/content-accessibility-toolbar.php:6, ../partials/content-accessibility-toolbar.php:7 +#: ../inc/actions/namespace.php:142, ../partials/content-accessibility-toolbar.php:6, ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php:280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -185,7 +221,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php:71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php:71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -215,151 +251,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php:150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php:175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -375,35 +419,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -443,10 +479,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/pt_BR.po b/languages/pt_BR.po index 1d1a90d..81325ee 100644 --- a/languages/pt_BR.po +++ b/languages/pt_BR.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/pt_PT.po b/languages/pt_PT.po index 11b6d3c..8f5a5ac 100644 --- a/languages/pt_PT.po +++ b/languages/pt_PT.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/ro.po b/languages/ro.po index 2ed6cf0..5d7837c 100644 --- a/languages/ro.po +++ b/languages/ro.po @@ -107,29 +107,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -202,7 +238,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -392,35 +436,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -464,10 +500,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/ru_RU.po b/languages/ru_RU.po index 6bec732..37b3a53 100644 --- a/languages/ru_RU.po +++ b/languages/ru_RU.po @@ -108,29 +108,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -203,7 +239,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -233,151 +269,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -393,35 +437,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -465,10 +501,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/sk_SK.po b/languages/sk_SK.po index 60c50d2..9c05fa4 100644 --- a/languages/sk_SK.po +++ b/languages/sk_SK.po @@ -107,29 +107,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -202,7 +238,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -392,35 +436,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -464,10 +500,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/sv_SE.po b/languages/sv_SE.po index 73933f3..572dc13 100644 --- a/languages/sv_SE.po +++ b/languages/sv_SE.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/ta_IN.po b/languages/ta_IN.po index ac8a107..3a0c3ce 100644 --- a/languages/ta_IN.po +++ b/languages/ta_IN.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/ta_LK.po b/languages/ta_LK.po index fa2a3e6..b75c22a 100644 --- a/languages/ta_LK.po +++ b/languages/ta_LK.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/tr_TR.po b/languages/tr_TR.po index 7a6a540..18802ab 100644 --- a/languages/tr_TR.po +++ b/languages/tr_TR.po @@ -106,29 +106,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -201,7 +237,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -391,35 +435,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -463,10 +499,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/uk.po b/languages/uk.po index 265513d..e8c9932 100644 --- a/languages/uk.po +++ b/languages/uk.po @@ -107,29 +107,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -202,7 +238,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -392,35 +436,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -464,10 +500,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/zh.po b/languages/zh.po index 61ed173..76e6641 100644 --- a/languages/zh.po +++ b/languages/zh.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/zh_CN.po b/languages/zh_CN.po index b701a35..ff4bde7 100644 --- a/languages/zh_CN.po +++ b/languages/zh_CN.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/languages/zh_TW.po b/languages/zh_TW.po index f25b107..f422cfa 100644 --- a/languages/zh_TW.po +++ b/languages/zh_TW.po @@ -105,29 +105,65 @@ msgstr "" msgid "Footer Menu" msgstr "" -#: ../inc/actions/namespace.php:104 +#: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" msgstr "" -#: ../inc/actions/namespace.php:114 +#: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" msgstr "" -#: ../inc/actions/namespace.php139, +#: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" msgstr "" -#: ../inc/actions/namespace.php:140 +#: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" msgstr "" -#: ../inc/actions/namespace.php:223 +#: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "" + #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" msgstr "" @@ -200,7 +236,7 @@ msgstr "" msgid "Catalog" msgstr "" -#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" msgstr "" @@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" -#: ../inc/customizer/namespace.php:45 +#: ../inc/customizer/namespace.php:61 msgid "Primary Color" msgstr "" -#: ../inc/customizer/namespace.php:46 +#: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." msgstr "" -#: ../inc/customizer/namespace.php:51 +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 msgid "Accent Color" msgstr "" -#: ../inc/customizer/namespace.php:52 +#: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." msgstr "" -#: ../inc/customizer/namespace.php:57 +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:58 +#: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." msgstr "" -#: ../inc/customizer/namespace.php:63 +#: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" msgstr "" -#: ../inc/customizer/namespace.php:64 +#: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." msgstr "" -#: ../inc/customizer/namespace.php:83 +#: ../inc/customizer/namespace.php:111 msgid "Social Media" msgstr "" -#: ../inc/customizer/namespace.php:91 +#: ../inc/customizer/namespace.php:119 msgid "Facebook" msgstr "" -#: ../inc/customizer/namespace.php:100 +#: ../inc/customizer/namespace.php:128 msgid "Twitter" msgstr "" -#: ../inc/customizer/namespace.php:107 +#: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:114 +#: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" msgstr "" -#: ../inc/customizer/namespace.php:124 +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "" + +#: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" msgstr "" -#: ../inc/customizer/namespace.php:131 +#: ../inc/customizer/namespace.php:160 msgid "Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:138 +#: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" msgstr "" -#: ../inc/customizer/namespace.php:148 -msgid "Contact Form Title" -msgstr "" - -#: ../inc/filters/namespace.php:60 -msgid "Continued" -msgstr "" - -#: ../inc/filters/namespace.php:84 -msgid "Page Section" -msgstr "" - -#: ../inc/filters/namespace.php:90 -msgid "Page Section (Accent)" +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" msgstr "" -#: ../inc/filters/namespace.php:96 -msgid "Page Section (Bordered)" +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" msgstr "" -#: ../inc/filters/namespace.php:102 -msgid "Page Section (Borderless)" +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" msgstr "" -#: ../inc/filters/namespace.php:108 -msgid "Call to Action" +#: ../inc/filters/namespace.php:61 +msgid "Continued" msgstr "" -#: ../inc/helpers/namespace.php:168 +#: ../inc/helpers/namespace.php:171 msgid "Contact" msgstr "" -#: ../inc/helpers/namespace.php:175 +#: ../inc/helpers/namespace.php:178 msgid "Sign In" msgstr "" -#: ../inc/helpers/namespace.php:181 +#: ../inc/helpers/namespace.php:184 msgid "Sign Up" msgstr "" -#: ../inc/helpers/namespace.php:189 +#: ../inc/helpers/namespace.php:192 msgid "Admin" msgstr "" -#: ../inc/helpers/namespace.php:197 +#: ../inc/helpers/namespace.php:200 msgid "My Books" msgstr "" -#: ../inc/helpers/namespace.php:203 +#: ../inc/helpers/namespace.php:206 msgid "Sign Out" msgstr "" -#: ../inc/helpers/namespace.php:256 +#: ../inc/helpers/namespace.php:260 msgid "Name is required." msgstr "" -#: ../inc/helpers/namespace.php:260 +#: ../inc/helpers/namespace.php:264 msgid "Email is required." msgstr "" -#: ../inc/helpers/namespace.php:264 +#: ../inc/helpers/namespace.php:268 msgid "Email is invalid." msgstr "" -#: ../inc/helpers/namespace.php:268 +#: ../inc/helpers/namespace.php:272 msgid "Institution is required." msgstr "" -#: ../inc/helpers/namespace.php:272 +#: ../inc/helpers/namespace.php:276 msgid "Message is required." msgstr "" -#: ../inc/helpers/namespace.php:278 +#: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" msgstr "" -#: ../inc/helpers/namespace.php:289 +#: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" msgstr "" -#: ../inc/helpers/namespace.php:292 +#: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." msgstr "" @@ -390,35 +434,27 @@ msgstr "" msgid "About this book" msgstr "" -#: ../partials/contact-form.php:11 -msgid "Contact Us" -msgstr "" - -#: ../partials/contact-form.php:29 +#: ../partials/contact-form.php:30 msgid "Your name (required)" msgstr "" -#: ../partials/contact-form.php:37 +#: ../partials/contact-form.php:38 msgid "Your email address (required)" msgstr "" -#: ../partials/contact-form.php:45 +#: ../partials/contact-form.php:46 msgid "Your institution (required)" msgstr "" -#: ../partials/contact-form.php:53 +#: ../partials/contact-form.php:54 msgid "Your message (required)" msgstr "" -#: ../partials/contact-form.php:57 +#: ../partials/contact-form.php:58 msgid "Send" msgstr "" -#: ../partials/content-front-page.php:18 -msgid "Our Latest Titles" -msgstr "" - -#: ../partials/content-front-page.php:63 +#: ../partials/content-front-page.php:67 msgid "View Complete Catalog" msgstr "" @@ -462,10 +498,6 @@ msgstr "" msgid "Sort by" msgstr "" -#: ../partials/content-page-catalog.php:49 -msgid "Title" -msgstr "" - #: ../partials/content-page-catalog.php:50 msgid "Subject" msgstr "" diff --git a/readme.txt b/readme.txt index 07276f3..a25b949 100644 --- a/readme.txt +++ b/readme.txt @@ -14,9 +14,9 @@ [![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&color=brightgreen)](https://opencollective.com/pressbooks/) Tags: publishing, catalog, pressbooks, default-theme -Requires at least: 4.9.4 -Tested up to: 4.9.4 -Stable tag: 1.2.1 +Requires at least: 4.9.5 +Tested up to: 4.9.5 +Stable tag: 1.3.0 License: GNU General Public License v3 or later License URI: LICENSE @@ -38,6 +38,18 @@ TK. == Changelog == +=== 1.3.0 === + +**Minor Changes** + +- Add customizer options for dark (hover) colours: [#125](https://github.com/pressbooks/pressbooks-aldine/issues/125) +- Update Isotope to 3.0.6: [#120](https://github.com/pressbooks/pressbooks-aldine/issues/120) + +### Patches + +- Fix incorrect contact form title ([#122](https://github.com/pressbooks/pressbooks-aldine/issues/122)): [#123](https://github.com/pressbooks/pressbooks-aldine/issues/123) +- Don't run Intervention functions during AJAX: [#121](https://github.com/pressbooks/pressbooks-aldine/issues/121) + === 1.2.1 === **Patches** diff --git a/style.css b/style.css index c1c4eda..f8fe58e 100644 --- a/style.css +++ b/style.css @@ -2,7 +2,7 @@ Theme Name: Aldine Theme URI: https://github.com/pressbooks/pressbooks-aldine/ Description: Aldine is the default theme for the home page of Pressbooks networks. It is named for the Aldine Press, founded by Aldus Manutius in 1494, who is regarded by many as the world’s first publisher. -Version: 1.2.1 +Version: 1.3.0 Author: Pressbooks (Book Oven Inc.) Author URI: https://pressbooks.org Text Domain: pressbooks-aldine From 7f319fde9a966150a1f4b64b116f523ff8f4b169 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Wed, 13 Jun 2018 10:14:53 -0300 Subject: [PATCH 06/35] Create support.yml [ci skip] --- .github/support.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/support.yml diff --git a/.github/support.yml b/.github/support.yml new file mode 100644 index 0000000..fdb5f61 --- /dev/null +++ b/.github/support.yml @@ -0,0 +1,16 @@ +# Configuration for support-requests - https://github.com/dessant/support-requests + +# Label used to mark issues as support requests +supportLabel: support + +# Comment to post on issues marked as support requests. Add a link +# to a support page, or set to `false` to disable +supportComment: > + We use GitHub exclusively for bug reports and feature requests. + However, this issue appears to be a support request. Please use our + [support forum](http://discourse.pressbooks.org) to get help with Pressbooks. +# Close issues marked as support requests +close: true + +# Lock issues marked as support requests +lock: false From e2efbc96297afbd77249c105f8de9dd448463386 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 18 Jun 2018 09:11:01 -0300 Subject: [PATCH 07/35] Add move.yml [ci skip] --- .github/move.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/move.yml diff --git a/.github/move.yml b/.github/move.yml new file mode 100644 index 0000000..e69de29 From b1a49f908472b0c41074cd817d5f62b9045f68b1 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 18 Jun 2018 09:18:08 -0300 Subject: [PATCH 08/35] Switch build to wp dist-archive (fix #128) --- .distignore | 15 +++++++++++++++ .travis.yml | 9 +++++---- 2 files changed, 20 insertions(+), 4 deletions(-) create mode 100644 .distignore diff --git a/.distignore b/.distignore new file mode 100644 index 0000000..4ef9356 --- /dev/null +++ b/.distignore @@ -0,0 +1,15 @@ +.git +assets/src +bin +node_modules +tests +.editorconfig +.gitattributes +.github +.gitignore +.travis.yml +.tx +phpcs.ruleset.xml +phpunit.xml +webpack.mix.js +yarn.lock diff --git a/.travis.yml b/.travis.yml index 851dc3f..65fada1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,12 +43,13 @@ script: - composer test before_deploy: - export TRAVIS_PROJECT_SLUG="$(basename $TRAVIS_BUILD_DIR)" +- curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar +- chmod +x wp-cli.phar +- sudo mv wp-cli.phar /usr/local/bin/wp +- wp package install wp-cli/dist-archive-command - composer install --no-dev --optimize-autoloader - cd ../ -- zip -9 -ry $TRAVIS_BUILD_DIR/$TRAVIS_PROJECT_SLUG-$TRAVIS_TAG.zip $TRAVIS_PROJECT_SLUG - -x *.git* *assets/\* *node_modules/\* *tests/\* *.editorconfig* *.gitattributes* - *.github* *.gitignore* *.travis.yml* *package-lock.json* *phpcs.xml* *webpack.mix.js* - *yarn.lock* +- wp dist-archive $TRAVIS_PROJECT_SLUG $TRAVIS_BUILD_DIR/$TRAVIS_PROJECT_SLUG-$TRAVIS_TAG.zip - cd $TRAVIS_BUILD_DIR deploy: provider: releases From d283cc836c3afd9901d8c2fbc5480f655b8a9b11 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 25 Jun 2018 16:12:45 -0300 Subject: [PATCH 09/35] Enable WordPress 4.9.6 GDPR tools (#129) This PR lets Aldine (and by extension the Pressbooks landing page site) display the export and erase personal data panels introduced in WordPress 4.9.6. They will only be visible to those who have admin access to the root site (network managers). --- functions.php | 3 +++ inc/actions/namespace.php | 9 +++++++++ inc/intervention.php | 3 ++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 643187a..13b7c88 100644 --- a/functions.php +++ b/functions.php @@ -74,3 +74,6 @@ add_action( 'wp_ajax_pressbooks_aldine_update_catalog', '\Aldine\Admin\update_ca add_filter( 'wpmu_blogs_columns', '\Aldine\Admin\catalog_columns' ); add_action( 'manage_blogs_custom_column', '\Aldine\Admin\catalog_column', 1, 3 ); add_action( 'manage_sites_custom_column', '\Aldine\Admin\catalog_column', 1, 3 ); + +// Remove first submenu page from Tools. +add_action( 'admin_menu', '\Aldine\Actions\remove_tools_menu' ); diff --git a/inc/actions/namespace.php b/inc/actions/namespace.php index 50426fc..bab4247 100644 --- a/inc/actions/namespace.php +++ b/inc/actions/namespace.php @@ -292,3 +292,12 @@ function tinymce_l18n() { Date: Tue, 3 Jul 2018 13:50:28 -0300 Subject: [PATCH 10/35] Prepare 1.4.0 release --- README.md | 13 ++++++++++--- readme.txt | 12 +++++++++--- style.css | 2 +- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 37a40a1..f93e30a 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ [![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&color=brightgreen)](https://opencollective.com/pressbooks/) **Tags:** publishing, catalog, pressbooks, default-theme -**Requires at least:** 4.9.5 -**Tested up to:** 4.9.5 -**Stable tag:** 1.3.0 +**Requires at least:** 4.9.6 +**Tested up to:** 4.9.6 +**Stable tag:** 1.4.0 **License:** GNU General Public License v3 or later **License URI:** LICENSE @@ -43,6 +43,13 @@ TK. ## Changelog +# 1.4.0 + +**Minor Changes** + +- Add support for privacy tools in WordPress 4.9.6: [#129](https://github.com/pressbooks/pressbooks-aldine/pull/129) + + # 1.3.0 **Minor Changes** diff --git a/readme.txt b/readme.txt index a25b949..212ce65 100644 --- a/readme.txt +++ b/readme.txt @@ -14,9 +14,9 @@ [![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&color=brightgreen)](https://opencollective.com/pressbooks/) Tags: publishing, catalog, pressbooks, default-theme -Requires at least: 4.9.5 -Tested up to: 4.9.5 -Stable tag: 1.3.0 +Requires at least: 4.9.6 +Tested up to: 4.9.6 +Stable tag: 1.4.0 License: GNU General Public License v3 or later License URI: LICENSE @@ -38,6 +38,12 @@ TK. == Changelog == +=== 1.4.0 === + +**Minor Changes** + +- Add support for privacy tools in WordPress 4.9.6: [#129](https://github.com/pressbooks/pressbooks-aldine/pull/129) + === 1.3.0 === **Minor Changes** diff --git a/style.css b/style.css index f8fe58e..e2f2402 100644 --- a/style.css +++ b/style.css @@ -2,7 +2,7 @@ Theme Name: Aldine Theme URI: https://github.com/pressbooks/pressbooks-aldine/ Description: Aldine is the default theme for the home page of Pressbooks networks. It is named for the Aldine Press, founded by Aldus Manutius in 1494, who is regarded by many as the world’s first publisher. -Version: 1.3.0 +Version: 1.4.0 Author: Pressbooks (Book Oven Inc.) Author URI: https://pressbooks.org Text Domain: pressbooks-aldine From aa69517c52c013182a14567d76fabac87a1181cb Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Tue, 3 Jul 2018 13:57:21 -0300 Subject: [PATCH 11/35] Update translations --- languages/he.mo | Bin 599 -> 5299 bytes languages/he.po | 135 ++++++----- languages/hu_HU.mo | Bin 618 -> 7231 bytes languages/hu_HU.po | 186 ++++++++------- languages/it_IT.mo | Bin 2037 -> 9051 bytes languages/it_IT.po | 184 ++++++++------- languages/lt_LT.mo | Bin 0 -> 7676 bytes languages/lt_LT.po | 567 +++++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 839 insertions(+), 233 deletions(-) create mode 100644 languages/lt_LT.mo create mode 100644 languages/lt_LT.po diff --git a/languages/he.mo b/languages/he.mo index 92faea4b5e68b3fb0e64ddb96ace88ae92516b83..a98b54370086345a104dd737fab607a80c381f94 100644 GIT binary patch literal 5299 zcma);TWlOx9fwb$6iA_kQlOMePfZgg+|!ufTWGe+_EgU*HY!Duir+H^M=93w%3#3~GJ?_QEIOyWyo`{JW4p^Aaza z_=|$Sg4*{g?1z7blHZL{TGt0}f_K2T!Gln8AA(vJ!0TWNH^DDJ`SAk07QR@_{}>|L zybR^nZ=wA96Wj~`4c`a%phS8fh0^0erc46)GoLT|UxbS5m!ae=!AIc=tiWpsiuUa) zxF1UYr=jFO4EMpuAfYuE;CtZ<@Wb%?@PqJG_p0v3S0E;sm!ahT9!lR|A%Et& zcjbBi2-JKD-VC?HG8}=M;8RfRzXs+1ccA3H1U~?OU5x)7eunC! zS`1K1?olo`(qxPDsdg3T%{0YHI#sWC)AXp;_4LtnF4|8QAF_Xd)=%3;Q{Hya);_vp z?komWSD&QGf70dZPB~QF+(FaxW*VjEYE1D{P3S4n?s8xG%L2u%o2K*IOWR4)vxTM{ zkRtc=@cu;cEhvx5mF^dv)$KI1Ybt@5HOJV ziP`O?UOk#HyQ4;fC5iQ7-&X5U;@8RyhN)Lg+q8QcUQqA!_C|5zbsakzq;?b>O(x|6OQy;`=jv%6+K<+IjH ze7hHcb|iSxH+yP9YTr;^chVN-Y_|j?2#I3*QnJ|$P1}3)We$1`U$(AVcF;Q-OgMSwV3e;S80b^iZMT!& zQQwXcQtQ=fe$A#4hLFrW!)0@*$&}>V;nr9^NMv_DI1;tus-J(4k_RWx40{uPQZd8P zluvN%*tG3V%y1kuym;CU`C-f4PwJ+nr8 z{xIhuiro!7&@>}Qf~JhAQX{JNk*FGYbu6s~9-TOz?y+O7w3D)imsTe+#2KCBHl%*s zNXmA&?y4=tQE$QvLOT_tlQy9uY%Lfc$8yT>h(A3Q#kB+nR)srZMaW%IP$0I|ta-S+ zUas4k5?V9T8hhO5sKG{%8fC$Z>ijmz0!ou+-J4EwTSGrZ@sW0BdoWCy=HRkE>;you z!1uIl@^krM;474kX5CMH+dlY@C}qA5w#p{zjuLwpBXUE`!i{nAL@OFd+flV#BnVuaxw1)o-&H6DA1N`V{k77Aew+}43PLZl zYQq69NlT-#7bbNtRsA-+BfjU1XyyX!j?Pdqa`%LyUam%sojrC-U;lQbgcB{ISsL}d zM#b*)$6`{pX);ZlNu{@UYHF&SN=Gp6AJe|xRYQ7Hwj{lG_TRa!chc|OykThn(4JL` z`^$YBbc%>{X>_{jSFG;aUWzIR2W)lHixWQ`d|-5MY5VFrsiM|Pd%|j@+q+`7j|FMR z$_fG6FkElNUcID~nN)1pblqfd+knkK2RDUwaM1SKjT>!fyZNBkx7prh`)tMLlUvqL z_PaTj_qp}2Uy%29GATJ*kh67Q!^5TFNY!4thyN#MI)g2Q1HHH&XI*RxHt$2#LZTj>|O{G@u=OVb!(olk%DbIq#Bv{5fs zxzBu+`^;CZ+L_;l!`NTy!-FeL>^WAgx47W7;P&$4$(l9p9^aj3vtsjfnrtRJklo$$Kf9qhl9%TRFSwDS~Kj-zuf56vmo%$n?+)9~yY zYgqjyLU1o3XI8OU6O$ z=iP1$J;S1zY~H$^=sJV$3mG4CY$T4e&X#2fwMd-Dge8XNEDCViIKx)>yjc8xVcHc? zwpjd(*(}{|C|9!BaYFsm&LrCGgq*^9K@z!7;PWaCzlU+c{E( zU+$-plZH$4IDOm_oBwf|<`HvJIoEQXoJ-lVK6P42lj83L%MV2gm*ksrLNwh@#$BnY zf)-e>NSy9*q3#rxlB(^O+iQ`I+9Z1$kbn)_u5=%@|%w zDy0R?CB=%JD&h@7|@4SMd=oIxY zS|33rb$-T5%$ezDs9k zv%#)h&Lv&NXYxp8^S3Hyr!TX|73~_Q%x5u=16G7llDI8&;uf;ScAe$1BCDzm7iSg9 S8YzYSj~Vv4o8T09-uxGco``Y) delta 93 zcmdn2d7Z`Lo)F7a1|VPrVi_P-0b*t#)&XJ=umECNCI$veAPrIj1Ct+eX-*E{J|Sde atx%9tT9lY$tC6RmXsckTxw(T!h7kZJ$PP6C diff --git a/languages/he.po b/languages/he.po index 43953f5..363adc5 100644 --- a/languages/he.po +++ b/languages/he.po @@ -1,14 +1,17 @@ # Copyright (C) 2018 pressbooks-aldine # This file is distributed under the same license as the pressbooks-aldine package. +# Translators: +# makeabook project , 2018 msgid "" msgstr "" "Project-Id-Version: pressbooks-aldine\n" +"Last-Translator: makeabook project , 2018\n" "Language-Team: Hebrew (https://www.transifex.com/pressbooks/teams/9194/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x: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" @@ -21,7 +24,7 @@ msgstr "" #: ../404.php:21 msgid "It looks like nothing was found at this location." -msgstr "" +msgstr "נראה שלא נמצא דבר במיקום זה." #: ../comments.php:34 msgid "One thought on “%1$s”" @@ -33,10 +36,12 @@ msgid "%1$s thought on “%2$s”" msgid_plural "%1$s thoughts on “%2$s”" msgstr[0] "" msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: ../comments.php:63 msgid "Comments are closed." -msgstr "" +msgstr "אין אפשרות להגיב." #: ../footer.php40, ../footer.php:44 msgid "%s on Facebook" @@ -48,23 +53,23 @@ msgstr "" #: ../footer.php:70 msgid "Powered by %s" -msgstr "" +msgstr "מופעל על ידי %s" #: ../footer.php:72 msgid "Open Source" -msgstr "" +msgstr "קוד פתוח" #: ../footer.php:73 msgid "Open Textbooks" -msgstr "" +msgstr "ספרי לימוד" #: ../footer.php:74 msgid "Open Book Publishing" -msgstr "" +msgstr "פרסום הספר- הוצאה לאור" #: ../footer.php75, ../inc/activation/namespace.php:27 msgid "Learn More" -msgstr "" +msgstr "למד עוד" #: ../footer.php79, ../footer.php:83 msgid "Pressbooks on Facebook" @@ -84,7 +89,7 @@ msgstr "" #: ../header.php:44 msgid "Skip to content" -msgstr "" +msgstr "עבור לתוכן" #: ../header.php:64 msgid "Logo for %s" @@ -96,11 +101,11 @@ msgstr "" #: ../inc/intervention.php:12 msgid "Hello," -msgstr "" +msgstr "שלום," #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 msgid "Primary Menu" -msgstr "" +msgstr "תפריט ראשי" #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 msgid "Footer Menu" @@ -118,16 +123,16 @@ msgstr "" #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" -msgstr "" +msgstr "הגדל את הכתב" #: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" -msgstr "" +msgstr "הקטן את גודל הכתב" #: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." -msgstr "" +msgstr "עמוד זה מציג את קטלוג הרשת שלך, אין תוכן לערוך." #: ../inc/actions/namespace.php:279 msgid "Page Section" @@ -135,7 +140,7 @@ msgstr "" #: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 msgid "Title" -msgstr "" +msgstr "כותרת" #: ../inc/actions/namespace.php:281 msgid "Standard" @@ -143,7 +148,7 @@ msgstr "" #: ../inc/actions/namespace.php:282 msgid "Accent" -msgstr "" +msgstr "הדגשה" #: ../inc/actions/namespace.php:283 msgid "Bordered" @@ -159,11 +164,11 @@ msgstr "" #: ../inc/actions/namespace.php:288 msgid "Text" -msgstr "" +msgstr "טקסט" #: ../inc/actions/namespace.php:289 msgid "Link" -msgstr "" +msgstr "קישור" #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" @@ -178,7 +183,7 @@ msgstr "" #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php:143 msgid "About" -msgstr "" +msgstr "אודות" #: ../inc/activation/namespace.php:39 msgid "" @@ -189,7 +194,7 @@ msgstr "" #: ../inc/activation/namespace.php:40 msgid "MOBI (for Kindle ebooks)" -msgstr "" +msgstr "MOBI (לספרי Kindle)" #: ../inc/activation/namespace.php:41 msgid "EPUB (for all other ebookstores)" @@ -205,12 +210,12 @@ msgstr "" #: ../inc/activation/namespace.php:46 msgid "see here" -msgstr "" +msgstr "ראה כאן" #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php:173 msgid "Help" -msgstr "" +msgstr "עזרה" #: ../inc/activation/namespace.php:58 msgid "" @@ -235,11 +240,11 @@ msgstr "" #: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, #: ../inc/activation/namespace.php158, ../page-catalog.php:4 msgid "Catalog" -msgstr "" +msgstr "קטלוג" #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" -msgstr "" +msgstr "בית" #: ../inc/admin/namespace.php:30 msgid "Catalog updated." @@ -247,7 +252,7 @@ msgstr "" #: ../inc/admin/namespace.php:31 msgid "Sorry, but your catalog was not updated. Please try again." -msgstr "" +msgstr "מצטערים, אבל הקטלוג לא עודכן. בבקשה נסו שנית" #: ../inc/admin/namespace.php:32 msgid "Dismiss this notice." @@ -260,12 +265,12 @@ msgstr "" #: ../inc/admin/namespace.php:72 msgctxt "pressbooks-aldine" msgid "Show in Catalog" -msgstr "" +msgstr "הצג בקטלוג" #: ../inc/admin/namespace.php:73 msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." -msgstr "" +msgstr "[ספר זה הוא פרטי, לא תוכל להציגו בקטלוג שלך]" #: ../inc/customizer/namespace.php:61 msgid "Primary Color" @@ -317,7 +322,7 @@ msgstr "" #: ../inc/customizer/namespace.php:111 msgid "Social Media" -msgstr "" +msgstr "מדיה חברתית" #: ../inc/customizer/namespace.php:119 msgid "Facebook" @@ -345,63 +350,63 @@ msgstr "" #: ../inc/customizer/namespace.php:160 msgid "Contact Form" -msgstr "" +msgstr "טופס ליצירת קשר" #: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" -msgstr "" +msgstr "הצג טופס ליצירת קשר" #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 msgid "Contact Us" -msgstr "" +msgstr "צור איתנו קשר" #: ../inc/customizer/namespace.php:178 msgid "Contact Form Title" -msgstr "" +msgstr "כותרת הפניה" #: ../inc/customizer/namespace.php:188 msgid "Contact Email" -msgstr "" +msgstr "מייל ליצירת קשר" #: ../inc/filters/namespace.php:61 msgid "Continued" -msgstr "" +msgstr "מתמשך" #: ../inc/helpers/namespace.php:171 msgid "Contact" -msgstr "" +msgstr "יצירת קשר" #: ../inc/helpers/namespace.php:178 msgid "Sign In" -msgstr "" +msgstr "התחבר" #: ../inc/helpers/namespace.php:184 msgid "Sign Up" -msgstr "" +msgstr "הירשם" #: ../inc/helpers/namespace.php:192 msgid "Admin" -msgstr "" +msgstr "מנהל" #: ../inc/helpers/namespace.php:200 msgid "My Books" -msgstr "" +msgstr "הספר שלי" #: ../inc/helpers/namespace.php:206 msgid "Sign Out" -msgstr "" +msgstr "התנתק" #: ../inc/helpers/namespace.php:260 msgid "Name is required." -msgstr "" +msgstr "נדרש שם." #: ../inc/helpers/namespace.php:264 msgid "Email is required." -msgstr "" +msgstr "נדרשת כתובת מייל" #: ../inc/helpers/namespace.php:268 msgid "Email is invalid." -msgstr "" +msgstr "כתובת מייל לא חוקית." #: ../inc/helpers/namespace.php:272 msgid "Institution is required." @@ -417,47 +422,47 @@ msgstr "" #: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" -msgstr "" +msgstr "הודעתך נשלחה!" #: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." -msgstr "" +msgstr "לא ניתן לשלוח את ההודעה" #: ../page-catalog.php:55 msgid "No Books Found" -msgstr "" +msgstr "לא נמצאו ספרים" #: ../page-catalog.php:58 msgid "No books have been added to the catalog." -msgstr "" +msgstr "עדיין לא הוספת ספר לקטלוג" #: ../partials/book.php:27 msgid "About this book" -msgstr "" +msgstr "אודות הספר" #: ../partials/contact-form.php:30 msgid "Your name (required)" -msgstr "" +msgstr "שם (נדרש)" #: ../partials/contact-form.php:38 msgid "Your email address (required)" -msgstr "" +msgstr "כתובת המייל שלך (נדרש)" #: ../partials/contact-form.php:46 msgid "Your institution (required)" -msgstr "" +msgstr "המוסד שלך (נדרש)" #: ../partials/contact-form.php:54 msgid "Your message (required)" -msgstr "" +msgstr "ההודעה שלך (נדרש)" #: ../partials/contact-form.php:58 msgid "Send" -msgstr "" +msgstr "שלח" #: ../partials/content-front-page.php:67 msgid "View Complete Catalog" -msgstr "" +msgstr "צפה בקטלוג המלא" #: ../partials/content-none.php:14 msgid "Nothing Found" @@ -465,13 +470,15 @@ msgstr "" #: ../partials/content-none.php:25 msgid "Ready to publish your first post? Get started here." -msgstr "" +msgstr "מוכן לפרסום הפוסט הראשון שלך? Get started here." #: ../partials/content-none.php:38 msgid "" "Sorry, but nothing matched your search terms. Please try again with some " "different keywords." msgstr "" +"מצטערים, לא נמצאו תוצאות עבור מילות החיפוש הללו. בבקשה נסו להשתמש במילות " +"מפתח אחרות." #: ../partials/content-none.php:44 msgid "" @@ -493,15 +500,15 @@ msgstr "" #: ../partials/content-page-catalog.php:37 msgid "All Licenses" -msgstr "" +msgstr "כל הרשיונות" #: ../partials/content-page-catalog.php:46 msgid "Sort by" -msgstr "" +msgstr "מיין לפי" #: ../partials/content-page-catalog.php:50 msgid "Subject" -msgstr "" +msgstr "נושא" #: ../partials/content-page-catalog.php:51 msgid "Latest" @@ -513,27 +520,27 @@ msgstr "" #: ../partials/content-page-catalog.php:59 msgid "Submit" -msgstr "" +msgstr "שלח" #: ../partials/content-page.php22, ../partials/content.php:45 msgid "Pages:" -msgstr "" +msgstr "עמודים:" #: ../partials/content-page.php:35 msgid "Edit %s" -msgstr "" +msgstr "ערוך %s" #: ../partials/content.php:34 msgid "Continue reading \"%s\"" -msgstr "" +msgstr "המשך לקרוא \"%s\"" #: ../partials/paged-navigation.php:2 msgid "Navigation" -msgstr "" +msgstr "ניווט" #: ../search.php:21 msgid "Search Results for: %s" -msgstr "" +msgstr "חפש תוצאות עבור: %s" #: ../searchform.php:3 msgctxt "label" diff --git a/languages/hu_HU.mo b/languages/hu_HU.mo index dddcbcb641bad2b6721ec8f4be06a91c711fc85c..7baa7ec19664246f2c8627c960ac2447ac819e1c 100644 GIT binary patch literal 7231 zcmZ{oYm6kvUBD~k^56nVoWvnuAa#(0TYG2r&ORL9o-gs;-tO&YAGdgRo!ButYG!I@ zdZ!;hm#P|DbIDV<_Xj z0^bF{4rQFbgFgztU$*}zl=n~5sNwtJ1Mn#*?>!CaqHNh7m;4NT8|}XhrQh$t_rW{x zC*hyNH^aY&r{MQW{wusr{Xd|{bD1xBe;LaApM>Y3gYy2DARl$emyGijDE+<)Mec7w zk?(s@hdr6L1-d-F^j%ob9syDJb?IKzaW*d>+08=i$FWd9TVM zRiv2zaMV@nzF6uh`0DKNg|4&2dcN^Xx_ti6Q2g;# zDC>PUi<^OuK(XI86nn)`*7cdP{Wg^TUxXs(%aD)yGrmM$--f>c{}0N#K7^9RF0)X^ zc?_<>Cn2U(x1p@(b5Q2}Lnwa!Cs5Y&DwK7;kxpXQ_d;36Lr~`ZFqD34P~?3E;-abz zWql4l27eQZystoc?;B9Y{fDysRVebkmBsx!d;tC}dbIcu`x2D*|ER3L zQt~gL_}AY+(Z~NlnfD=t5jh`*QojIEy;>;warmp$JMd}veJJxh^;5-rD^T=UgJR$3 zp!k!8&%p?ae*Uy<|4S%-@lD7_{Wo6>sUAdmQlEpeo{zzwhX%?zUx2c%--R3S%TV<7 zgYx-%a4K2HEEM@3hi`zROMLDVl*cJ^6p>l%E!WQ#@ZVySOO#p4if_Tj@S_wN_gTtW zid-VkFHvMYa>@L^NRc>_>ys4Gg z*NNN{!fI1)xI{m4iQh`jc#0y|BL%$OdCkD96p0PF#K+|lACapN0-FV=(@s9t*k7-izwt~uM)*Ly+JYM1DB(+T31Hu`FkbaWEy z&D3UDol2&z)RUeozVB<+t{r4r`l&0;D2UaSFw|>7!^WBAO)9lseb+WzrmiMw)26mr z-h_;=7K}4t(i&0sx=rJ3v#J(CYf`-wgwCdPOQOieF4HEpx)COs?~=sMG#n2-^a#mZstqekT-&DFdL_98ea$E@gGM7k+&5vsLdGqr{Zubt`Bk-K8vZ3!EKk=5BaKb9 zlxkB;NrDRWx{Z5kDHZWHP0Q+$;_h!M*EzQAb|!|MGUu`l!(>*0u3Anat5$aOAnEB+ zK)usT{lZL^1(`E(!_Mk1=0H7-Qq^=%b!^>Ul6G`tVkAndY9$_vwG!W_(3LoIf$O;d z=R!dfb*wlYil6B)=va-a+amCu$@EUri<{cG!U$o~F!FX)t>Gh?Q){?Ltk==JS_|Ti zTEB61rLfLw5H~|xnr23=<7%R`6Vt8_ysu|!!$hxnv|;)|%g?1YlA;%$fh=GJY~ zx4Ld^tWC3Nn-W4OO(UWBbCr(8GK$x3bm@3iB5Si(4}(lrsC;7$O*X9ZHmwmRtj|}n zc{MSa2#)>-6_-?cm_bC)duf38wse;4xIKvr*G5yJB}&AaqJL)zXx}+NPCQmb#Cs!C zc8YBwdbg0O`kFbjAj0s)2;DSk_Pl)K8LRqPnaIRigqji;Wt1aoXKy*Lv00rp+DT~A zaG;|kPFktywli7>VQA{XtlkNV(G4b#lejXfmv8U21D4Y@UGl-KmQE3dC(d-#3tb>` zj#d`Ljj-25Hz#z6+l>QnN>-Y;_5w$YvG^b|=|C?eVKS+aNNg+ho_O+s56POvD{Adz zkGG06ME|I0xj!~lEojAhB`$b_tm+%KyQB0SA zr3?E2BpAmj`Mz=etB&lYYGjF~Nl`?R>xEI^)E359Te3lPCH$H})(y?T`{yKml=I;U zK7_=k8Ot1LLX?6MTvZkMdt|I__5iWC_b}P8jP929tD8oruvk?+6Id~g_%ZIYP;NK) zEs0z93khG@>GauALYh(jX)u+pUi&O6^T`iuZzR1?oEYU;ouTe(G3Mw!$!*enrf7~O z0Zon7v>9%~@;0w675R*n#jZk7G!a@-BBdF$0+Nkr)ujQxLF$-M#F7n9)e46gEw?+~ z%PS@%FzhMsvAD*lM`o>NGqWo5mJ?TVNnDOYU?j4IS5}&pX9zzgnn&3v!N+Df=IJ$) zxyn{*;w&_5hx7VM%ostUui1WnnCT}Q#8qV7Q|-iw>Z^?;`pB$)^xXL;csFkK@R7=v zHPO6Y?!_&W24t4A#qD55pKUwW&F1Ik_V)IwPNoTV>@68&ZX(N^7q(Nk5s5z^N?8 zjl?Gw{X{)*W2xu0pX>By*h@`VkqnT{>$vNy+2uzsv46^w%V%SK=CVFNbLsRaDw~P8 zb>%AiYS*~-yslO!t*d2tu3_AHee>p}o0iY5`SY`nHZI+ah2UnKB;E4fKbyTEPj8Le zXCI?pzGbtS0EF0RaIDWAWkLp|be%czSW#hO>LZ>#^ zQ!+MvsjF4VBKc9PmrdR3os{Du0{1y5)`rJ-n5Ls$em6zJ%pz1f84mM(7IhQ?c5t?= zzKLVg(X^+1Q)RerBV&_v<*{)gKa3`gJ2vd+2aZG*2KxBRX=u9lKO8^O@-inQ^s~$9 zqca-1Zgk&lfR-%dGgu`p`nGZB>+OnDaO z$lql2h$d|-g_%T2+7d?j0cM#|jDXzn0J-T}q}_(BtT-E^k$asiKWOoTVZ1|o4a$uE zw?u<9I<%4m3)RYlEoNyA#_enQejQCW*fQh%o|45UVUzqgWv$n1%=g6rg|70?yQn7$ zIXdBI*gYG@`95~Z_pu@}1ZGy%@|Rorky<)_(NBc8uvhgFqaKjmTi$mMTI^>S88JtT zZ)WA2BJAkj=GduH2)11m>r1b%tf)az=i*A&qr+Y;}s z*DVL_$?1A@vMx<+J4lO#zrbjC&Iut_iU=m+P<6!4N zk5lMaLXXiW?PVmHX5UCqk2Qs9IC%R=-SP`1jy4AQVd!)rOD8Z*arUy2JT0!=$&Z@q zhWJVaC+m2beARU3r*jDo-WrG-9^XNABcJdxmzgC$B;T-5PUL-?a!QTRu1G#{2Q*>B zQ9A3OvQeIETgM3xpO$z0Q8wRqy$I`9?-ODoNIBAIkmDD}vsd+08kFP4$RP^}ylHpx zgYwusnoEm{SQ4HRmpK<9XSM4!6Jk6bBw2ZS&-ZtNd>`fWkRO2Yz_b!y+X*@@KkRFX zQGNsGN7>YJedk_S4CT9Lu72WYhZ&#J<(JU-kb$AglOKtmki*jsW3@=c5CZ&BP_|fk z#$N?wfYtn7*hC1mPDu0nj}gY{b(BfR$ue<|H1eu^+Af4*o!wq)k8ibEfyyF@%c&G9+>ChV}i5Vu5eYIIB*5p$vXdm(XHM*y6o z(+eByc=-{AVV627!E`9$4@JW0HC?YW-rH;(yx!EirkJ*hF4zu+eM^eugvH-IO;zM+ z)F+~NgVfMP-?r4^P@ADHvNY+&tCy@9u<~(QWa;Dh#?|se5}VHmIJ!+c7R4h};b>!x z^Y@W#FQcCdxP%Po#8ajs*QYBH#3x+#kBo!0-m>8?CxX?p{Isw1- zQJE5dNHg2G*KcTvd+VIGp;wP6c$7`0Puc9S^cfN*|2do#fS-JQGC2eI-wMQMRBY(@ zK+q~T2ETFoc=W#+@Rfl7wQR~dhvdC70YUz7+DljIGWmA$, 2018 msgid "" msgstr "" "Project-Id-Version: pressbooks-aldine\n" +"Last-Translator: Antonio Devís , 2018\n" "Language-Team: Hungarian (Hungary) (https://www.transifex.com/pressbooks/teams/9194/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +24,7 @@ msgstr "" #: ../404.php:21 msgid "It looks like nothing was found at this location." -msgstr "" +msgstr "Úgy tűnik, semmit nem találtunk ezen a helyen." #: ../comments.php:34 msgid "One thought on “%1$s”" @@ -36,7 +39,7 @@ msgstr[1] "" #: ../comments.php:63 msgid "Comments are closed." -msgstr "" +msgstr "A hozzászólások le vannak zárva." #: ../footer.php40, ../footer.php:44 msgid "%s on Facebook" @@ -52,7 +55,7 @@ msgstr "" #: ../footer.php:72 msgid "Open Source" -msgstr "" +msgstr "Nyílt Forráskód" #: ../footer.php:73 msgid "Open Textbooks" @@ -60,19 +63,19 @@ msgstr "" #: ../footer.php:74 msgid "Open Book Publishing" -msgstr "" +msgstr "Nyílt Könyvkiadás" #: ../footer.php75, ../inc/activation/namespace.php:27 msgid "Learn More" -msgstr "" +msgstr "Tudjon meg többet" #: ../footer.php79, ../footer.php:83 msgid "Pressbooks on Facebook" -msgstr "" +msgstr "Pressbooks a Facebookon" #: ../footer.php85, ../footer.php:89 msgid "Pressbooks on Twitter" -msgstr "" +msgstr "Pressbooks a Twitteren" #: ../functions.php:18 msgid "Dependencies Missing" @@ -84,7 +87,7 @@ msgstr "" #: ../header.php:44 msgid "Skip to content" -msgstr "" +msgstr "Ugrás a tartalomra" #: ../header.php:64 msgid "Logo for %s" @@ -96,15 +99,15 @@ msgstr "" #: ../inc/intervention.php:12 msgid "Hello," -msgstr "" +msgstr "Szia," #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 msgid "Primary Menu" -msgstr "" +msgstr "Főmenü" #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 msgid "Footer Menu" -msgstr "" +msgstr "Lábléc Menü" #: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" @@ -118,28 +121,30 @@ msgstr "" #: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php:7 msgid "Increase Font Size" -msgstr "" +msgstr "Betűméret Növelése" #: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" -msgstr "" +msgstr "Betűméret Csökkentése" #: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +"Ez az oldal megjeleníti a hálózati katalógust, így nincs szerkeszteni való " +"tartalom." #: ../inc/actions/namespace.php:279 msgid "Page Section" -msgstr "" +msgstr "Oldal-szekció" #: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 msgid "Title" -msgstr "" +msgstr "Cím" #: ../inc/actions/namespace.php:281 msgid "Standard" -msgstr "" +msgstr "Sztenderd" #: ../inc/actions/namespace.php:282 msgid "Accent" @@ -147,11 +152,11 @@ msgstr "" #: ../inc/actions/namespace.php:283 msgid "Bordered" -msgstr "" +msgstr "Határolt" #: ../inc/actions/namespace.php:284 msgid "Borderless" -msgstr "" +msgstr "Nincs határ" #: ../inc/actions/namespace.php:287 msgid "Call to Action" @@ -159,26 +164,28 @@ msgstr "" #: ../inc/actions/namespace.php:288 msgid "Text" -msgstr "" +msgstr "Szöveg" #: ../inc/actions/namespace.php:289 msgid "Link" -msgstr "" +msgstr "Link" #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" -msgstr "" +msgstr "A Pressbookról" #: ../inc/activation/namespace.php:26 msgid "" "Pressbooks is easy-to-use book writing software that lets you create a book " "in all the formats you need to publish." msgstr "" +"A Pressbooks egyszerűen használható könyvíró szoftver, amelynek segítségével" +" könyveket készíthet, bármely formátumban." #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php:143 msgid "About" -msgstr "" +msgstr "Rólunk" #: ../inc/activation/namespace.php:39 msgid "" @@ -186,18 +193,22 @@ msgid "" "publish textbooks, scholarly monographs, syllabi, fiction and non-fiction " "books, white papers, and more in multiple formats including:" msgstr "" +"A Pressbooks egy egyszerű könyvkészítő szoftver. A Pressbooks segítségével " +"többféle formátumban kiadhat tankönyveket, tudományos monográfiákat, " +"tananyagokat, fiktív és valós könyveket, tanulmányokat, stb." #: ../inc/activation/namespace.php:40 msgid "MOBI (for Kindle ebooks)" -msgstr "" +msgstr "MOBI (Kindle e-könyvekhez)" #: ../inc/activation/namespace.php:41 msgid "EPUB (for all other ebookstores)" -msgstr "" +msgstr "EPUB (minden más e-könyvtár esetében)" #: ../inc/activation/namespace.php:42 msgid "designed PDF (for print-on-demand and digital distribution)" msgstr "" +"tervezett PDF (nyomtatásra igény szerint és digitális terjesztés esetén)" #: ../inc/activation/namespace.php:45 msgid "For more information about Pressbooks, %s." @@ -205,12 +216,12 @@ msgstr "" #: ../inc/activation/namespace.php:46 msgid "see here" -msgstr "" +msgstr "lásd itt" #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php:173 msgid "Help" -msgstr "" +msgstr "Súgó" #: ../inc/activation/namespace.php:58 msgid "" @@ -220,47 +231,48 @@ msgstr "" #: ../inc/activation/namespace.php:59 msgid "4 Step Guide to Making a Book on Pressbooks" -msgstr "" +msgstr "Hogyan készítsünk könyvet a Pressbookson 4 lépésben" #: ../inc/activation/namespace.php:60 msgid "Guide to Using Pressbooks" -msgstr "" +msgstr "Útmutató a Pressbooks használatához" #: ../inc/activation/namespace.php:62 msgid "" "If you require further assistance, please contact your network manager." -msgstr "" +msgstr "Ha további segítségre van szüksége, forduljon a hálózatkezelőjéhez." #: ../inc/activation/namespace.php67, ../inc/activation/namespace.php116, #: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, #: ../inc/activation/namespace.php158, ../page-catalog.php:4 msgid "Catalog" -msgstr "" +msgstr "Katalógus" #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" -msgstr "" +msgstr "Főoldal" #: ../inc/admin/namespace.php:30 msgid "Catalog updated." -msgstr "" +msgstr "Katalógus frissítve." #: ../inc/admin/namespace.php:31 msgid "Sorry, but your catalog was not updated. Please try again." msgstr "" +"Sajnáljuk, de a katalógusát nem tudtuk frissíteni. Kérjük, próbálja újra." #: ../inc/admin/namespace.php:32 msgid "Dismiss this notice." -msgstr "" +msgstr "Értesítés bezárása" #: ../inc/admin/namespace.php:61 msgid "In Catalog" -msgstr "" +msgstr "Katalógusban" #: ../inc/admin/namespace.php:72 msgctxt "pressbooks-aldine" msgid "Show in Catalog" -msgstr "" +msgstr "Mutassa a Katalógusban" #: ../inc/admin/namespace.php:73 msgctxt "pressbooks-aldine" @@ -269,7 +281,7 @@ msgstr "" #: ../inc/customizer/namespace.php:61 msgid "Primary Color" -msgstr "" +msgstr "Főszín" #: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." @@ -301,11 +313,11 @@ msgstr "" #: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" -msgstr "" +msgstr "Előtér Főszíne" #: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." -msgstr "" +msgstr "Fő háttéren használt szöveghez." #: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" @@ -317,23 +329,23 @@ msgstr "" #: ../inc/customizer/namespace.php:111 msgid "Social Media" -msgstr "" +msgstr "Közösségi Média" #: ../inc/customizer/namespace.php:119 msgid "Facebook" -msgstr "" +msgstr "Facebook" #: ../inc/customizer/namespace.php:128 msgid "Twitter" -msgstr "" +msgstr "Twitter" #: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" -msgstr "" +msgstr "Címoldal Katalógus" #: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" -msgstr "" +msgstr "Mutassa a Címoldal Katalógust" #: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 msgid "Our Latest Titles" @@ -341,75 +353,75 @@ msgstr "" #: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" -msgstr "" +msgstr "Címoldal Katalógusának Címe" #: ../inc/customizer/namespace.php:160 msgid "Contact Form" -msgstr "" +msgstr "Kapcsolatfelvéteteli Űrlap" #: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" -msgstr "" +msgstr "Mutassa a Kapcsolatfelvételi Űrlapot" #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 msgid "Contact Us" -msgstr "" +msgstr "Lépjen kapcsolatba velünk" #: ../inc/customizer/namespace.php:178 msgid "Contact Form Title" -msgstr "" +msgstr "Kapcsolatfelvételi Űrlap Címe" #: ../inc/customizer/namespace.php:188 msgid "Contact Email" -msgstr "" +msgstr "Email Cím" #: ../inc/filters/namespace.php:61 msgid "Continued" -msgstr "" +msgstr "Folytatás" #: ../inc/helpers/namespace.php:171 msgid "Contact" -msgstr "" +msgstr "Kapcsolat" #: ../inc/helpers/namespace.php:178 msgid "Sign In" -msgstr "" +msgstr "Bejelentkezés" #: ../inc/helpers/namespace.php:184 msgid "Sign Up" -msgstr "" +msgstr "Regisztráció" #: ../inc/helpers/namespace.php:192 msgid "Admin" -msgstr "" +msgstr "Admin" #: ../inc/helpers/namespace.php:200 msgid "My Books" -msgstr "" +msgstr "Könyveim" #: ../inc/helpers/namespace.php:206 msgid "Sign Out" -msgstr "" +msgstr "Kilépés" #: ../inc/helpers/namespace.php:260 msgid "Name is required." -msgstr "" +msgstr "Név szükséges." #: ../inc/helpers/namespace.php:264 msgid "Email is required." -msgstr "" +msgstr "Email szükséges" #: ../inc/helpers/namespace.php:268 msgid "Email is invalid." -msgstr "" +msgstr "Érvénytelen email cím" #: ../inc/helpers/namespace.php:272 msgid "Institution is required." -msgstr "" +msgstr "Intézmény szükséges." #: ../inc/helpers/namespace.php:276 msgid "Message is required." -msgstr "" +msgstr "Üzenet szükséges." #: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" @@ -417,51 +429,51 @@ msgstr "" #: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" -msgstr "" +msgstr "Üzenetét elküldtük!" #: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." -msgstr "" +msgstr "Üzenetét nem lehetett elküldeni." #: ../page-catalog.php:55 msgid "No Books Found" -msgstr "" +msgstr "Nem találhatók könyvek" #: ../page-catalog.php:58 msgid "No books have been added to the catalog." -msgstr "" +msgstr "Még nincsenek könyvek hozzáadva a katalógushoz." #: ../partials/book.php:27 msgid "About this book" -msgstr "" +msgstr "Erről a könyvről" #: ../partials/contact-form.php:30 msgid "Your name (required)" -msgstr "" +msgstr "Neve (szükséges)" #: ../partials/contact-form.php:38 msgid "Your email address (required)" -msgstr "" +msgstr "Email címe (szükséges)" #: ../partials/contact-form.php:46 msgid "Your institution (required)" -msgstr "" +msgstr "Intézménye (szükséges)" #: ../partials/contact-form.php:54 msgid "Your message (required)" -msgstr "" +msgstr "Üzenete (szükséges)" #: ../partials/contact-form.php:58 msgid "Send" -msgstr "" +msgstr "Küldés" #: ../partials/content-front-page.php:67 msgid "View Complete Catalog" -msgstr "" +msgstr "Lásd a Teljes Katalógust" #: ../partials/content-none.php:14 msgid "Nothing Found" -msgstr "" +msgstr "Nincs Találat" #: ../partials/content-none.php:25 msgid "Ready to publish your first post? Get started here." @@ -472,6 +484,8 @@ msgid "" "Sorry, but nothing matched your search terms. Please try again with some " "different keywords." msgstr "" +"Sajnáljuk, de semmi nem egyezik a keresési kifejezésekkel. Kérjük, " +"próbálkozzon újra néhány különböző kulcsszóval." #: ../partials/content-none.php:44 msgid "" @@ -481,43 +495,43 @@ msgstr "" #: ../partials/content-page-catalog.php:17 msgid "Filter by Subject" -msgstr "" +msgstr "Szűrés Tárgy szerint" #: ../partials/content-page-catalog.php:19 msgid "All Subjects" -msgstr "" +msgstr "Összes Tárgy" #: ../partials/content-page-catalog.php:35 msgid "Filter by License" -msgstr "" +msgstr "Szűrés Licence szerint" #: ../partials/content-page-catalog.php:37 msgid "All Licenses" -msgstr "" +msgstr "Összes Licence" #: ../partials/content-page-catalog.php:46 msgid "Sort by" -msgstr "" +msgstr "Rendezve" #: ../partials/content-page-catalog.php:50 msgid "Subject" -msgstr "" +msgstr "Tárgy" #: ../partials/content-page-catalog.php:51 msgid "Latest" -msgstr "" +msgstr "Legújabb" #: ../partials/content-page-catalog.php:58 msgid "Clear Filters" -msgstr "" +msgstr "Szűrők törlése" #: ../partials/content-page-catalog.php:59 msgid "Submit" -msgstr "" +msgstr "Beküldés" #: ../partials/content-page.php22, ../partials/content.php:45 msgid "Pages:" -msgstr "" +msgstr "Oldalak:" #: ../partials/content-page.php:35 msgid "Edit %s" @@ -529,7 +543,7 @@ msgstr "" #: ../partials/paged-navigation.php:2 msgid "Navigation" -msgstr "" +msgstr "Navigáció" #: ../search.php:21 msgid "Search Results for: %s" @@ -538,9 +552,9 @@ msgstr "" #: ../searchform.php:3 msgctxt "label" msgid "Search Catalog" -msgstr "" +msgstr "Katalógus Keresése" #: ../searchform.php:6 msgctxt "submit button" msgid "Search" -msgstr "" +msgstr "Keresés" diff --git a/languages/it_IT.mo b/languages/it_IT.mo index 9fdcfa8c36a664131b8e153127af2794b1497ec4..9262b66371a1e01fdc66b42effe1975e07e1852a 100644 GIT binary patch literal 9051 zcmb7|eQYG>UB{oKNoej`NRL2DlEQO==Iq8^-(4={;=60=^Vx|T`_4VvN86-z#=GO) zC!U>WZ)Vm$9|(zSRaFtG|6%`0kK_w_i2S^B26%e7S5-F%iyhxEijS4C+ z;q!fFX1!})0*v$UV57`>Ui+`_~Yu`ZOkL!Rq#&m zm%)3$Uk85x{2lNv@Q=ZFfPW6&3w{H<4}1-L9K7>TIsXYz- z4vK^up!RzKd?)xKsP(^4z5i;}|EHkVeFZ!M{vF8Ayv`pam^Z5ayAPN1AFS{MXn8*m zz6)%Fn!gK*uAi^^KU?AFL4M{d{At{ufbRys0saX1ub}vG7-H@Kk5qUc_$1E{f}*Ph zYQ6_G{|0yhd=b?AuYnr(3aE9y1!~;igF63zfuipSOcC7=fEqsu{xEpD!b_m|xe1Pe zeUP8|75?4}{syS^{t|?A^ADiLe+SgMxAVYO=3Y>A9R+i64E#Fy5~%$Wl;MZKPl8M} zzf?Vc9u(bw0BW7T2Bi<*26e9YAYAS95GZ{)1xoIVpw72iJ%1cziitt3(+8ggZ-CR_ zw?NIipT#uqAyChcfTH_RQ2R}TPk~Q>(&x{BI`=Pt8vi-)Ver?$3GmOrIqZ?*d=L1G-~-^7LDByg;E#d-1d1$KNVlHj3*aN*7r~&Xpy>QIsQLc}!W#3RAU|_2n`_(@C^?)3 zweDr`C%{is_{r-1%b?c(Dk#4EGx($6e}FpI{Sc%1Q=sH@1{5DY1d8twD7oa|r@@~F zzX{$Bvo-E-K+*9!DES;>aq;DTQ2WgAr~c=_$H5*bK7A2nDf3&PVaw|@sU?>1ZRbGX8HfmaN?1hr2JYP~+F^W6a7 z2fhIQB=}{p3%&+E2R?(*h>qU}9|Hdh*7sK)qk*Pjb5f$__pUiodUd zlJ9Hahrru@yrg>(6kpcB+d$DOy*Wl(r|D{yaNvKU>Ujdx9?}z?X`Z%5+oWyL7HOhU z=RZjkT|L@y+9R|N&_n~InJL;mG+iGI|HfRbP@uEdm-vLZjHgKk_4QNSOw*pB>8wxF z#A8gv#I!TC=V_6y3_nWK^(K6{P11BFG|3XxGAlIcT}0C*n?q#5R-HPk>mBtC zxImksJxjYp`#9||4U-AF&<15ghiJOSXdj_9X?N3PhnDs{twB3M)Adf8eAI>>s_W4T z=fKBkr)jb~bIPt1anC;4cdghK-Y!L3E^XV$p7(ys`qVCGah`ARkeite-!IDl1Kqah zxZG--nQ1oTlyL#EN*AMpSDH^H#Kv@_Vc)9H+^O|6W`BV z-idP?F*c8zK5a$Wu8otp%Z_=&%(S{LH8V+K7ac_8F+}sQ(%*PKZWg&Y@3U5%#jWZl z;b>+yVgx6jX%^0>JQh*n+cnyLuN4(>t6^r7ILhq2ONuySmhXl=ZIs2fnRtj~h);{C zS=4Cfx{*r;Pn@$m@?ck8k;H?pHLaQ!F6~3$g}9l;Q6AfQy6lR(9@Eu}(^i}|9UNG4 zd5)mW1($cZE!m&?f@3$#-16FaJ0_m#Y`*BknT>-C3wWK6n?RUFU@qN`5(nvno-DrF zcd)2o=A&kqWXdz!joq57Lp>F1&Aj*U#V*BZ-^^#Cc{ysww&v!+uIlgu#aq*HhSln+ zI7$430ea>s-;K?}rrq^@TM=kC`&l?x1S9eyN}KV7?I9z0hGIw#8lKrSE_QsjWxG)d zMOnivqyw@R(gR#xNb|xKed&T2w8xHx!X`2Uo4Bpm!s?C)-idOQQ@R@!r4SO|j5NDp z7EzqMFpKC-YM0==S#;@^S-Nz7p_I?3hPi~&hTZIPe7@_seG zR+LWW5+W-ZS87OZf+DS8zcNofsXp8#L6E<&ld=h2JuI>8Nx3j3%$?4rql4!$C*iBciF29%hbh3U9ESs=9 z9mjEcQ4h~F5u9TeZPUTJ{iJZBvp$(in@PU~Z$@~Ct`Dqzh_!UD?zjTO=J2j7Ut7BK zk*9$_uX}NHqYk}(5xhhFu;0BW*hcBuONZ5~cHHysE4V+i((yY`Q5rZqb<3WE4#upw zc4`;W5-$f3E}Cy1?9gta;xOM8_dM7EaHM%3IY19`(79LC5pBM5@G!-KCxnTueQ-wgg{ zc-&C@KM?S3M|p(B`Qv9BX5T6`Rr~dY>FbFD6&BD9w|IbZ6Smq^#k*y%2BT{8DbuN+G&&@xhKSB+*9G zcRw&;PaZ#Unz?DaPlTCVjic_gU4UOGrXA}PMK7P8n%ddfX%t%8ZN}F$acXb>se(EA z)Z-@}KQ-lwsqsTg3rll*gq~;|KP0z>7$;YEd+~H||5F&LOV8M5C(81;IJdSsKY4m@ zoVLP=OwOfEADp&5z2S-hnbR=w&~nnxqGVF8FrT(*FFfYwPM#qf(wlQ*sXcnmo)|xK z=p&QMUiLkCo-C;s6`g6@XzcYqUHPd+G-TSYub)|u`CXenF>$haW<3=G>#6s>>OQ=i zIHkAO2K^I{@?6b|^X7U~6d8*RZsWb%p;4Wpn^dF1Z8<93mZSFQEVXqR`X`Tbf?K_q zyQVM~w>02=jpy^BF(K=iE%`ldONJYzp^?qeRJrb1@&kNhKPBPa$h`W8q9R&*itLuO zlTqQ%4*4 zio~hzah6C?mR%gYs>B=xSeF7!4o0RIn^o*LChr;)4(f2Woj5y_wP7_Yv2RKm1#1ie z{<@Mf-Ou5fd(_l%mMxL9B_4NZ2SbQ@@W8fWl7WM7S-C1Lih>-VT$*YPLZE{L(6JbM%P}b%h6my^ zC0bdxU5E9QDFiwcr=4=RQWqk5egqiRg_|Tm1yV68;#h8|d>c25$I5DrOwitZ*@g;^ z$u~b^GuP};9TpL~TMpV+#<8bXFRSAy)Nxf;Ee~&&;`HWM6xQ9%FNi(l6E58ogxHfr zs5S|qiafm=Vq7h+TMa9%jGFWq(I*MAVEsMQGP5qC(B=d-qIkY8^hA0_5T`0+kG zTULkT!*ccVNo7`m4R9L11H>+PDR*GpMf8=LEfk4?Xrr>Q8T1<>FDt>>lX59ZYR3P= zASy_rE~Eq}W??$f9&$!{(M)A#KGu~URq#S~D4mT(sC6c^JN+T82 zksa#PbhtHQ2Hr74$D{|03%*s0tHhMT);tO-5hdtI&g@WT2H(@{JIZcnH(c)V2_scz zMMg|A%4eNXdJtf!ItQl-bWxD>y(?)Nva4VLRGrk{xTX3GP^s?|exj~9HysMmY(^xF z_z`7qb^V!nJlAy!QNB;KfuVwvfFcitbjeXL2oBoyu)I1XgG0%gyAci(QEydn(p}dX zbuzGR&Or%>#w~5+I(yr}zt2Y-AFI?~chaWv9y#S84UOCrtZ6U-n~xoA}t@XBJ>)cUtJNW`$= zU?)lg`xMLhCQKzqt8_-SuH2k-=1qpmAC&4lNb2M+tAZ6bLc&oE&?t^m!kduw-{K&71X#c5Isp%sG-TbN*&=-XO(`H zb@W)Bt9TNc2sMiAXo#i4t+Sc&dXYis+k46MYKOg-Qh;9n=5Jf%UuL@4syKdNZ z5UwFd>mjLD$;I3lp1fmfKgM|$rt+WNyPpb@@1L`GtFsiapP2pI7phfJ8*DRP7)WQ2M!{^_gQZx5>IyC&peyicb<7>-`2n77T)JmcNwCB zu?yo9#t6pB20ReceT;2_=im-_5pIE3lH7-RdWGoAdumtx(EMQ~F_mi-Iyaji{S-1_}f?MJ3#QTs6d<3b0Cy)wz4i)x# z1#`%cp_&TzXQwcsg$|^J9^3;L;UIhnN8vL_>pnsb*C2If0K1VzNCy~()X7?s*I^O) z`6QoBoQDPM&z3Nu6WxPU*>d6wNGE#@@nNfYP)9yM+VBfZZmD-Q^c@vIzoDQuQ->%9 zFsKOXEWLvQ&0sUV86MQy^`K&CLn?+kK-aS#+c7~0d;b?Spw|()Uy2L{btg*9VUb!MtMzbkjYThz&;7B`{nj#ne(5 zV1Eu?I54T=Q2M^))5_H-A~3vK7h%-C8ObA~H9i&?SNiJ43HPZP%JkXg!aaFgF%KNAPR0V&gJ!1p5tULZ{RK diff --git a/languages/it_IT.po b/languages/it_IT.po index 42d2c6b..10dc253 100644 --- a/languages/it_IT.po +++ b/languages/it_IT.po @@ -2,10 +2,11 @@ # This file is distributed under the same license as the pressbooks-aldine package. # Translators: # Giuseppe Pignataro (Fastbyte01) , 2018 +# Antonio Devís , 2018 msgid "" msgstr "" "Project-Id-Version: pressbooks-aldine\n" -"Last-Translator: Giuseppe Pignataro (Fastbyte01) , 2018\n" +"Last-Translator: Antonio Devís , 2018\n" "Language-Team: Italian (https://www.transifex.com/pressbooks/teams/9194/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: ../404.php:17 msgid "Oops! That page can’t be found." -msgstr "" +msgstr "Oops! Non trovo questa pagina." #: ../404.php:21 msgid "It looks like nothing was found at this location." -msgstr "" +msgstr "Sembra che non ci sia nulla in questo sito." #: ../comments.php:34 msgid "One thought on “%1$s”" @@ -39,7 +40,7 @@ msgstr[1] "" #: ../comments.php:63 msgid "Comments are closed." -msgstr "" +msgstr "Commenti negati" #: ../footer.php40, ../footer.php:44 msgid "%s on Facebook" @@ -59,15 +60,15 @@ msgstr "Open Source" #: ../footer.php:73 msgid "Open Textbooks" -msgstr "" +msgstr "Apri Textbooks" #: ../footer.php:74 msgid "Open Book Publishing" -msgstr "" +msgstr "Apri Book Publishing" #: ../footer.php75, ../inc/activation/namespace.php:27 msgid "Learn More" -msgstr "" +msgstr "Per saperne di più" #: ../footer.php79, ../footer.php:83 msgid "Pressbooks on Facebook" @@ -87,15 +88,15 @@ msgstr "" #: ../header.php:44 msgid "Skip to content" -msgstr "" +msgstr "Salta questo contenuto" #: ../header.php:64 msgid "Logo for %s" -msgstr "Logo per %s" +msgstr "" #: ../header.php:74 msgid "Toggle Menu" -msgstr "" +msgstr "Menù Toggle" #: ../inc/intervention.php:12 msgid "Hello," @@ -107,15 +108,15 @@ msgstr "Menu principale" #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 msgid "Footer Menu" -msgstr "" +msgstr "Menù a pié di pagina" #: ../inc/actions/namespace.php:107 msgid "Network Footer Block 1" -msgstr "" +msgstr "Blocco della Rete a pié di Pagina 1" #: ../inc/actions/namespace.php:117 msgid "Network Footer Block 2" -msgstr "" +msgstr "Blocco della Rete a pié di Pagina 2" #: ../inc/actions/namespace.php142, #: ../partials/content-accessibility-toolbar.php6, @@ -125,48 +126,50 @@ msgstr "Aumenta dimensione carattere" #: ../inc/actions/namespace.php:143 msgid "Decrease Font Size" -msgstr "Diminuisci dimensione carattere" +msgstr "Riduci dimensione carattere" #: ../inc/actions/namespace.php:226 msgid "" "This page displays your network catalog, so there is no content to edit." msgstr "" +"Questa pagina mostra il tuo catalogo di rete, non c'è nessun contenuto da " +"modificare." #: ../inc/actions/namespace.php:279 msgid "Page Section" -msgstr "" +msgstr "Sezione di pagina" #: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 msgid "Title" -msgstr "" +msgstr "Titolo" #: ../inc/actions/namespace.php:281 msgid "Standard" -msgstr "" +msgstr "Standard" #: ../inc/actions/namespace.php:282 msgid "Accent" -msgstr "" +msgstr "Evidenzia" #: ../inc/actions/namespace.php:283 msgid "Bordered" -msgstr "" +msgstr "Con bordo" #: ../inc/actions/namespace.php:284 msgid "Borderless" -msgstr "" +msgstr "Senza bordo" #: ../inc/actions/namespace.php:287 msgid "Call to Action" -msgstr "" +msgstr "Elabora" #: ../inc/actions/namespace.php:288 msgid "Text" -msgstr "" +msgstr "Testo" #: ../inc/actions/namespace.php:289 msgid "Link" -msgstr "" +msgstr "Link" #: ../inc/activation/namespace.php:25 msgid "About Pressbooks" @@ -177,6 +180,8 @@ msgid "" "Pressbooks is easy-to-use book writing software that lets you create a book " "in all the formats you need to publish." msgstr "" +"Pressbooks è un software per scrivere libri facile da usare, che permette di" +" creare un libro in qualsiasi formato di cui hai bisogno." #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php:143 @@ -189,6 +194,9 @@ msgid "" "publish textbooks, scholarly monographs, syllabi, fiction and non-fiction " "books, white papers, and more in multiple formats including:" msgstr "" +"Pressbooks è un semplice software per la produzione di libri. Puoi usare " +"Pressbooks per pubblicare libri di testo, monografie accademiche, syllabi, " +"romanzi, saggi, white paper e altro ancora in molti formati, inclusi:" #: ../inc/activation/namespace.php:40 msgid "MOBI (for Kindle ebooks)" @@ -196,11 +204,11 @@ msgstr "MOBI (per ebook Kindle)" #: ../inc/activation/namespace.php:41 msgid "EPUB (for all other ebookstores)" -msgstr "EPUB (per tutti gli altri negozi di libri online)" +msgstr "EPUB (per tutti gli altri ebookstore)" #: ../inc/activation/namespace.php:42 msgid "designed PDF (for print-on-demand and digital distribution)" -msgstr "" +msgstr "designed PDF (per pubblicazione su richiesta e diffusione digitale)" #: ../inc/activation/namespace.php:45 msgid "For more information about Pressbooks, %s." @@ -208,7 +216,7 @@ msgstr "" #: ../inc/activation/namespace.php:46 msgid "see here" -msgstr "guarda qui" +msgstr "Vedi qui" #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php:173 @@ -223,7 +231,7 @@ msgstr "" #: ../inc/activation/namespace.php:59 msgid "4 Step Guide to Making a Book on Pressbooks" -msgstr "" +msgstr "Guida su come Creare un Libro su Pressbooks in 4 Passi" #: ../inc/activation/namespace.php:60 msgid "Guide to Using Pressbooks" @@ -233,6 +241,8 @@ msgstr "Guida all'utilizzo di Pressbooks" msgid "" "If you require further assistance, please contact your network manager." msgstr "" +"Per richiedere ulteriore aiuto contattare il nostro manager di rete, per " +"favore." #: ../inc/activation/namespace.php67, ../inc/activation/namespace.php116, #: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, @@ -242,7 +252,7 @@ msgstr "Catalogo" #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 msgid "Home" -msgstr "" +msgstr "Home" #: ../inc/admin/namespace.php:30 msgid "Catalog updated." @@ -251,10 +261,11 @@ msgstr "Catalogo aggiornato." #: ../inc/admin/namespace.php:31 msgid "Sorry, but your catalog was not updated. Please try again." msgstr "" +"Ci dispiace, ma il tuo catalogo non è stato aggiornato. Riprova, per favore." #: ../inc/admin/namespace.php:32 msgid "Dismiss this notice." -msgstr "" +msgstr "Ignora questa notizia." #: ../inc/admin/namespace.php:61 msgid "In Catalog" @@ -263,12 +274,13 @@ msgstr "In catalogo" #: ../inc/admin/namespace.php:72 msgctxt "pressbooks-aldine" msgid "Show in Catalog" -msgstr "" +msgstr "Mostra nel catalogo" #: ../inc/admin/namespace.php:73 msgctxt "pressbooks-aldine" msgid "This book is private, so you can’t display it in your catalog." msgstr "" +"Questo libro è privato, quindi non può essere mostrato nel tuo catalogo." #: ../inc/customizer/namespace.php:61 msgid "Primary Color" @@ -276,47 +288,51 @@ msgstr "Colore primario" #: ../inc/customizer/namespace.php:62 msgid "Primary color, used for links and other primary elements." -msgstr "" +msgstr "Colore primario, usato per link e altri elementi primari." #: ../inc/customizer/namespace.php:67 msgid "Primary Color (Hover)" -msgstr "" +msgstr "Colore Primario (Posiziona il cursore)" #: ../inc/customizer/namespace.php:68 msgid "Variant of the primary color, used for primary element hover states." msgstr "" +"Variante del colore primario, usata quando si posiziona il cursore su stati " +"di elementi primari." #: ../inc/customizer/namespace.php:73 msgid "Accent Color" -msgstr "" +msgstr "Colore usato per evidenziare" #: ../inc/customizer/namespace.php:74 msgid "Accent color, used for flourishes and secondary elements." -msgstr "" +msgstr "Colore per evidenziare, usato in abbellimenti o elementi secondari." #: ../inc/customizer/namespace.php:79 msgid "Accent Color (Hover)" -msgstr "" +msgstr "Colore usato per evidenziare (Posiziona il cursore)" #: ../inc/customizer/namespace.php:80 msgid "Variant of the accent color, used for secondary element hover states." msgstr "" +"Variante del colore per evidenziare, usata per quando si posiziona il " +"cursore su stati di elementi secondari." #: ../inc/customizer/namespace.php:85 msgid "Primary Foreground Color" -msgstr "" +msgstr "Colore Primario in Primo Piano" #: ../inc/customizer/namespace.php:86 msgid "Used for text on a primary background." -msgstr "" +msgstr "Usato per un testo su uno sfondo primario." #: ../inc/customizer/namespace.php:91 msgid "Accent Foreground Color" -msgstr "" +msgstr "Colore per evidenziare e mettere in Primo Piano." #: ../inc/customizer/namespace.php:92 msgid "Used for text on an accent color background." -msgstr "" +msgstr "Usato per un testo su uno sfondo di colore evidenziato." #: ../inc/customizer/namespace.php:111 msgid "Social Media" @@ -332,87 +348,87 @@ msgstr "Twitter" #: ../inc/customizer/namespace.php:135 msgid "Front Page Catalog" -msgstr "" +msgstr "Catalogo della Prima Pagina" #: ../inc/customizer/namespace.php:142 msgid "Show Front Page Catalog" -msgstr "" +msgstr "Mostra il Catalogo della Prima Pagina" #: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 msgid "Our Latest Titles" -msgstr "" +msgstr "I Nostri Ultimi Titoli" #: ../inc/customizer/namespace.php:153 msgid "Front Page Catalog Title" -msgstr "" +msgstr "Titolo del Catalogo della Prima Pagina" #: ../inc/customizer/namespace.php:160 msgid "Contact Form" -msgstr "" +msgstr "Modulo di Contatto" #: ../inc/customizer/namespace.php:167 msgid "Show Contact Form" -msgstr "" +msgstr "Mostra il Modulo di Contatto" #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 msgid "Contact Us" -msgstr "" +msgstr "Come contattarci" #: ../inc/customizer/namespace.php:178 msgid "Contact Form Title" -msgstr "" +msgstr "Titolo del Modulo di Contatto" #: ../inc/customizer/namespace.php:188 msgid "Contact Email" -msgstr "" +msgstr "Indirizzo Email" #: ../inc/filters/namespace.php:61 msgid "Continued" -msgstr "" +msgstr "Continuato" #: ../inc/helpers/namespace.php:171 msgid "Contact" -msgstr "" +msgstr "Contatto" #: ../inc/helpers/namespace.php:178 msgid "Sign In" -msgstr "" +msgstr "Accedi" #: ../inc/helpers/namespace.php:184 msgid "Sign Up" -msgstr "" +msgstr "Iscriviti" #: ../inc/helpers/namespace.php:192 msgid "Admin" -msgstr "" +msgstr "Amministratore" #: ../inc/helpers/namespace.php:200 msgid "My Books" -msgstr "" +msgstr "I Miei Libri" #: ../inc/helpers/namespace.php:206 msgid "Sign Out" -msgstr "" +msgstr "Disconnetti" #: ../inc/helpers/namespace.php:260 msgid "Name is required." -msgstr "" +msgstr "È richiesto un Nome." #: ../inc/helpers/namespace.php:264 msgid "Email is required." -msgstr "" +msgstr "È richiesta un'Email." #: ../inc/helpers/namespace.php:268 msgid "Email is invalid." -msgstr "" +msgstr "L'Email non è valida." #: ../inc/helpers/namespace.php:272 msgid "Institution is required." -msgstr "" +msgstr "È richiesta un'organizzazione." #: ../inc/helpers/namespace.php:276 msgid "Message is required." -msgstr "" +msgstr "È richiesto un messaggio." #: ../inc/helpers/namespace.php:282 msgid "Contact Form Submission from %s" @@ -420,51 +436,51 @@ msgstr "" #: ../inc/helpers/namespace.php:293 msgid "Your message was sent!" -msgstr "" +msgstr "Il tuo messaggio è stato inviato!" #: ../inc/helpers/namespace.php:296 msgid "Your message could not be sent." -msgstr "" +msgstr "Il tuo messaggio non può essere inviato." #: ../page-catalog.php:55 msgid "No Books Found" -msgstr "" +msgstr "Nessun libro trovato." #: ../page-catalog.php:58 msgid "No books have been added to the catalog." -msgstr "" +msgstr "Nessun libro è stato aggiunto al catalogo." #: ../partials/book.php:27 msgid "About this book" -msgstr "" +msgstr "Riguardo questo libro" #: ../partials/contact-form.php:30 msgid "Your name (required)" -msgstr "" +msgstr "Il tuo nome (richiesto)" #: ../partials/contact-form.php:38 msgid "Your email address (required)" -msgstr "" +msgstr "Il tuo indirizzo email (richiesto)" #: ../partials/contact-form.php:46 msgid "Your institution (required)" -msgstr "" +msgstr "La tua organizzazione (richiesta)" #: ../partials/contact-form.php:54 msgid "Your message (required)" -msgstr "" +msgstr "Il tuo messaggio (richiesto)" #: ../partials/contact-form.php:58 msgid "Send" -msgstr "" +msgstr "Invia" #: ../partials/content-front-page.php:67 msgid "View Complete Catalog" -msgstr "" +msgstr "Vedi Catalogo Completo" #: ../partials/content-none.php:14 msgid "Nothing Found" -msgstr "" +msgstr "Nessun Risultato" #: ../partials/content-none.php:25 msgid "Ready to publish your first post? Get started here." @@ -475,6 +491,8 @@ msgid "" "Sorry, but nothing matched your search terms. Please try again with some " "different keywords." msgstr "" +"Ci dispiace, ma nulla corrisponde ai tuoi criteri di ricerca. Riprova con " +"altre parole chiave, per favore." #: ../partials/content-none.php:44 msgid "" @@ -484,43 +502,43 @@ msgstr "" #: ../partials/content-page-catalog.php:17 msgid "Filter by Subject" -msgstr "" +msgstr "Filtra per Argomento" #: ../partials/content-page-catalog.php:19 msgid "All Subjects" -msgstr "" +msgstr "Tutti gli Argomenti" #: ../partials/content-page-catalog.php:35 msgid "Filter by License" -msgstr "" +msgstr "Filtra per Licensa" #: ../partials/content-page-catalog.php:37 msgid "All Licenses" -msgstr "" +msgstr "Tutte le License" #: ../partials/content-page-catalog.php:46 msgid "Sort by" -msgstr "" +msgstr "Ordina per" #: ../partials/content-page-catalog.php:50 msgid "Subject" -msgstr "" +msgstr "Argomento" #: ../partials/content-page-catalog.php:51 msgid "Latest" -msgstr "" +msgstr "Più recenti" #: ../partials/content-page-catalog.php:58 msgid "Clear Filters" -msgstr "" +msgstr "Rimuovi il Filtro" #: ../partials/content-page-catalog.php:59 msgid "Submit" -msgstr "" +msgstr "Invia" #: ../partials/content-page.php22, ../partials/content.php:45 msgid "Pages:" -msgstr "" +msgstr "Pagine:" #: ../partials/content-page.php:35 msgid "Edit %s" @@ -541,7 +559,7 @@ msgstr "" #: ../searchform.php:3 msgctxt "label" msgid "Search Catalog" -msgstr "" +msgstr "Cerca Catalogo" #: ../searchform.php:6 msgctxt "submit button" diff --git a/languages/lt_LT.mo b/languages/lt_LT.mo new file mode 100644 index 0000000000000000000000000000000000000000..95f7b45a869138357a2f52390592b44a5e62a065 GIT binary patch literal 7676 zcma)=du(LaUB^$;v@}aYLkXocEjj5UtXt1`y}Jq7**K}!yH31*tXX@Pq%D}^xyLid zbLXDnKJ1-RREe^HM5DGsWQnMnuAo99f<+_}e^63UY#u^DtAL=WDo8~ls?>idAb}9& z^E>z6@$9aPxbm6rJ+I&So!|TVYj3{uR}{|%?d`OCU#rwd!8g91AD%b7L8{atW1F}_pvKoJ`!WY2rX8aF9 zq4Ve9Tfwh_KM4LiDEE64hu#UkrNaBbC+KUCKh@<&_Gh5%|9Nm4d>)kjUk3S8f6tH5 z`8p`;UIm4(*T97Edjxz7`1T42nyY2z#jmg2Ssnc4+_6usQP~fiXD6j z6gvL|ehB;~*aFYPyzILQ%D!i+{15xY7LHo-+u)_)k3^&bQI zQ=j2S_XaH4#cF?UsU)NQ1t#UpxooN zTtd#f7yM=Le(>Aiiy)#`FLH?Z=bwV2$A18YuWx`0;D3X{-#knRy%kX8z5xoK9|eW} zFIDr;f+COK1cmo-vz}l{s_Va{d}k z_?JiI`4COyB+rl2gco^!f+l+TVVc;nJmUYt`>J%R=SM3PUA?b*7dw$h?Cjm)4SNPf zzVcua;Su{18P1knH3>dNTd(@_;04+Y?a^xNz2F?}C~b)*F+v_4esBK~*)P(bq>24K zK@&fbN9+%C332I^4Dg(wU8bF*Jx;?NLp&54c#I}CH%${Ai+&%WZP3KFFo6(z#s2C? zY_ERK@N%i@oCRC7r)jtliqvbl9q11d)u1t!~FY3rl>Gn|97*Kz*)nTs-Q{ z`?P;kN3Xj)wxgj-LN&=?te$5`uelFfb=GBlmu2Nu6Q6UfraHHJ>5M+Q zkxF!G z-g`u#mu*t0`Bd0jH65#K!QDPo-E*YmOPT0+OtVkgIQEkY7^o+G->QWzJ@kdH7}Q%u z8ZKtC%w@Sr+ICV8PzT~^SE6QlsuP><`n0F}CV`{0sTPtETMNl;0$oV5+~tL+T?BL> zj)h#uVsbimJ*yFQR~X(kncnh65^0l{N{D^i$nK_E!bY-OEny;wUPkh2$t69teBsPO zshvfaM6s<@GohA;!NN1OV*2*x!&jDA0(UuXj_2A$N4YoCEtT$ zGj>_GdCQrZ>th2Yg+c10BJejlv8kVygG{1@sWEnuL`6~O_DUYaHL0_9*T*J}hq~_* z-$~7&n=v|!W3%Zd^_DBC8?>MJq*3>)-Md}Kbp~cYXqeQpsE-Zca=Kr{xf4F?o4KSN z7ZI|#NrqV9$Op%GWq5tp<+vM{cYTu%^_-9WK`%IAJ=K<}Nx5$%$6>t*HZ0tfabZxA zu(1uXtEtv3HnZ0CyO1qI*1QC%Fmk&et2Nh2^g>eN1%h!HxHM2}JvR^&6K|B@yXM=@ z#Ds{*89He?oYb2|K5`{=-0s3<@Y)QgX?IaZ+RvJLwe;(ptD25Mg51B0R&kTaZEX>< z2{=7F#L=US8ypZ1#3}<1&WhuX!uM@-!`7Tgr`Culkx3CmnHvQAE?4VVhgz4sGLZNd zxoi-dVKCr>P*a_UsRRcTrDt5TmV^ieA>>U}#`<;N>0k^&ZM9}E)%p^1l$>XDt*K4Z z?sZb}?54Wxtf)zh9$TBM(iBEcz?VEDjxNbkAFTt~gbK56EX>_H*Jp!V?mLaQeG!Yr zBPgpgMBglF*83zT%J2i_a3axcj8~fz}bnqfC>A$fM zH7?_;9MnSCb%{~YJhEi6ys@5|B#RAcw54YgXgIIW+MPfC?My!^p4PYd`@23D(Kp+^ z|JbBHer);?_9mSIkv7(?>9&;t*NQq-Q8v`C%G+qMd(Z& zurrlIBAYrjed^>?oNp|xPfZ+IURXYN!1{Fa*b(tuG|*Td4s0ugv?=V=C8u?}Ytqc- zGndxq8;=~Ulhg2{#<`^JLm<+RY`T2JcuR+~j;zK-YT||jgsi2LLFi^PCr^`lWoG7R zqTi#ZkLj5iJ*^*nP*?q9`Y}CyN`K@dx|~0zAJx;-6Z&y|OtWhU)aA+^*V%G zsZi5`g*YH{sd1EjL>0*OU6Wx3d+e#-TtYxT7u#M=sTw+~X8-!w0>km;CYS78%P6E$ zn5CxOF?fe?NkX9Rbhal+J}b!S)ZuDXw&q0IJ;h&W8|e>Qbn1pTwaXzzxa%?Xq+ zy?=f0264tD76JD6uGV$?j*#tVnymrJ%r&2QevtE!m?~v_+$0SJ#-+@)Y)m>Lnbp)G z8Q(X0@5W9z?0|?IDtkP+fgmU6j;f4Oj_6LZ8^JexC84vutD)piMXl8o+GBLpr$S3a zMEY`tWVC`3gRr<{240Ue_Z=quO(GpDa#luonkL>ff@BR* z25KpY$pgfH-a5TqAfyx%a->W~v4pcPL}zLhI!n2L~#f)|;{K zapLV$$Lpz*Y|W<{bvFydws#}iyOtwe(@o)|K2tD z!_PVfMHH#ylfy-b*p#+%OUT3h3^qlrOhL+9xkrW)&j*ZD^jXiwn>m4H%wUIUFt?JU zij$7%4>7sJIH9H;RTvtJ4pF2eixpz=d)HzFFv&MVFT^(<~Pu*?!%1mCd)TXobO!~gR6#QB_%H{7@f{~j!b~mZkER0jf_k| zd7QUKfn)44s;XeehgMx$s$p$l;+>m)w+tJj6!tmdGyWgakuo%7wN>g! zA~Q;Le8FN)1iR|nhF9z|I1>p(h+v`n*GWo<+w!G@TOjU)?_4P0{oAE442&ZO^iYm` z@3>_DMa+Y6mqf!5bwn#YlcKItE)iDE=MFVLBej}><&!rHwFJxIh2#8y14%WA?+X~)Za|P0wIM`p3q5Bl3c!SdqlZR?SIzE*T5hI z>>*K5!lUH;iY4|+93F8t$+r?ACe}DH4z}%kWR^0Bll3`~R$bHs~arSOOECxwu)smKs7x`w`~VvzP?9p%*dQg^n_!Bswm-cd}W zOurNLs)Mv(4x1LgEl5cJ*PPhR!0Ze$8@GQwE6u!FA26aYnllg7bCLjVVQZ}*I&M=} zATXxFml&>BWTCn#>Lfqlzcj9AVzVO!ia22KeTpnG^*%*EmP|QRxCw+_8*wEg)LlDa Rol3{Vx%UkJ1*rBI^}mJ0v)upy literal 0 HcmV?d00001 diff --git a/languages/lt_LT.po b/languages/lt_LT.po new file mode 100644 index 0000000..813fd6c --- /dev/null +++ b/languages/lt_LT.po @@ -0,0 +1,567 @@ +# Copyright (C) 2018 pressbooks-aldine +# This file is distributed under the same license as the pressbooks-aldine package. +# Translators: +# Antonio Devís , 2018 +msgid "" +msgstr "" +"Project-Id-Version: pressbooks-aldine\n" +"Last-Translator: Antonio Devís , 2018\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/pressbooks/teams/9194/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt_LT\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x: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: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: ../404.php:17 +msgid "Oops! That page can’t be found." +msgstr "" + +#: ../404.php:21 +msgid "It looks like nothing was found at this location." +msgstr "Atrodo, kad šioje vietoje nieko nerasta." + +#: ../comments.php:34 +msgid "One thought on “%1$s”" +msgstr "" + +#: ../comments.php:40 +msgctxt "comments title" +msgid "%1$s thought on “%2$s”" +msgid_plural "%1$s thoughts on “%2$s”" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ../comments.php:63 +msgid "Comments are closed." +msgstr "Komentarai nepriimami." + +#: ../footer.php40, ../footer.php:44 +msgid "%s on Facebook" +msgstr "" + +#: ../footer.php48, ../footer.php:52 +msgid "%s on Twitter" +msgstr "" + +#: ../footer.php:70 +msgid "Powered by %s" +msgstr "" + +#: ../footer.php:72 +msgid "Open Source" +msgstr "Atviras Kodas" + +#: ../footer.php:73 +msgid "Open Textbooks" +msgstr "" + +#: ../footer.php:74 +msgid "Open Book Publishing" +msgstr "" + +#: ../footer.php75, ../inc/activation/namespace.php:27 +msgid "Learn More" +msgstr "Sužinoti Daugiau" + +#: ../footer.php79, ../footer.php:83 +msgid "Pressbooks on Facebook" +msgstr "Facebook Pressbooks" + +#: ../footer.php85, ../footer.php:89 +msgid "Pressbooks on Twitter" +msgstr "Twitter Pressbooks" + +#: ../functions.php:18 +msgid "Dependencies Missing" +msgstr "" + +#: ../functions.php:19 +msgid "You must run composer install from the Aldine directory." +msgstr "" + +#: ../header.php:44 +msgid "Skip to content" +msgstr "Pereiti prie turinio" + +#: ../header.php:64 +msgid "Logo for %s" +msgstr "" + +#: ../header.php:74 +msgid "Toggle Menu" +msgstr "Perjungti Meniu" + +#: ../inc/intervention.php:12 +msgid "Hello," +msgstr "Labas," + +#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 +msgid "Primary Menu" +msgstr "Pagrindinis Meniu" + +#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 +msgid "Footer Menu" +msgstr "Poraštės Meniu" + +#: ../inc/actions/namespace.php:107 +msgid "Network Footer Block 1" +msgstr "Tinklo poraštės 1 blokas" + +#: ../inc/actions/namespace.php:117 +msgid "Network Footer Block 2" +msgstr "Tinklo poraštės 2 blokas" + +#: ../inc/actions/namespace.php142, +#: ../partials/content-accessibility-toolbar.php6, +#: ../partials/content-accessibility-toolbar.php:7 +msgid "Increase Font Size" +msgstr "Padidinkite Šrifto Dydį" + +#: ../inc/actions/namespace.php:143 +msgid "Decrease Font Size" +msgstr "Sumažinkite Šrifto Dydį" + +#: ../inc/actions/namespace.php:226 +msgid "" +"This page displays your network catalog, so there is no content to edit." +msgstr "" +"Šiame puslapyje rodomas jūsų tinklo katalogas, todėl nėra jokio turinio, " +"kurį reikia redaguoti." + +#: ../inc/actions/namespace.php:279 +msgid "Page Section" +msgstr "Puslapio Skyrius" + +#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49 +msgid "Title" +msgstr "Pavadinimas" + +#: ../inc/actions/namespace.php:281 +msgid "Standard" +msgstr "Standartinis" + +#: ../inc/actions/namespace.php:282 +msgid "Accent" +msgstr "Akcentuoti" + +#: ../inc/actions/namespace.php:283 +msgid "Bordered" +msgstr "Ribojasi" + +#: ../inc/actions/namespace.php:284 +msgid "Borderless" +msgstr "" + +#: ../inc/actions/namespace.php:287 +msgid "Call to Action" +msgstr "Kvietimas veikti" + +#: ../inc/actions/namespace.php:288 +msgid "Text" +msgstr "Tekstas" + +#: ../inc/actions/namespace.php:289 +msgid "Link" +msgstr "Nuoroda" + +#: ../inc/activation/namespace.php:25 +msgid "About Pressbooks" +msgstr "Apie Pressbooks" + +#: ../inc/activation/namespace.php:26 +msgid "" +"Pressbooks is easy-to-use book writing software that lets you create a book " +"in all the formats you need to publish." +msgstr "" +"Pressbooks - tai paprasta naudoti knygų rašymo programinė įranga, kuri " +"leidžia jums sukurti knygą visais formatais, kuriais norite paskelbti." + +#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, +#: ../inc/activation/namespace.php:143 +msgid "About" +msgstr "Apie" + +#: ../inc/activation/namespace.php:39 +msgid "" +"Pressbooks is simple book production software. You can use Pressbooks to " +"publish textbooks, scholarly monographs, syllabi, fiction and non-fiction " +"books, white papers, and more in multiple formats including:" +msgstr "" +"Pressbooks yra paprasta knygų gamybos programinė įranga. Pressbooks galite " +"skelbti vadovėlius, mokslines monografijas, mokymo programas, grožinę " +"literatūrą ir literatūros knygas, baltąsias knygas ir dar daugiau " +"skirtingais formatais, įskaitant:" + +#: ../inc/activation/namespace.php:40 +msgid "MOBI (for Kindle ebooks)" +msgstr "MOBI (Kindle e-knygos)" + +#: ../inc/activation/namespace.php:41 +msgid "EPUB (for all other ebookstores)" +msgstr "EPUB (visiems kitiems elektroniniams knygynams)" + +#: ../inc/activation/namespace.php:42 +msgid "designed PDF (for print-on-demand and digital distribution)" +msgstr "" +"Suprojektuotas PDF (spausdinimui pagal pareikalavimą ir skaitmeniniam " +"platinimui)" + +#: ../inc/activation/namespace.php:45 +msgid "For more information about Pressbooks, %s." +msgstr "" + +#: ../inc/activation/namespace.php:46 +msgid "see here" +msgstr "žiūrėti čia" + +#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, +#: ../inc/activation/namespace.php:173 +msgid "Help" +msgstr "Pagalba" + +#: ../inc/activation/namespace.php:58 +msgid "" +"The easiest way to get started with Pressbooks is to follow our %1$s. Or, " +"you can review our %2$s." +msgstr "" + +#: ../inc/activation/namespace.php:59 +msgid "4 Step Guide to Making a Book on Pressbooks" +msgstr "4 žingsnių gidas, kaip sukurti knygą Pressbooks" + +#: ../inc/activation/namespace.php:60 +msgid "Guide to Using Pressbooks" +msgstr "Pressbooks Naudojimo Vadovas" + +#: ../inc/activation/namespace.php:62 +msgid "" +"If you require further assistance, please contact your network manager." +msgstr "" +"Jei jums reikia papildomos pagalbos, kreipkitės į savo tinklo valdytoją." + +#: ../inc/activation/namespace.php67, ../inc/activation/namespace.php116, +#: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, +#: ../inc/activation/namespace.php158, ../page-catalog.php:4 +msgid "Catalog" +msgstr "Katalogas" + +#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165 +msgid "Home" +msgstr "Pagrindinis Puslapis" + +#: ../inc/admin/namespace.php:30 +msgid "Catalog updated." +msgstr "Katalogas atnaujintas." + +#: ../inc/admin/namespace.php:31 +msgid "Sorry, but your catalog was not updated. Please try again." +msgstr "" +"Atsiprašome, bet jūsų katalogas nebuvo atnaujintas. Prašau, pabandykite dar " +"kartą." + +#: ../inc/admin/namespace.php:32 +msgid "Dismiss this notice." +msgstr "Atmesti šį pranešimą." + +#: ../inc/admin/namespace.php:61 +msgid "In Catalog" +msgstr "Kataloge" + +#: ../inc/admin/namespace.php:72 +msgctxt "pressbooks-aldine" +msgid "Show in Catalog" +msgstr "Rodyti Kataloge" + +#: ../inc/admin/namespace.php:73 +msgctxt "pressbooks-aldine" +msgid "This book is private, so you can’t display it in your catalog." +msgstr "" + +#: ../inc/customizer/namespace.php:61 +msgid "Primary Color" +msgstr "Pirminė Spalva" + +#: ../inc/customizer/namespace.php:62 +msgid "Primary color, used for links and other primary elements." +msgstr "" +"Pirminė spalva, naudojama nuorodoms ir kitiems pagrindiniams elementams." + +#: ../inc/customizer/namespace.php:67 +msgid "Primary Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:68 +msgid "Variant of the primary color, used for primary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:73 +msgid "Accent Color" +msgstr "" + +#: ../inc/customizer/namespace.php:74 +msgid "Accent color, used for flourishes and secondary elements." +msgstr "" + +#: ../inc/customizer/namespace.php:79 +msgid "Accent Color (Hover)" +msgstr "" + +#: ../inc/customizer/namespace.php:80 +msgid "Variant of the accent color, used for secondary element hover states." +msgstr "" + +#: ../inc/customizer/namespace.php:85 +msgid "Primary Foreground Color" +msgstr "" + +#: ../inc/customizer/namespace.php:86 +msgid "Used for text on a primary background." +msgstr "Naudojamas teksto pirminiam fonui." + +#: ../inc/customizer/namespace.php:91 +msgid "Accent Foreground Color" +msgstr "" + +#: ../inc/customizer/namespace.php:92 +msgid "Used for text on an accent color background." +msgstr "" + +#: ../inc/customizer/namespace.php:111 +msgid "Social Media" +msgstr "Socialiniai Tinklai" + +#: ../inc/customizer/namespace.php:119 +msgid "Facebook" +msgstr "Facebook" + +#: ../inc/customizer/namespace.php:128 +msgid "Twitter" +msgstr "Twitter" + +#: ../inc/customizer/namespace.php:135 +msgid "Front Page Catalog" +msgstr "Titulinio Lapo Katalogas" + +#: ../inc/customizer/namespace.php:142 +msgid "Show Front Page Catalog" +msgstr "Rodyti Titulinio Lapo Katalogą" + +#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19 +msgid "Our Latest Titles" +msgstr "Mūsų Naujausi Pavadinimai" + +#: ../inc/customizer/namespace.php:153 +msgid "Front Page Catalog Title" +msgstr "Titulinio Lapo Katalogo Pavadinimas" + +#: ../inc/customizer/namespace.php:160 +msgid "Contact Form" +msgstr "Kontaktai" + +#: ../inc/customizer/namespace.php:167 +msgid "Show Contact Form" +msgstr "Rodyti Kontaktus" + +#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12 +msgid "Contact Us" +msgstr "Susisiekite su mumis" + +#: ../inc/customizer/namespace.php:178 +msgid "Contact Form Title" +msgstr "Kontaktinės Formos Pavadinimas" + +#: ../inc/customizer/namespace.php:188 +msgid "Contact Email" +msgstr "Kontaktinis Elektroninis Paštas" + +#: ../inc/filters/namespace.php:61 +msgid "Continued" +msgstr "Tęsinys" + +#: ../inc/helpers/namespace.php:171 +msgid "Contact" +msgstr "Kontaktas" + +#: ../inc/helpers/namespace.php:178 +msgid "Sign In" +msgstr "Prisijungti" + +#: ../inc/helpers/namespace.php:184 +msgid "Sign Up" +msgstr "Užsiregistruoti" + +#: ../inc/helpers/namespace.php:192 +msgid "Admin" +msgstr "Adminas" + +#: ../inc/helpers/namespace.php:200 +msgid "My Books" +msgstr "Mano Knygos" + +#: ../inc/helpers/namespace.php:206 +msgid "Sign Out" +msgstr "Atsijungti" + +#: ../inc/helpers/namespace.php:260 +msgid "Name is required." +msgstr "Privaloma įvesti vardą." + +#: ../inc/helpers/namespace.php:264 +msgid "Email is required." +msgstr "Privaloma įvesti elektroninį pašto adresą." + +#: ../inc/helpers/namespace.php:268 +msgid "Email is invalid." +msgstr "El. paštas neteisingas." + +#: ../inc/helpers/namespace.php:272 +msgid "Institution is required." +msgstr "Privaloma nurodyti instituciją. " + +#: ../inc/helpers/namespace.php:276 +msgid "Message is required." +msgstr "" + +#: ../inc/helpers/namespace.php:282 +msgid "Contact Form Submission from %s" +msgstr "" + +#: ../inc/helpers/namespace.php:293 +msgid "Your message was sent!" +msgstr "Jūsų žinutė išsiųsta!" + +#: ../inc/helpers/namespace.php:296 +msgid "Your message could not be sent." +msgstr "Jūsų žinutės nepavyko išsiųsti." + +#: ../page-catalog.php:55 +msgid "No Books Found" +msgstr "Knygos nerasta" + +#: ../page-catalog.php:58 +msgid "No books have been added to the catalog." +msgstr "Knygos nebuvo įdėtos į katalogą. " + +#: ../partials/book.php:27 +msgid "About this book" +msgstr "Apie šią knygą" + +#: ../partials/contact-form.php:30 +msgid "Your name (required)" +msgstr "Jūsų vardas (privaloma)" + +#: ../partials/contact-form.php:38 +msgid "Your email address (required)" +msgstr "Jūsų el. pašto adresas (privaloma)" + +#: ../partials/contact-form.php:46 +msgid "Your institution (required)" +msgstr "Jūsų institucija (privaloma)" + +#: ../partials/contact-form.php:54 +msgid "Your message (required)" +msgstr "Jūsų žinutė (privaloma)" + +#: ../partials/contact-form.php:58 +msgid "Send" +msgstr "Siųsti" + +#: ../partials/content-front-page.php:67 +msgid "View Complete Catalog" +msgstr "Peržiūrėti Visą Katalogą" + +#: ../partials/content-none.php:14 +msgid "Nothing Found" +msgstr "Nieko Nerasta" + +#: ../partials/content-none.php:25 +msgid "Ready to publish your first post? Get started here." +msgstr "" + +#: ../partials/content-none.php:38 +msgid "" +"Sorry, but nothing matched your search terms. Please try again with some " +"different keywords." +msgstr "" +"Atsiprašome, bet niekas neatitiko jūsų paieškos terminų. Pabandykite dar " +"kartą naudodami keletą skirtingų raktinių žodžių. " + +#: ../partials/content-none.php:44 +msgid "" +"It seems we can’t find what you’re looking for. Perhaps " +"searching can help." +msgstr "" + +#: ../partials/content-page-catalog.php:17 +msgid "Filter by Subject" +msgstr "Filtruoti pagal Temą" + +#: ../partials/content-page-catalog.php:19 +msgid "All Subjects" +msgstr "Visos Temos" + +#: ../partials/content-page-catalog.php:35 +msgid "Filter by License" +msgstr "Filtruoti pagal Licenciją" + +#: ../partials/content-page-catalog.php:37 +msgid "All Licenses" +msgstr "Visos Licencijos" + +#: ../partials/content-page-catalog.php:46 +msgid "Sort by" +msgstr "Rūšiuoti pagal" + +#: ../partials/content-page-catalog.php:50 +msgid "Subject" +msgstr "Tema" + +#: ../partials/content-page-catalog.php:51 +msgid "Latest" +msgstr "Naujausias" + +#: ../partials/content-page-catalog.php:58 +msgid "Clear Filters" +msgstr "Išvalyti Filtrus" + +#: ../partials/content-page-catalog.php:59 +msgid "Submit" +msgstr "Pateikti" + +#: ../partials/content-page.php22, ../partials/content.php:45 +msgid "Pages:" +msgstr "Puslapiai:" + +#: ../partials/content-page.php:35 +msgid "Edit %s" +msgstr "" + +#: ../partials/content.php:34 +msgid "Continue reading \"%s\"" +msgstr "" + +#: ../partials/paged-navigation.php:2 +msgid "Navigation" +msgstr "" + +#: ../search.php:21 +msgid "Search Results for: %s" +msgstr "" + +#: ../searchform.php:3 +msgctxt "label" +msgid "Search Catalog" +msgstr "Paieškos Katalogas" + +#: ../searchform.php:6 +msgctxt "submit button" +msgid "Search" +msgstr "Paieška" From d44a32fa3f2463ef0776d97f9b09aa390d4ba451 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Sat, 21 Jul 2018 13:27:30 -0300 Subject: [PATCH 12/35] Fix coding standards --- assets/scripts/page-section.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/assets/scripts/page-section.js b/assets/scripts/page-section.js index 3f7b83d..1e1b0e5 100644 --- a/assets/scripts/page-section.js +++ b/assets/scripts/page-section.js @@ -20,16 +20,20 @@ label: 'Variant', values: [ { - text: aldine.page_section.standard, value: '', + text: aldine.page_section.standard, + value: '', }, { - text: aldine.page_section.accent, value: 'accent', + text: aldine.page_section.accent, + value: 'accent', }, { - text: aldine.page_section.bordered, value: 'bordered', + text: aldine.page_section.bordered, + value: 'bordered', }, { - text: aldine.page_section.borderless, value: 'borderless', + text: aldine.page_section.borderless, + value: 'borderless', }, ], value: '', // Sets the default From 6cfac83b34c0d21f8d251f502f356cfc989e77ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Sat, 21 Jul 2018 13:27:46 -0300 Subject: [PATCH 13/35] Bump pressbooks-build-tools from 0.12.0 to 0.13.0 (#130) Bumps [pressbooks-build-tools](https://github.com/pressbooks/pressbooks-build-tools) from 0.12.0 to 0.13.0. - [Release notes](https://github.com/pressbooks/pressbooks-build-tools/releases) - [Commits](https://github.com/pressbooks/pressbooks-build-tools/compare/0.12.0...0.13.0) Signed-off-by: dependabot[bot] --- package-lock.json | 6016 +++++++++++++++++++++++++++++---------------- package.json | 2 +- yarn.lock | 318 ++- 3 files changed, 4153 insertions(+), 2183 deletions(-) diff --git a/package-lock.json b/package-lock.json index c4a9039..d035d68 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,184 +18,6 @@ "@babel/highlight": "7.0.0-beta.44" } }, - "@babel/core": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.0.0-beta.46.tgz", - "integrity": "sha512-lCDbBSAhNAt+nL98xbgWmuhgrIxKvbvFHf73zlNCuXCHJkdlo7qzTofYK0ZWb+OVce8fQ17fC7DwTIhAwowzMw==", - "dev": true, - "requires": { - "@babel/code-frame": "7.0.0-beta.46", - "@babel/generator": "7.0.0-beta.46", - "@babel/helpers": "7.0.0-beta.46", - "@babel/template": "7.0.0-beta.46", - "@babel/traverse": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46", - "babylon": "7.0.0-beta.46", - "convert-source-map": "1.5.1", - "debug": "3.1.0", - "json5": "0.5.1", - "lodash": "4.17.4", - "micromatch": "2.3.11", - "resolve": "1.5.0", - "semver": "5.4.1", - "source-map": "0.5.7" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.46.tgz", - "integrity": "sha512-7BKRkmYaPZm3Yff5HGZJKCz7RqZ5jUjknsXT6Gz5YKG23J3uq9hAj0epncCB0rlqmnZ8Q+UUpQB2tCR5mT37vw==", - "dev": true, - "requires": { - "@babel/highlight": "7.0.0-beta.46" - } - }, - "@babel/generator": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.46.tgz", - "integrity": "sha512-5VfaEVkPG0gpNSTcf70jvV+MjbMoNn4g2iluwM7MhciedkolEtmG7PcdoUj5W1EmMfngz5cF65V7UMZXJO6y8Q==", - "dev": true, - "requires": { - "@babel/types": "7.0.0-beta.46", - "jsesc": "2.5.1", - "lodash": "4.17.4", - "source-map": "0.5.7", - "trim-right": "1.0.1" - } - }, - "@babel/helper-function-name": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.46.tgz", - "integrity": "sha512-zm4Kc5XB2njGs8PkmjV1zE/g1hBuphbh+VcDyFLaQsxkxSFSUtCbKwFL8AQpL/qPIcGbvX1MBt50a/3ZZH2CQA==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "7.0.0-beta.46", - "@babel/template": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.46.tgz", - "integrity": "sha512-dPrTb7QHVx44xJLjUl3LGAc13iS7hdXdO0fiOxdRN1suIS91yGGgeuwiQBlrw5SxbFchYtwenhlKbqHdVfGyVA==", - "dev": true, - "requires": { - "@babel/types": "7.0.0-beta.46" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.46.tgz", - "integrity": "sha512-UT7acgV7wsnBPwnqslqcnUFvsPBP4TtVaYM82xPGA7+evAa8q8HXOmFk08qsMK/pX/yy4+51gJJwyw2zofnacA==", - "dev": true, - "requires": { - "@babel/types": "7.0.0-beta.46" - } - }, - "@babel/highlight": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.46.tgz", - "integrity": "sha512-r4snW6Q8ICL3Y8hGzYJRvyG/+sc+kvkewXNedG9tQjoHmUFMwMSv/o45GWQUQswevGnWghiGkpRPivFfOuMsOA==", - "dev": true, - "requires": { - "chalk": "2.4.1", - "esutils": "2.0.2", - "js-tokens": "3.0.2" - } - }, - "@babel/template": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.0.0-beta.46.tgz", - "integrity": "sha512-3/qi4m0l6G/vZbEwtqfzJk73mYtuE7nvAO1zT3/ZrTAHy4sHf2vaF9Eh1w+Tau263Yrkh0bjVQPb9zw6G+GeMQ==", - "dev": true, - "requires": { - "@babel/code-frame": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46", - "babylon": "7.0.0-beta.46", - "lodash": "4.17.4" - } - }, - "@babel/traverse": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.0.0-beta.46.tgz", - "integrity": "sha512-IU7MTGbcjpfhf5tyCu3sDB7sWYainZQcT+CqOBdVZXZfq5MMr130R7aiZBI2g5dJYUaW1PS81DVNpd0/Sq/Gzg==", - "dev": true, - "requires": { - "@babel/code-frame": "7.0.0-beta.46", - "@babel/generator": "7.0.0-beta.46", - "@babel/helper-function-name": "7.0.0-beta.46", - "@babel/helper-split-export-declaration": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46", - "babylon": "7.0.0-beta.46", - "debug": "3.1.0", - "globals": "11.5.0", - "invariant": "2.2.4", - "lodash": "4.17.4" - } - }, - "@babel/types": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.46.tgz", - "integrity": "sha512-uA5aruF2KKsJxToWdDpftsrPOIQtoGrGno2hiaeO9JRvfT9xZdK11nPoC+/RF9emNzmNbWn4HCRdCY+McT5Nbw==", - "dev": true, - "requires": { - "esutils": "2.0.2", - "lodash": "4.17.4", - "to-fast-properties": "2.0.0" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "1.9.1" - } - }, - "babylon": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.46.tgz", - "integrity": "sha512-WFJlg2WatdkXRFMpk7BN/Uzzkjkcjk+WaqnrSCpay+RYl4ypW9ZetZyT9kNt22IH/BQNst3M6PaaBn9IXsUNrg==", - "dev": true - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.4.0" - } - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "supports-color": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", - "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", - "dev": true, - "requires": { - "has-flag": "3.0.0" - } - } - } - }, "@babel/generator": { "version": "7.0.0-beta.44", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.44.tgz", @@ -246,172 +68,6 @@ "@babel/types": "7.0.0-beta.44" } }, - "@babel/helpers": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.0.0-beta.46.tgz", - "integrity": "sha512-mbpH9pM3pJzo/tBr75U+zva3pqpyivogt1aofgEoD7bWFAYSuqOudRuz+m4XP6VPxxLoxcA4SFPGkuLRt9+7nQ==", - "dev": true, - "requires": { - "@babel/template": "7.0.0-beta.46", - "@babel/traverse": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46" - }, - "dependencies": { - "@babel/code-frame": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.46.tgz", - "integrity": "sha512-7BKRkmYaPZm3Yff5HGZJKCz7RqZ5jUjknsXT6Gz5YKG23J3uq9hAj0epncCB0rlqmnZ8Q+UUpQB2tCR5mT37vw==", - "dev": true, - "requires": { - "@babel/highlight": "7.0.0-beta.46" - } - }, - "@babel/generator": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.0.0-beta.46.tgz", - "integrity": "sha512-5VfaEVkPG0gpNSTcf70jvV+MjbMoNn4g2iluwM7MhciedkolEtmG7PcdoUj5W1EmMfngz5cF65V7UMZXJO6y8Q==", - "dev": true, - "requires": { - "@babel/types": "7.0.0-beta.46", - "jsesc": "2.5.1", - "lodash": "4.17.4", - "source-map": "0.5.7", - "trim-right": "1.0.1" - } - }, - "@babel/helper-function-name": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.46.tgz", - "integrity": "sha512-zm4Kc5XB2njGs8PkmjV1zE/g1hBuphbh+VcDyFLaQsxkxSFSUtCbKwFL8AQpL/qPIcGbvX1MBt50a/3ZZH2CQA==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "7.0.0-beta.46", - "@babel/template": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.46.tgz", - "integrity": "sha512-dPrTb7QHVx44xJLjUl3LGAc13iS7hdXdO0fiOxdRN1suIS91yGGgeuwiQBlrw5SxbFchYtwenhlKbqHdVfGyVA==", - "dev": true, - "requires": { - "@babel/types": "7.0.0-beta.46" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.46.tgz", - "integrity": "sha512-UT7acgV7wsnBPwnqslqcnUFvsPBP4TtVaYM82xPGA7+evAa8q8HXOmFk08qsMK/pX/yy4+51gJJwyw2zofnacA==", - "dev": true, - "requires": { - "@babel/types": "7.0.0-beta.46" - } - }, - "@babel/highlight": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.46.tgz", - "integrity": "sha512-r4snW6Q8ICL3Y8hGzYJRvyG/+sc+kvkewXNedG9tQjoHmUFMwMSv/o45GWQUQswevGnWghiGkpRPivFfOuMsOA==", - "dev": true, - "requires": { - "chalk": "2.4.1", - "esutils": "2.0.2", - "js-tokens": "3.0.2" - } - }, - "@babel/template": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.0.0-beta.46.tgz", - "integrity": "sha512-3/qi4m0l6G/vZbEwtqfzJk73mYtuE7nvAO1zT3/ZrTAHy4sHf2vaF9Eh1w+Tau263Yrkh0bjVQPb9zw6G+GeMQ==", - "dev": true, - "requires": { - "@babel/code-frame": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46", - "babylon": "7.0.0-beta.46", - "lodash": "4.17.4" - } - }, - "@babel/traverse": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.0.0-beta.46.tgz", - "integrity": "sha512-IU7MTGbcjpfhf5tyCu3sDB7sWYainZQcT+CqOBdVZXZfq5MMr130R7aiZBI2g5dJYUaW1PS81DVNpd0/Sq/Gzg==", - "dev": true, - "requires": { - "@babel/code-frame": "7.0.0-beta.46", - "@babel/generator": "7.0.0-beta.46", - "@babel/helper-function-name": "7.0.0-beta.46", - "@babel/helper-split-export-declaration": "7.0.0-beta.46", - "@babel/types": "7.0.0-beta.46", - "babylon": "7.0.0-beta.46", - "debug": "3.1.0", - "globals": "11.5.0", - "invariant": "2.2.4", - "lodash": "4.17.4" - } - }, - "@babel/types": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.0.0-beta.46.tgz", - "integrity": "sha512-uA5aruF2KKsJxToWdDpftsrPOIQtoGrGno2hiaeO9JRvfT9xZdK11nPoC+/RF9emNzmNbWn4HCRdCY+McT5Nbw==", - "dev": true, - "requires": { - "esutils": "2.0.2", - "lodash": "4.17.4", - "to-fast-properties": "2.0.0" - } - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "1.9.1" - } - }, - "babylon": { - "version": "7.0.0-beta.46", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.46.tgz", - "integrity": "sha512-WFJlg2WatdkXRFMpk7BN/Uzzkjkcjk+WaqnrSCpay+RYl4ypW9ZetZyT9kNt22IH/BQNst3M6PaaBn9IXsUNrg==", - "dev": true - }, - "chalk": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz", - "integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==", - "dev": true, - "requires": { - "ansi-styles": "3.2.1", - "escape-string-regexp": "1.0.5", - "supports-color": "5.4.0" - } - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "supports-color": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", - "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", - "dev": true, - "requires": { - "has-flag": "3.0.0" - } - } - } - }, "@babel/highlight": { "version": "7.0.0-beta.44", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0-beta.44.tgz", @@ -429,7 +85,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "chalk": { @@ -479,7 +135,7 @@ "@babel/types": "7.0.0-beta.44", "babylon": "7.0.0-beta.44", "debug": "3.1.0", - "globals": "11.5.0", + "globals": "11.7.0", "invariant": "2.2.4", "lodash": "4.17.4" }, @@ -584,6 +240,12 @@ "glob-to-regexp": "0.3.0" } }, + "@nodelib/fs.stat": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.0.tgz", + "integrity": "sha512-LAQ1d4OPfSJ/BMbI2DuizmYrrkD9JMaTdi2hQTlI53lQ4kRQPyZQRS4CYQ7O66bnBBnP/oYdRxbk++X0xuFU6A==", + "dev": true + }, "abbrev": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", @@ -599,9 +261,9 @@ } }, "acorn": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.5.3.tgz", - "integrity": "sha512-jd5MkIUlbbmb07nXH0DT3y7rDVtkzDi4XZOUVWAer8ajmF/DTSSbl5oNFyDOl/OXA33Bl79+ypHhl2pN20VeOQ==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.1.tgz", + "integrity": "sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==", "dev": true }, "acorn-dynamic-import": { @@ -622,20 +284,12 @@ } }, "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz", + "integrity": "sha512-JY+iV6r+cO21KtntVvFkD+iqjtdpRUpGqKWgfkCdZq1R+kbreEl8EcdcJR4SmiIgsIQT33s6QzheQ9a275Q8xw==", "dev": true, "requires": { - "acorn": "3.3.0" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", - "dev": true - } + "acorn": "5.7.1" } }, "adjust-sourcemap-loader": { @@ -701,9 +355,9 @@ } }, "ajv-keywords": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz", - "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", + "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=", "dev": true }, "align-text": { @@ -811,9 +465,9 @@ } }, "are-we-there-yet": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz", - "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", "dev": true, "requires": { "delegates": "1.0.0", @@ -829,9 +483,9 @@ } }, "aria-query": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-0.7.1.tgz", - "integrity": "sha1-Jsu1r/ZBRLCoJb4YRuCxbPoAsR4=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz", + "integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=", "dev": true, "requires": { "ast-types-flow": "0.0.7", @@ -885,7 +539,7 @@ "dev": true, "requires": { "define-properties": "1.1.2", - "es-abstract": "1.11.0" + "es-abstract": "1.12.0" } }, "array-iterate": { @@ -1023,10 +677,10 @@ "dev": true, "requires": { "browserslist": "2.11.3", - "caniuse-lite": "1.0.30000830", + "caniuse-lite": "1.0.30000865", "normalize-range": "0.1.2", "num2fraction": "1.2.2", - "postcss": "6.0.21", + "postcss": "6.0.23", "postcss-value-parser": "3.3.0" } }, @@ -1040,10 +694,20 @@ "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" }, + "axios": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz", + "integrity": "sha1-LY4+XQvb1zJ/kbyBT1xXZg+Bgk0=", + "dev": true, + "requires": { + "follow-redirects": "1.5.1", + "is-buffer": "1.1.6" + } + }, "axobject-query": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-0.1.0.tgz", - "integrity": "sha1-YvWdvFnJ+SQnWco0mWDnov48NsA=", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.1.tgz", + "integrity": "sha1-Bd+nBa2orZ25k/polvItOVsLCgc=", "dev": true, "requires": { "ast-types-flow": "0.0.7" @@ -1061,9 +725,9 @@ } }, "babel-core": { - "version": "6.26.2", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.2.tgz", - "integrity": "sha512-rFKFnHY8sbRSqja2O5eTx0z0Na5hukdtsFt7X9xdBFXMurrJ5YoY78Y/2/EuNZIaDQKEJSfxSMePfsymxt0CZg==", + "version": "6.26.3", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", + "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", "dev": true, "requires": { "babel-code-frame": "6.26.0", @@ -1102,9 +766,9 @@ } }, "babel-eslint": { - "version": "8.2.3", - "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-8.2.3.tgz", - "integrity": "sha512-0HeSTtaXg/Em7FCUWxwOT+KeFSO1O7LuRuzhk7g+1BjwdlQGlHq4OyMi3GqGxrNfEq8jEi6Hmt5ylEQUhurgiQ==", + "version": "8.2.6", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-8.2.6.tgz", + "integrity": "sha512-aCdHjhzcILdP8c9lej7hvXKvQieyRt20SF102SIGyY4cUIiw6UaAtK4j2o3dXX74jEmy0TJ0CEhv4fTIM3SzcA==", "dev": true, "requires": { "@babel/code-frame": "7.0.0-beta.44", @@ -1283,9 +947,9 @@ } }, "babel-loader": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.4.tgz", - "integrity": "sha512-/hbyEvPzBJuGpk9o80R0ZyTej6heEOr59GoEUtn8qFKbnx4cJm9FWES6J/iv644sYgrtVw9JJQkjaLW/bqb5gw==", + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz", + "integrity": "sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==", "dev": true, "requires": { "find-cache-dir": "1.0.0", @@ -1300,7 +964,7 @@ "dev": true, "requires": { "commondir": "1.0.1", - "make-dir": "1.2.0", + "make-dir": "1.3.0", "pkg-dir": "2.0.0" } }, @@ -1671,9 +1335,9 @@ } }, "babel-preset-env": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz", - "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz", + "integrity": "sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==", "dev": true, "requires": { "babel-plugin-check-es2015-constants": "6.22.0", @@ -1703,9 +1367,21 @@ "babel-plugin-transform-es2015-unicode-regex": "6.24.1", "babel-plugin-transform-exponentiation-operator": "6.24.1", "babel-plugin-transform-regenerator": "6.26.0", - "browserslist": "2.11.3", + "browserslist": "3.2.8", "invariant": "2.2.4", "semver": "5.4.1" + }, + "dependencies": { + "browserslist": { + "version": "3.2.8", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz", + "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==", + "dev": true, + "requires": { + "caniuse-lite": "1.0.30000865", + "electron-to-chromium": "1.3.52" + } + } } }, "babel-register": { @@ -1714,7 +1390,7 @@ "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", "dev": true, "requires": { - "babel-core": "6.26.2", + "babel-core": "6.26.3", "babel-runtime": "6.26.0", "core-js": "2.5.3", "home-or-tmp": "2.0.0", @@ -2336,19 +2012,28 @@ "dev": true, "requires": { "browserify-aes": "1.2.0", - "browserify-des": "1.0.1", + "browserify-des": "1.0.2", "evp_bytestokey": "1.0.3" } }, "browserify-des": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.1.tgz", - "integrity": "sha512-zy0Cobe3hhgpiOM32Tj7KQ3Vl91m0njwsjzZQK1L+JDf11dzP9qIvjreVinsvXrgfjhStXwUWAEpB9D7Gwmayw==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", "dev": true, "requires": { "cipher-base": "1.0.4", "des.js": "1.0.0", - "inherits": "2.0.3" + "inherits": "2.0.3", + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } } }, "browserify-rsa": { @@ -2391,8 +2076,8 @@ "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==", "dev": true, "requires": { - "caniuse-lite": "1.0.30000830", - "electron-to-chromium": "1.3.44" + "caniuse-lite": "1.0.30000865", + "electron-to-chromium": "1.3.52" } }, "bs-recipes": { @@ -2407,24 +2092,24 @@ "dev": true, "requires": { "base64-js": "0.0.8", - "ieee754": "1.1.11", + "ieee754": "1.1.12", "isarray": "1.0.0" } }, "buffer-alloc": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.1.0.tgz", - "integrity": "sha1-BVFNM78WVtNUDGhPZbEgLpDsowM=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", "dev": true, "requires": { - "buffer-alloc-unsafe": "0.1.1", - "buffer-fill": "0.1.1" + "buffer-alloc-unsafe": "1.1.0", + "buffer-fill": "1.0.0" } }, "buffer-alloc-unsafe": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz", - "integrity": "sha1-/+H2dVHdBVc33iUzN7/oU9+rGmo=", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", "dev": true }, "buffer-crc32": { @@ -2434,9 +2119,9 @@ "dev": true }, "buffer-fill": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz", - "integrity": "sha512-YgBMBzdRLEfgxJIGu2wrvI2E03tMCFU1p7d1KhB4BOoMN0VxmTFjSyN5JtKt9z8Z9JajMHruI6SE25W96wNv7Q==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", "dev": true }, "buffer-from": { @@ -2509,7 +2194,7 @@ "chownr": "1.0.1", "glob": "7.1.2", "graceful-fs": "4.1.11", - "lru-cache": "4.1.2", + "lru-cache": "4.1.3", "mississippi": "2.0.0", "mkdirp": "0.5.1", "move-concurrently": "1.0.1", @@ -2521,9 +2206,9 @@ }, "dependencies": { "lru-cache": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.2.tgz", - "integrity": "sha512-wgeVXhrDwAWnIF/yZARsFnMBtdFXOg1b8RIrhilp+0iDYN4mdQcNZElDZ0e4B64BhaxeQ5zN7PMyvu7we1kPeQ==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", "dev": true, "requires": { "pseudomap": "1.0.2", @@ -2627,7 +2312,7 @@ "dev": true, "requires": { "browserslist": "1.7.7", - "caniuse-db": "1.0.30000830", + "caniuse-db": "1.0.30000869", "lodash.memoize": "4.1.2", "lodash.uniq": "4.5.0" }, @@ -2638,22 +2323,22 @@ "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", "dev": true, "requires": { - "caniuse-db": "1.0.30000830", - "electron-to-chromium": "1.3.44" + "caniuse-db": "1.0.30000869", + "electron-to-chromium": "1.3.52" } } } }, "caniuse-db": { - "version": "1.0.30000830", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000830.tgz", - "integrity": "sha1-bkUlWzRWSf0V/1kHLaHhK7PeLxM=", + "version": "1.0.30000869", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000869.tgz", + "integrity": "sha1-w9pZ+o2UVt+Iokuyku3g43mHmMs=", "dev": true }, "caniuse-lite": { - "version": "1.0.30000830", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000830.tgz", - "integrity": "sha512-yMqGkujkoOIZfvOYiWdqPALgY/PVGiqCHUJb6yNq7xhI/pR+gQO0U2K6lRDqAiJv4+CIU3CtTLblNGw0QGnr6g==", + "version": "1.0.30000865", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000865.tgz", + "integrity": "sha512-vs79o1mOSKRGv/1pSkp4EXgl4ZviWeYReXw60XfacPU64uQWZwJT6vZNmxRF9O+6zu71sJwMxLK5JXxbzuVrLw==", "dev": true }, "capture-stack-trace": { @@ -3049,23 +2734,23 @@ "dev": true, "requires": { "clone": "1.0.3", - "color-convert": "1.9.1", + "color-convert": "1.9.2", "color-string": "0.3.0" } }, "color-convert": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz", - "integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz", + "integrity": "sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==", "dev": true, "requires": { - "color-name": "1.1.3" + "color-name": "1.1.1" } }, "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha1-SxQVMEz1ACjqgWQ2Q72C6gWANok=", "dev": true }, "color-string": { @@ -3074,7 +2759,7 @@ "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", "dev": true, "requires": { - "color-name": "1.1.3" + "color-name": "1.1.1" } }, "color-support": { @@ -3091,7 +2776,7 @@ "requires": { "color": "0.11.4", "css-color-names": "0.0.4", - "has": "1.0.1" + "has": "1.0.3" } }, "colors": { @@ -3143,40 +2828,73 @@ "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=" }, "compressible": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz", - "integrity": "sha1-DRAgq5JLL9tNYnmHXH1tq6a6p6k=", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz", + "integrity": "sha1-MmxfUH+7BV9UEWeCuWmoG2einac=", "dev": true, "requires": { - "mime-db": "1.33.0" + "mime-db": "1.35.0" }, "dependencies": { "mime-db": { - "version": "1.33.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", - "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==", + "version": "1.35.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz", + "integrity": "sha512-JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==", "dev": true } } }, "compression": { - "version": "1.7.2", - "resolved": "http://registry.npmjs.org/compression/-/compression-1.7.2.tgz", - "integrity": "sha1-qv+81qr4VLROuygDU9WtFlH1mmk=", + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz", + "integrity": "sha512-HSjyBG5N1Nnz7tF2+O7A9XUhyjru71/fwgNb7oIsEVHR0WShfs2tIS/EySLgiTe98aOK18YDlMXpzjCXY/n9mg==", "dev": true, "requires": { - "accepts": "1.3.4", + "accepts": "1.3.5", "bytes": "3.0.0", - "compressible": "2.0.13", + "compressible": "2.0.14", "debug": "2.6.9", "on-headers": "1.0.1", - "safe-buffer": "5.1.1", + "safe-buffer": "5.1.2", "vary": "1.1.2" - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + }, + "dependencies": { + "accepts": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", + "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", + "dev": true, + "requires": { + "mime-types": "2.1.19", + "negotiator": "0.6.1" + } + }, + "mime-db": { + "version": "1.35.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz", + "integrity": "sha512-JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==", + "dev": true + }, + "mime-types": { + "version": "2.1.19", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz", + "integrity": "sha512-P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==", + "dev": true, + "requires": { + "mime-db": "1.35.0" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concat-stream": { @@ -3195,7 +2913,7 @@ "integrity": "sha1-C0nW6MQQR9dyjNyNYqCGYjOXtJ8=", "dev": true, "requires": { - "globs": "0.1.3" + "globs": "0.1.4" } }, "config-chain": { @@ -3364,24 +3082,33 @@ "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" }, "cosmiconfig": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz", - "integrity": "sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-4.0.0.tgz", + "integrity": "sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ==", "dev": true, "requires": { "is-directory": "0.3.1", "js-yaml": "3.10.0", - "minimist": "1.2.0", - "object-assign": "4.1.1", - "os-homedir": "1.0.2", - "parse-json": "2.2.0", - "require-from-string": "1.2.1" + "parse-json": "4.0.0", + "require-from-string": "2.0.2" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "1.3.1", + "json-parse-better-errors": "1.0.2" + } + } } }, "create-ecdh": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.1.tgz", - "integrity": "sha512-iZvCCg8XqHQZ1ioNBTzXS/cQSkqkqcPs8xSX4upNB+DAk9Ht3uzQf2J32uAHNCne8LDmKr29AgZrEs4oIrwLuQ==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", "dev": true, "requires": { "bn.js": "4.11.8", @@ -3424,35 +3151,33 @@ } }, "cross-env": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.1.4.tgz", - "integrity": "sha512-Mx8mw6JWhfpYoEk7PGvHxJMLQwQHORAs8+2bX+C1lGQ4h3GkDb1zbzC2Nw85YH9ZQMlO0BHZxMacgrfPmMFxbg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz", + "integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==", "dev": true, "requires": { - "cross-spawn": "5.1.0", + "cross-spawn": "6.0.5", "is-windows": "1.0.1" } }, "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "dev": true, "requires": { - "lru-cache": "4.1.2", + "nice-try": "1.0.4", + "path-key": "2.0.1", + "semver": "5.5.0", "shebang-command": "1.2.0", "which": "1.3.0" }, "dependencies": { - "lru-cache": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.2.tgz", - "integrity": "sha512-wgeVXhrDwAWnIF/yZARsFnMBtdFXOg1b8RIrhilp+0iDYN4mdQcNZElDZ0e4B64BhaxeQ5zN7PMyvu7we1kPeQ==", - "dev": true, - "requires": { - "pseudomap": "1.0.2", - "yallist": "2.1.2" - } + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "dev": true } } }, @@ -3478,7 +3203,7 @@ "requires": { "browserify-cipher": "1.0.1", "browserify-sign": "4.0.4", - "create-ecdh": "4.0.1", + "create-ecdh": "4.0.3", "create-hash": "1.2.0", "create-hmac": "1.1.7", "diffie-hellman": "5.0.3", @@ -3496,23 +3221,17 @@ "dev": true }, "css": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.1.tgz", - "integrity": "sha1-c6TIHehdtmTU7mdPfUcIXjstVdw=", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.3.tgz", + "integrity": "sha512-0W171WccAjQGGTKLhw4m2nnl0zPHUlTO/I8td4XzJgIB8Hg3ZZx71qT4G4eX8OVsSiaAKiUMy73E3nsbPlg2DQ==", "dev": true, "requires": { "inherits": "2.0.3", "source-map": "0.1.43", - "source-map-resolve": "0.3.1", + "source-map-resolve": "0.5.1", "urix": "0.1.0" }, "dependencies": { - "atob": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/atob/-/atob-1.1.3.tgz", - "integrity": "sha1-lfE2KbEsOlGl0hWr3OKqnzL4B3M=", - "dev": true - }, "source-map": { "version": "0.1.43", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", @@ -3521,24 +3240,6 @@ "requires": { "amdefine": "1.0.1" } - }, - "source-map-resolve": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.3.1.tgz", - "integrity": "sha1-YQ9hIqRFuN1RU1oqcbeD38Ekh2E=", - "dev": true, - "requires": { - "atob": "1.1.3", - "resolve-url": "0.2.1", - "source-map-url": "0.3.0", - "urix": "0.1.0" - } - }, - "source-map-url": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.3.0.tgz", - "integrity": "sha1-fsrxO1e80J2opAxdJp2zN5nUqvk=", - "dev": true } } }, @@ -3583,7 +3284,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -3640,7 +3341,7 @@ "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=", "dev": true, "requires": { - "regenerate": "1.3.3", + "regenerate": "1.4.0", "regjsgen": "0.2.0", "regjsparser": "0.1.5" } @@ -3653,7 +3354,7 @@ "integrity": "sha512-XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==", "dev": true, "requires": { - "mdn-data": "1.1.2", + "mdn-data": "1.1.4", "source-map": "0.5.7" }, "dependencies": { @@ -3692,7 +3393,7 @@ "autoprefixer": "6.7.7", "decamelize": "1.2.0", "defined": "1.0.0", - "has": "1.0.1", + "has": "1.0.3", "object-assign": "4.1.1", "postcss": "5.2.18", "postcss-calc": "5.3.1", @@ -3703,7 +3404,7 @@ "postcss-discard-empty": "2.1.0", "postcss-discard-overridden": "0.1.1", "postcss-discard-unused": "2.2.3", - "postcss-filter-plugins": "2.0.2", + "postcss-filter-plugins": "2.0.3", "postcss-merge-idents": "2.1.7", "postcss-merge-longhand": "2.0.2", "postcss-merge-rules": "2.1.2", @@ -3730,7 +3431,7 @@ "dev": true, "requires": { "browserslist": "1.7.7", - "caniuse-db": "1.0.30000830", + "caniuse-db": "1.0.30000869", "normalize-range": "0.1.2", "num2fraction": "1.2.2", "postcss": "5.2.18", @@ -3743,8 +3444,8 @@ "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", "dev": true, "requires": { - "caniuse-db": "1.0.30000830", - "electron-to-chromium": "1.3.44" + "caniuse-db": "1.0.30000869", + "electron-to-chromium": "1.3.52" } }, "has-flag": { @@ -3760,7 +3461,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -3821,7 +3522,7 @@ "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", "dev": true, "requires": { - "es5-ext": "0.10.42" + "es5-ext": "0.10.45" } }, "damerau-levenshtein": { @@ -3914,7 +3615,7 @@ "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", "dev": true, "requires": { - "mimic-response": "1.0.0" + "mimic-response": "1.0.1" } }, "decompress-tar": { @@ -3926,7 +3627,7 @@ "is-tar": "1.0.0", "object-assign": "2.1.1", "strip-dirs": "1.1.1", - "tar-stream": "1.5.7", + "tar-stream": "1.6.1", "through2": "0.6.5", "vinyl": "0.4.6" }, @@ -3965,7 +3666,7 @@ "object-assign": "2.1.1", "seek-bzip": "1.0.5", "strip-dirs": "1.1.1", - "tar-stream": "1.5.7", + "tar-stream": "1.6.1", "through2": "0.6.5", "vinyl": "0.4.6" }, @@ -4003,7 +3704,7 @@ "is-gzip": "1.0.0", "object-assign": "2.1.1", "strip-dirs": "1.1.1", - "tar-stream": "1.5.7", + "tar-stream": "1.6.1", "through2": "0.6.5", "vinyl": "0.4.6" }, @@ -4044,7 +3745,7 @@ "strip-dirs": "1.1.1", "through2": "2.0.3", "vinyl": "1.2.0", - "yauzl": "2.9.1" + "yauzl": "2.10.0" }, "dependencies": { "through2": { @@ -4099,7 +3800,7 @@ "dev": true, "requires": { "foreach": "2.0.5", - "object-keys": "1.0.11" + "object-keys": "1.0.12" } }, "define-property": { @@ -4311,9 +4012,9 @@ "dev": true }, "domhandler": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz", - "integrity": "sha1-iS5HAAqZvlW783dP/qBWHYh5wlk=", + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", "dev": true, "requires": { "domelementtype": "1.3.0" @@ -4361,7 +4062,7 @@ "filenamify": "1.2.1", "got": "5.7.1", "gulp-decompress": "1.2.0", - "gulp-rename": "1.2.2", + "gulp-rename": "1.3.0", "is-url": "1.2.4", "object-assign": "4.1.1", "read-all-stream": "3.1.0", @@ -4387,9 +4088,9 @@ "dev": true }, "duplexify": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.5.4.tgz", - "integrity": "sha512-JzYSLYMhoVVBe8+mbHQ4KgpvHpm0DZpJuL8PY93Vyv1fW7jYJ90LoXa1di/CVbJM+TgMs91rbDapE/RNIfnJsA==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.6.0.tgz", + "integrity": "sha512-fO3Di4tBKJpYTFHAxTU00BcfWMY9w24r/x21a6rZRbsD/ToUgGxsMbiGRmB7uVAXeGKXD9MwiLZa5E97EVgIRQ==", "dev": true, "requires": { "end-of-stream": "1.4.1", @@ -4463,9 +4164,9 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.44", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.44.tgz", - "integrity": "sha1-72sVCmDVIwgjiMra2ICF7NL9RoQ=", + "version": "1.3.52", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.52.tgz", + "integrity": "sha1-0tnxJwuko7lnuDHEDvcftNmrXOA=", "dev": true }, "elliptic": { @@ -4476,7 +4177,7 @@ "requires": { "bn.js": "4.11.8", "brorand": "1.1.0", - "hash.js": "1.1.3", + "hash.js": "1.1.5", "hmac-drbg": "1.0.1", "inherits": "2.0.3", "minimalistic-assert": "1.0.1", @@ -4505,15 +4206,6 @@ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=" }, - "encoding": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "dev": true, - "requires": { - "iconv-lite": "0.4.19" - } - }, "end-of-stream": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", @@ -4614,24 +4306,24 @@ } }, "error-stack-parser": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.1.tgz", - "integrity": "sha1-oyArj7AxFKqbQKDjZp5IsrZaAQo=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.2.tgz", + "integrity": "sha512-E1fPutRDdIj/hohG0UpT5mayXNCxXP9d+snxFsPU9X0XgccOumKraa3juDMwTUyi7+Bu5+mCGagjg4IYeNbOdw==", "dev": true, "requires": { "stackframe": "1.0.4" } }, "es-abstract": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz", - "integrity": "sha512-ZnQrE/lXTTQ39ulXZ+J1DTFazV9qBy61x2bY071B+qGco8Z8q1QddsLdt/EF8Ai9hcWH72dWS0kFqXLxOxqslA==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz", + "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==", "dev": true, "requires": { "es-to-primitive": "1.1.1", "function-bind": "1.1.1", - "has": "1.0.1", - "is-callable": "1.1.3", + "has": "1.0.3", + "is-callable": "1.1.4", "is-regex": "1.0.4" } }, @@ -4641,15 +4333,15 @@ "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", "dev": true, "requires": { - "is-callable": "1.1.3", + "is-callable": "1.1.4", "is-date-object": "1.0.1", "is-symbol": "1.0.1" } }, "es5-ext": { - "version": "0.10.42", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz", - "integrity": "sha512-AJxO1rmPe1bDEfSR6TJ/FgMFYuTBhR5R57KW58iCkYACMyFbrkqVyzXSurYoScDGvgyMpk7uRF/lPUPPTmsRSA==", + "version": "0.10.45", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz", + "integrity": "sha512-FkfM6Vxxfmztilbxxz5UKSD4ICMf5tSpRFtDNtkAhOxZ0EKtX6qwmXNyH/sFyIbX2P/nU5AMiA9jilWsUGJzCQ==", "dev": true, "requires": { "es6-iterator": "2.0.3", @@ -4664,7 +4356,7 @@ "dev": true, "requires": { "d": "1.0.0", - "es5-ext": "0.10.42", + "es5-ext": "0.10.45", "es6-symbol": "3.1.1" } }, @@ -4675,7 +4367,7 @@ "dev": true, "requires": { "d": "1.0.0", - "es5-ext": "0.10.42", + "es5-ext": "0.10.45", "es6-iterator": "2.0.3", "es6-set": "0.1.5", "es6-symbol": "3.1.1", @@ -4694,7 +4386,7 @@ "dev": true, "requires": { "d": "1.0.0", - "es5-ext": "0.10.42", + "es5-ext": "0.10.45", "es6-iterator": "2.0.3", "es6-symbol": "3.1.1", "event-emitter": "0.3.5" @@ -4707,7 +4399,7 @@ "dev": true, "requires": { "d": "1.0.0", - "es5-ext": "0.10.42" + "es5-ext": "0.10.45" } }, "es6-templates": { @@ -4727,7 +4419,7 @@ "dev": true, "requires": { "d": "1.0.0", - "es5-ext": "0.10.42", + "es5-ext": "0.10.45", "es6-iterator": "2.0.3", "es6-symbol": "3.1.1" } @@ -4755,35 +4447,35 @@ } }, "eslint": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz", - "integrity": "sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-5.1.0.tgz", + "integrity": "sha512-DyH6JsoA1KzA5+OSWFjg56DFJT+sDLO0yokaPZ9qY0UEmYrPA1gEX/G1MnVkmRDsksG4H1foIVz2ZXXM3hHYvw==", "dev": true, "requires": { - "ajv": "5.5.2", + "ajv": "6.5.2", "babel-code-frame": "6.26.0", "chalk": "2.4.1", - "concat-stream": "1.6.0", - "cross-spawn": "5.1.0", + "cross-spawn": "6.0.5", "debug": "3.1.0", "doctrine": "2.1.0", - "eslint-scope": "3.7.1", + "eslint-scope": "4.0.0", + "eslint-utils": "1.3.1", "eslint-visitor-keys": "1.0.0", - "espree": "3.5.4", + "espree": "4.0.0", "esquery": "1.0.1", "esutils": "2.0.2", "file-entry-cache": "2.0.0", "functional-red-black-tree": "1.0.1", "glob": "7.1.2", - "globals": "11.5.0", - "ignore": "3.3.8", + "globals": "11.7.0", + "ignore": "3.3.10", "imurmurhash": "0.1.4", - "inquirer": "3.3.0", + "inquirer": "5.2.0", "is-resolvable": "1.1.0", - "js-yaml": "3.10.0", + "js-yaml": "3.12.0", "json-stable-stringify-without-jsonify": "1.0.1", "levn": "0.3.0", - "lodash": "4.17.4", + "lodash": "4.17.10", "minimatch": "3.0.4", "mkdirp": "0.5.1", "natural-compare": "1.4.0", @@ -4793,23 +4485,24 @@ "progress": "2.0.0", "regexpp": "1.1.0", "require-uncached": "1.0.3", - "semver": "5.4.1", + "semver": "5.5.0", + "string.prototype.matchall": "2.0.0", "strip-ansi": "4.0.0", "strip-json-comments": "2.0.1", - "table": "4.0.2", + "table": "4.0.3", "text-table": "0.2.0" }, "dependencies": { "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", + "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", "dev": true, "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.1.0", + "fast-deep-equal": "2.0.1", "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1" + "json-schema-traverse": "0.4.1", + "uri-js": "4.2.2" } }, "ansi-escapes": { @@ -4830,7 +4523,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "chalk": { @@ -4862,6 +4555,16 @@ "ms": "2.0.0" } }, + "eslint-scope": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz", + "integrity": "sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA==", + "dev": true, + "requires": { + "esrecurse": "4.2.1", + "estraverse": "4.2.0" + } + }, "external-editor": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", @@ -4883,9 +4586,9 @@ } }, "inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-5.2.0.tgz", + "integrity": "sha512-E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==", "dev": true, "requires": { "ansi-escapes": "3.1.0", @@ -4894,11 +4597,10 @@ "cli-width": "2.2.0", "external-editor": "2.2.0", "figures": "2.0.0", - "lodash": "4.17.4", + "lodash": "4.17.10", "mute-stream": "0.0.7", "run-async": "2.3.0", - "rx-lite": "4.0.8", - "rx-lite-aggregates": "4.0.8", + "rxjs": "5.5.11", "string-width": "2.1.1", "strip-ansi": "4.0.0", "through": "2.3.8" @@ -4910,6 +4612,22 @@ "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", "dev": true }, + "js-yaml": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz", + "integrity": "sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==", + "dev": true, + "requires": { + "argparse": "1.0.9", + "esprima": "4.0.0" + } + }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + }, "mute-stream": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", @@ -4935,10 +4653,10 @@ "signal-exit": "3.0.2" } }, - "rx-lite": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", - "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=", + "semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", "dev": true }, "string-width": { @@ -4981,9 +4699,9 @@ } }, "eslint-config-humanmade": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/eslint-config-humanmade/-/eslint-config-humanmade-0.4.1.tgz", - "integrity": "sha1-n+YfqdT/INMJcT3UiiPFlxzT97k=", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-humanmade/-/eslint-config-humanmade-0.5.0.tgz", + "integrity": "sha1-jfGJe2p5D0FLeVzBP8HtKkO20N4=", "dev": true }, "eslint-config-react-app": { @@ -5026,18 +4744,26 @@ } }, "eslint-plugin-flowtype": { - "version": "2.46.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.46.3.tgz", - "integrity": "sha512-VpnNeC4E6t2E2NCw8Oveda91p8CPEaujZURC1KhHe4lBRZJla3o0DVvZu1QGXQZO1ZJ4vUmy3TCp95PqGvIZgQ==", + "version": "2.50.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.0.tgz", + "integrity": "sha512-10FnBXCp8odYcpUFXGAh+Zko7py0hUWutTd3BN/R9riukH360qNPLYPR3/xV9eu9K7OJDjJrsflBnL6RwxFnlw==", "dev": true, "requires": { - "lodash": "4.17.4" + "lodash": "4.17.10" + }, + "dependencies": { + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + } } }, "eslint-plugin-import": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.11.0.tgz", - "integrity": "sha1-Fa7qN6Z0mdhI6OmBgG1GJ7VQOBY=", + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.13.0.tgz", + "integrity": "sha512-t6hGKQDMIt9N8R7vLepsYXgDfeuhp6ZJSgtrLEDxonpSubyxUZHjhm6LsAaZX8q6GYVxkbT3kTsV9G5mBCFR6A==", "dev": true, "requires": { "contains-path": "0.1.0", @@ -5045,11 +4771,11 @@ "doctrine": "1.5.0", "eslint-import-resolver-node": "0.3.2", "eslint-module-utils": "2.2.0", - "has": "1.0.1", + "has": "1.0.3", "lodash": "4.17.4", "minimatch": "3.0.4", "read-pkg-up": "2.0.0", - "resolve": "1.7.1" + "resolve": "1.8.1" }, "dependencies": { "doctrine": { @@ -5114,9 +4840,9 @@ } }, "resolve": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz", - "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==", + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", + "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", "dev": true, "requires": { "path-parse": "1.0.5" @@ -5131,30 +4857,31 @@ } }, "eslint-plugin-jsx-a11y": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.0.3.tgz", - "integrity": "sha1-VFg9GuRCSDFi4EDhPMMYZUZRAOU=", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.1.tgz", + "integrity": "sha512-JsxNKqa3TwmPypeXNnI75FntkUktGzI1wSa1LgNZdSOMI+B4sxnr1lSF8m8lPiz4mKiC+14ysZQM4scewUrP7A==", "dev": true, "requires": { - "aria-query": "0.7.1", + "aria-query": "3.0.0", "array-includes": "3.0.3", "ast-types-flow": "0.0.7", - "axobject-query": "0.1.0", + "axobject-query": "2.0.1", "damerau-levenshtein": "1.0.4", "emoji-regex": "6.5.1", + "has": "1.0.3", "jsx-ast-utils": "2.0.1" } }, "eslint-plugin-react": { - "version": "7.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz", - "integrity": "sha512-KC7Snr4YsWZD5flu6A5c0AcIZidzW3Exbqp7OT67OaD2AppJtlBr/GuPrW/vaQM/yfZotEvKAdrxrO+v8vwYJA==", + "version": "7.10.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.10.0.tgz", + "integrity": "sha512-18rzWn4AtbSUxFKKM7aCVcj5LXOhOKdwBino3KKWy4psxfPW0YtIbE8WNRDUdyHFL50BeLb6qFd4vpvNYyp7hw==", "dev": true, "requires": { "doctrine": "2.1.0", - "has": "1.0.1", + "has": "1.0.3", "jsx-ast-utils": "2.0.1", - "prop-types": "15.6.1" + "prop-types": "15.6.2" } }, "eslint-scope": { @@ -5167,6 +4894,12 @@ "estraverse": "4.2.0" } }, + "eslint-utils": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz", + "integrity": "sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==", + "dev": true + }, "eslint-visitor-keys": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", @@ -5174,13 +4907,13 @@ "dev": true }, "espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-4.0.0.tgz", + "integrity": "sha512-kapdTCt1bjmspxStVKX6huolXVV5ZfyZguY1lcfhVVZstce3bqxH9mcLzNn3/mlgW6wQ732+0fuG9v7h0ZQoKg==", "dev": true, "requires": { - "acorn": "5.5.3", - "acorn-jsx": "3.0.1" + "acorn": "5.7.1", + "acorn-jsx": "4.1.1" } }, "esprima": { @@ -5235,7 +4968,7 @@ "dev": true, "requires": { "d": "1.0.0", - "es5-ext": "0.10.42" + "es5-ext": "0.10.45" } }, "eventemitter3": { @@ -5255,7 +4988,7 @@ "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=", "dev": true, "requires": { - "original": "1.0.0" + "original": "1.0.1" } }, "evp_bytestokey": { @@ -5320,6 +5053,29 @@ "p-finally": "1.0.0", "signal-exit": "3.0.2", "strip-eof": "1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "4.1.3", + "shebang-command": "1.2.0", + "which": "1.3.0" + } + }, + "lru-cache": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", + "dev": true, + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.1.2" + } + } } }, "execall": { @@ -5557,20 +5313,26 @@ "integrity": "sha512-bt/LZ4m5Rqt/Crl2HiKuAl/oqg0psx1tsTLkvWbJen1CtD+fftkZhMaQ9HOtY2gWsl2Wq+sABmMVi9z3DhKWQQ==", "dev": true, "requires": { - "async": "2.6.0", + "async": "2.6.1", "loader-utils": "1.1.0", "schema-utils": "0.3.0", "webpack-sources": "1.1.0" }, "dependencies": { "async": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz", - "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", + "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", "dev": true, "requires": { - "lodash": "4.17.4" + "lodash": "4.17.10" } + }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true } } }, @@ -5591,21 +5353,22 @@ } }, "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", "dev": true }, "fast-glob": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.1.tgz", - "integrity": "sha512-wSyW1TBK3ia5V+te0rGPXudeMHoUQW6O5Y9oATiaGhpENmEifPDlOdhpsnlj5HoG6ttIvGiY1DdCmI9X2xGMhg==", + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.2.tgz", + "integrity": "sha512-TR6zxCKftDQnUAPvkrCWdBgDq/gbqx8A3ApnBrR5rMvpp6+KMJI0Igw7fkWPgeVK0uhRXTXdvO3O+YP0CaUX2g==", "dev": true, "requires": { "@mrmlnc/readdir-enhanced": "2.2.1", + "@nodelib/fs.stat": "1.1.0", "glob-parent": "3.1.0", "is-glob": "4.0.0", - "merge2": "1.2.1", + "merge2": "1.2.2", "micromatch": "3.1.10" }, "dependencies": { @@ -5888,23 +5651,6 @@ } } }, - "is-odd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", - "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", - "dev": true, - "requires": { - "is-number": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -5937,7 +5683,7 @@ "extglob": "2.0.4", "fragment-cache": "0.2.1", "kind-of": "6.0.2", - "nanomatch": "1.2.9", + "nanomatch": "1.2.13", "object.pick": "1.3.0", "regex-not": "1.0.0", "snapdragon": "0.8.1", @@ -5945,9 +5691,9 @@ } }, "nanomatch": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", - "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "4.0.0", @@ -5955,7 +5701,6 @@ "define-property": "2.0.2", "extend-shallow": "3.0.2", "fragment-cache": "0.2.1", - "is-odd": "2.0.0", "is-windows": "1.0.2", "kind-of": "6.0.2", "object.pick": "1.3.0", @@ -6017,33 +5762,10 @@ "websocket-driver": "0.7.0" } }, - "fbjs": { - "version": "0.8.16", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz", - "integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=", - "dev": true, - "requires": { - "core-js": "1.2.7", - "isomorphic-fetch": "2.2.1", - "loose-envify": "1.3.1", - "object-assign": "4.1.1", - "promise": "7.3.1", - "setimmediate": "1.0.5", - "ua-parser-js": "0.7.12" - }, - "dependencies": { - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=", - "dev": true - } - } - }, "fd-slicer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", - "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", "dev": true, "requires": { "pend": "1.2.0" @@ -6446,9 +6168,9 @@ } }, "follow-redirects": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.4.1.tgz", - "integrity": "sha512-uxYePVPogtya1ktGnAAXOacnbIuRMB4dkvqeNz2qTtTQsuzSfbDolV+wMMKxAmCx0bLgAKLbBOkjItMbbkR1vg==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.1.tgz", + "integrity": "sha512-v9GI1hpaqq1ZZR6pBD1+kI7O24PhDvNGNodjS3MdcEqyrahCp8zbtpv+2B/krUnSmUH80lbAS7MrdeK5IylgKg==", "dev": true, "requires": { "debug": "3.1.0" @@ -6529,7 +6251,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "error-stack-parser": "2.0.1", + "error-stack-parser": "2.0.2", "string-width": "2.1.1" }, "dependencies": { @@ -7447,31 +7169,16 @@ "signal-exit": "3.0.2", "string-width": "1.0.2", "strip-ansi": "3.0.1", - "wide-align": "1.1.2" + "wide-align": "1.1.3" } }, "gaze": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz", - "integrity": "sha1-hHIkZ3rbiHDWeSV+0ziP22HkAQU=", - "dev": true, - "requires": { - "globule": "1.2.0" - } - }, - "generate-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=", - "dev": true - }, - "generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", "dev": true, "requires": { - "is-property": "1.0.2" + "globule": "1.2.1" } }, "get-caller-file": { @@ -7660,9 +7367,9 @@ } }, "globals": { - "version": "11.5.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.5.0.tgz", - "integrity": "sha512-hYyf+kI8dm3nORsiiXUQigOU62hDLfJ9G01uyGMxhc6BKsircrUhC4uJPQPUSuq2GrTmiiEt7ewxlMdBewfmKQ==", + "version": "11.7.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz", + "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==", "dev": true }, "globby": { @@ -7684,23 +7391,31 @@ "dev": true }, "globs": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/globs/-/globs-0.1.3.tgz", - "integrity": "sha1-ZwA3ElKHy2VJqtlqRM+mhP18VQI=", + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globs/-/globs-0.1.4.tgz", + "integrity": "sha512-D23dWbOq48vlOraoSigbcQV4tWrnhwk+E/Um2cMuDS3/5dwGmdFeA7L/vAvDhLFlQOTDqHcXh35m/71g2A2WzQ==", "dev": true, "requires": { "glob": "7.1.2" } }, "globule": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.0.tgz", - "integrity": "sha1-HcScaCLdnoovoAuiopUAboZkvQk=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", + "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", "dev": true, "requires": { "glob": "7.1.2", - "lodash": "4.17.4", + "lodash": "4.17.10", "minimatch": "3.0.4" + }, + "dependencies": { + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + } } }, "glogg": { @@ -7709,7 +7424,7 @@ "integrity": "sha512-ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==", "dev": true, "requires": { - "sparkles": "1.0.0" + "sparkles": "1.0.1" } }, "gonzales-pe": { @@ -7793,9 +7508,9 @@ } }, "gulp-rename": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.2.2.tgz", - "integrity": "sha1-OtRCh2PwXidk3sHGfYaNsnVoeBc=", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.3.0.tgz", + "integrity": "sha512-nEuZB7/9i0IZ8AXORTizl2QLP9tcC9uWc/s329zElBLJw1CfOhmMXBxwVlCRKjDyrWuhVP0uBKl61KeQ32TiCg==", "dev": true }, "gulp-sourcemaps": { @@ -7919,9 +7634,9 @@ } }, "has": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", - "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "requires": { "function-bind": "1.1.1" @@ -7961,13 +7676,39 @@ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "dev": true }, + "has-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-glob/-/has-glob-1.0.0.tgz", + "integrity": "sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=", + "dev": true, + "requires": { + "is-glob": "3.1.0" + }, + "dependencies": { + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "2.1.1" + } + } + } + }, "has-gulplog": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", "integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=", "dev": true, "requires": { - "sparkles": "1.0.0" + "sparkles": "1.0.1" } }, "has-symbol-support-x": { @@ -7976,6 +7717,12 @@ "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", "dev": true }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true + }, "has-to-string-tag-x": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", @@ -8062,9 +7809,9 @@ "dev": true }, "hash.js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz", - "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.5.tgz", + "integrity": "sha512-eWI5HG9Np+eHV1KQhisXWwM+4EPPYe5dFX1UZZH7k/E3JzDEazVH+VGlZi6R94ZqImq+A3D1mCEtrFIfg/E7sA==", "dev": true, "requires": { "inherits": "2.0.3", @@ -8099,7 +7846,7 @@ "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", "dev": true, "requires": { - "hash.js": "1.1.3", + "hash.js": "1.1.5", "minimalistic-assert": "1.0.1", "minimalistic-crypto-utils": "1.0.1" } @@ -8164,30 +7911,30 @@ "requires": { "es6-templates": "0.2.3", "fastparse": "1.1.1", - "html-minifier": "3.5.15", + "html-minifier": "3.5.19", "loader-utils": "1.1.0", "object-assign": "4.1.1" } }, "html-minifier": { - "version": "3.5.15", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.15.tgz", - "integrity": "sha512-OZa4rfb6tZOZ3Z8Xf0jKxXkiDcFWldQePGYFDcgKqES2sXeWaEv9y6QQvWUtX3ySI3feApQi5uCsHLINQ6NoAw==", + "version": "3.5.19", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.19.tgz", + "integrity": "sha512-Qr2JC9nsjK8oCrEmuB430ZIA8YWbF3D5LSjywD75FTuXmeqacwHgIM8wp3vHYzzPbklSjp53RdmDuzR4ub2HzA==", "dev": true, "requires": { "camel-case": "3.0.0", "clean-css": "4.1.11", - "commander": "2.15.1", + "commander": "2.16.0", "he": "1.1.1", "param-case": "2.1.1", "relateurl": "0.2.7", - "uglify-js": "3.3.22" + "uglify-js": "3.4.5" }, "dependencies": { "commander": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", - "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==", + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.16.0.tgz", + "integrity": "sha512-sVXqklSaotK9at437sFlFpyOcJonxe0yST/AG9DkQKUdIE6IqGIMv4SfAQSKaJbSdVEJYItASCrBiVQHq1HQew==", "dev": true }, "source-map": { @@ -8197,12 +7944,12 @@ "dev": true }, "uglify-js": { - "version": "3.3.22", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.22.tgz", - "integrity": "sha512-tqw96rL6/BG+7LM5VItdhDjTQmL5zG/I0b2RqWytlgeHe2eydZHuBHdA9vuGpCDhH/ZskNGcqDhivoR2xt8RIw==", + "version": "3.4.5", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.5.tgz", + "integrity": "sha512-Fm52gLqJqFBnT+Sn411NPDnsgaWiYeRLw42x7Va/mS8TKgaepwoGY7JLXHSEef3d3PmdFXSz1Zx7KMLL89E2QA==", "dev": true, "requires": { - "commander": "2.15.1", + "commander": "2.16.0", "source-map": "0.6.1" } } @@ -8221,7 +7968,7 @@ "dev": true, "requires": { "domelementtype": "1.3.0", - "domhandler": "2.4.1", + "domhandler": "2.4.2", "domutils": "1.5.1", "entities": "1.1.1", "inherits": "2.0.3", @@ -8245,9 +7992,9 @@ } }, "http-parser-js": { - "version": "0.4.12", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.12.tgz", - "integrity": "sha1-uc+/Sizybw/DSxDKFImid3HjR08=", + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz", + "integrity": "sha1-O9bW/ebjFyyTNMOzO2wZPYD+ETc=", "dev": true }, "http-proxy": { @@ -8284,7 +8031,7 @@ "dev": true, "requires": { "eventemitter3": "3.1.0", - "follow-redirects": "1.4.1", + "follow-redirects": "1.5.1", "requires-port": "1.0.0" } }, @@ -8338,13 +8085,13 @@ "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=", "dev": true, "requires": { - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "ieee754": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.11.tgz", - "integrity": "sha512-VhDzCKN7K8ufStx/CLj5/PDTMgph+qwN5Pkd5i0sGnVwk56zJ0lkT8Qzi1xqWLS0Wp29DgDtNeS7v8/wMoZeHg==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", + "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==", "dev": true }, "iferr": { @@ -8354,9 +8101,9 @@ "dev": true }, "ignore": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.8.tgz", - "integrity": "sha512-pUh+xUQQhQzevjRHHFqqcTy0/dP/kS9I8HSrUydhihjuD09W6ldVWFtIrwhXdUJHis3i2rZNqEHpZH/cbinFbg==", + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", "dev": true }, "imagemin": { @@ -8367,7 +8114,7 @@ "requires": { "file-type": "4.4.0", "globby": "6.1.0", - "make-dir": "1.2.0", + "make-dir": "1.3.0", "p-pipe": "1.2.0", "pify": "2.3.0", "replace-ext": "1.0.0" @@ -8403,6 +8150,17 @@ "mozjpeg": "5.0.0" }, "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "4.1.3", + "shebang-command": "1.2.0", + "which": "1.3.0" + } + }, "execa": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz", @@ -8417,6 +8175,16 @@ "signal-exit": "3.0.2", "strip-eof": "1.0.0" } + }, + "lru-cache": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", + "dev": true, + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.1.2" + } } } }, @@ -8443,19 +8211,6 @@ "pngquant-bin": "4.0.0" }, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "1.0.4", - "path-key": "2.0.1", - "semver": "5.5.0", - "shebang-command": "1.2.0", - "which": "1.3.0" - } - }, "execa": { "version": "0.10.0", "resolved": "https://registry.npmjs.org/execa/-/execa-0.10.0.tgz", @@ -8470,12 +8225,6 @@ "signal-exit": "3.0.2", "strip-eof": "1.0.0" } - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", - "dev": true } } }, @@ -8500,21 +8249,21 @@ } }, "csso": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.0.tgz", - "integrity": "sha512-WtJjFP3ZsSdWhiZr4/k1B9uHPgYjFYnDxfbaJxk1hz5PDLIJ5BCRWkJqaztZ0DbP8d2ZIVwUPIJb2YmCwkPaMw==", + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/csso/-/csso-3.5.1.tgz", + "integrity": "sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==", "dev": true, "requires": { - "css-tree": "1.0.0-alpha.27" + "css-tree": "1.0.0-alpha.29" }, "dependencies": { "css-tree": { - "version": "1.0.0-alpha.27", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.27.tgz", - "integrity": "sha512-BAYp9FyN4jLXjfvRpTDchBllDptqlK9I7OsagXCG9Am5C+5jc8eRZHgqb9x500W2OKS14MMlpQc/nmh/aA7TEQ==", + "version": "1.0.0-alpha.29", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.29.tgz", + "integrity": "sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg==", "dev": true, "requires": { - "mdn-data": "1.1.2", + "mdn-data": "1.1.4", "source-map": "0.5.7" } } @@ -8538,7 +8287,7 @@ "css-select-base-adapter": "0.1.0", "css-tree": "1.0.0-alpha25", "css-url-regex": "1.1.0", - "csso": "3.5.0", + "csso": "3.5.1", "js-yaml": "3.10.0", "mkdirp": "0.5.1", "object.values": "1.0.4", @@ -8570,6 +8319,32 @@ "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.8.2.tgz", "integrity": "sha1-wkOZUUVbs5kT2vKBN28VMOEErfM=" }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "dev": true, + "requires": { + "import-from": "2.1.0" + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "dev": true, + "requires": { + "resolve-from": "3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, "import-lazy": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", @@ -8696,7 +8471,7 @@ "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dev": true, "requires": { - "loose-envify": "1.3.1" + "loose-envify": "1.4.0" } }, "invert-kv": { @@ -8811,9 +8586,9 @@ "dev": true }, "is-callable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", - "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", "dev": true }, "is-ci": { @@ -8956,25 +8731,6 @@ "integrity": "sha1-KW1X/dmc4BBDSnKD40armhA16XU=", "dev": true }, - "is-my-ip-valid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", - "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==", - "dev": true - }, - "is-my-json-valid": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.2.tgz", - "integrity": "sha512-IBhBslgngMQN8DDSppmgDv7RNrlFotuuDsKcrCP3+HbFaVivIBU7u9oiiErw8sH4ynx3+gOGQ3q2otkgiSi6kg==", - "dev": true, - "requires": { - "generate-function": "2.0.0", - "generate-object-property": "1.2.0", - "is-my-ip-valid": "1.0.0", - "jsonpointer": "4.0.1", - "xtend": "4.0.1" - } - }, "is-natural-number": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-2.1.1.tgz", @@ -9097,12 +8853,6 @@ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" }, - "is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=", - "dev": true - }, "is-redirect": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", @@ -9114,7 +8864,7 @@ "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", "dev": true, "requires": { - "has": "1.0.1" + "has": "1.0.3" } }, "is-regexp": { @@ -9216,9 +8966,9 @@ "integrity": "sha1-MQ23D3QtJZoWo2kgK1GvhCMzENk=" }, "is-word-character": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.1.tgz", - "integrity": "sha1-WgP6HqkazopusMfNdw64bWXIvvs=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.2.tgz", + "integrity": "sha512-T3FlsX8rCHAH8e7RE7PfOPZVFQlcV3XRF9eOOBQ1uf70OxO7CjjSOjeImMPCADBdYWcStAbVbYvJ1m2D3tb+EA==", "dev": true }, "is-wsl": { @@ -9251,16 +9001,6 @@ "isarray": "1.0.0" } }, - "isomorphic-fetch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", - "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", - "dev": true, - "requires": { - "node-fetch": "1.7.3", - "whatwg-fetch": "2.0.4" - } - }, "isotope-layout": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/isotope-layout/-/isotope-layout-3.0.6.tgz", @@ -9312,9 +9052,9 @@ } }, "js-base64": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.3.tgz", - "integrity": "sha512-H7ErYLM34CvDMto3GbD6xD0JLUGYXR3QTcH6B/tr4Hi/QpSThnCsIp+Sy5FRTw3B0d6py4HcNkW7nO/wdtGWEw==", + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.4.8.tgz", + "integrity": "sha512-hm2nYpDrwoO/OzBhdcqs/XGT6XjSuSSCVEpia+Kl2J6x4CYt5hISlVL/AYU1khoDXv0AQVgxtdJySb9gjAn56Q==", "dev": true }, "js-beautify": { @@ -9378,9 +9118,9 @@ "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" }, "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "json-stable-stringify": { @@ -9427,12 +9167,6 @@ "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" }, - "jsonpointer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=", - "dev": true - }, "jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", @@ -9495,12 +9229,12 @@ "dev": true, "requires": { "autoprefixer": "7.2.6", - "babel-core": "6.26.2", - "babel-loader": "7.1.4", + "babel-core": "6.26.3", + "babel-loader": "7.1.5", "babel-plugin-transform-object-rest-spread": "6.26.0", "babel-plugin-transform-runtime": "6.23.0", - "babel-preset-env": "1.6.1", - "chokidar": "2.0.3", + "babel-preset-env": "1.7.0", + "chokidar": "2.0.4", "clean-css": "4.1.11", "concatenate": "0.0.2", "css-loader": "0.28.11", @@ -9515,19 +9249,19 @@ "img-loader": "2.0.1", "lodash": "4.17.10", "md5": "2.2.1", - "node-sass": "4.9.0", - "postcss-loader": "2.1.4", + "node-sass": "4.9.2", + "postcss-loader": "2.1.6", "resolve-url-loader": "2.3.0", "sass-loader": "6.0.7", "style-loader": "0.18.2", "uglify-js": "2.8.29", - "uglifyjs-webpack-plugin": "1.2.5", - "vue-loader": "13.7.1", + "uglifyjs-webpack-plugin": "1.2.7", + "vue-loader": "13.7.2", "vue-template-compiler": "2.5.16", - "webpack": "3.11.0", + "webpack": "3.12.0", "webpack-chunk-hash": "0.4.0", "webpack-dev-server": "2.11.2", - "webpack-merge": "4.1.2", + "webpack-merge": "4.1.3", "webpack-notifier": "1.6.0", "yargs": "8.0.2" }, @@ -9596,23 +9330,24 @@ "dev": true }, "chokidar": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz", - "integrity": "sha512-zW8iXYZtXMx4kux/nuZVXjkLP+CyIK5Al5FHnj1OgTKGZfp4Oy6/ymtMSKFv3GD8DviEmUPmJg9eFdJ/JzudMg==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", + "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==", "dev": true, "requires": { "anymatch": "2.0.0", "async-each": "1.0.1", "braces": "2.3.2", - "fsevents": "1.1.3", + "fsevents": "1.2.4", "glob-parent": "3.1.0", "inherits": "2.0.3", "is-binary-path": "1.0.1", "is-glob": "4.0.0", + "lodash.debounce": "4.0.8", "normalize-path": "2.1.1", "path-is-absolute": "1.0.1", "readdirp": "2.1.0", - "upath": "1.0.4" + "upath": "1.1.0" } }, "cliui": { @@ -9801,130 +9536,642 @@ "universalify": "0.1.1" } }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "fsevents": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", + "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", "dev": true, + "optional": true, "requires": { - "is-glob": "3.1.0", - "path-dirname": "1.0.2" + "nan": "2.10.0", + "node-pre-gyp": "0.10.0" }, "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "abbrev": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + }, + "aproba": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.4", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-extglob": "2.1.1" + "delegates": "1.0.0", + "readable-stream": "2.3.6" } - } - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + }, + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, "dev": true, "requires": { - "is-buffer": "1.1.6" + "balanced-match": "1.0.0", + "concat-map": "0.0.1" } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + }, + "chownr": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "debug": { + "version": "2.6.9", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-buffer": "1.1.6" + "ms": "2.0.0" } - } - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-glob": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", - "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", - "dev": true, - "requires": { - "is-extglob": "2.1.1" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "3.2.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + }, + "deep-extend": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-buffer": "1.1.6" + "minipass": "2.2.4" } - } - } - }, - "is-odd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", - "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", - "dev": true, - "requires": { - "is-number": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "aproba": "1.2.0", + "console-control-strings": "1.1.0", + "has-unicode": "2.0.1", + "object-assign": "4.1.1", + "signal-exit": "3.0.2", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wide-align": "1.1.2" + } + }, + "glob": { + "version": "7.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.21", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safer-buffer": "2.1.2" + } + }, + "ignore-walk": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minimatch": "3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, "dev": true - } - } - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true + }, + "minipass": { + "version": "2.2.4", + "bundled": true, + "dev": true, + "requires": { + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "minizlib": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "needle": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "debug": "2.6.9", + "iconv-lite": "0.4.21", + "sax": "1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.10.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "detect-libc": "1.0.3", + "mkdirp": "0.5.1", + "needle": "2.2.0", + "nopt": "4.0.1", + "npm-packlist": "1.1.10", + "npmlog": "4.1.2", + "rc": "1.2.7", + "rimraf": "2.6.2", + "semver": "5.5.0", + "tar": "4.4.1" + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "abbrev": "1.1.1", + "osenv": "0.1.5" + } + }, + "npm-bundled": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "npm-packlist": { + "version": "1.1.10", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ignore-walk": "3.0.1", + "npm-bundled": "1.0.3" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "are-we-there-yet": "1.1.4", + "console-control-strings": "1.1.0", + "gauge": "2.7.4", + "set-blocking": "2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "rc": { + "version": "1.2.7", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "deep-extend": "0.5.1", + "ini": "1.3.5", + "minimist": "1.2.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + } + } + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + }, + "rimraf": { + "version": "2.6.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "glob": "7.1.2" + } + }, + "safe-buffer": { + "version": "5.1.1", + "bundled": true, + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "bundled": true, + "dev": true, + "optional": true + }, + "semver": { + "version": "5.5.0", + "bundled": true, + "dev": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "tar": { + "version": "4.4.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "chownr": "1.0.1", + "fs-minipass": "1.2.5", + "minipass": "2.2.4", + "minizlib": "1.1.0", + "mkdirp": "0.5.1", + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "wide-align": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "string-width": "1.0.2" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "3.0.2", + "bundled": true, + "dev": true + } + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "3.1.0", + "path-dirname": "1.0.2" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "2.1.1" + } + } + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-glob": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz", + "integrity": "sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A=", + "dev": true, + "requires": { + "is-extglob": "2.1.1" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true }, "kind-of": { "version": "6.0.2", @@ -9964,17 +10211,24 @@ "extglob": "2.0.4", "fragment-cache": "0.2.1", "kind-of": "6.0.2", - "nanomatch": "1.2.9", + "nanomatch": "1.2.13", "object.pick": "1.3.0", "regex-not": "1.0.0", "snapdragon": "0.8.1", "to-regex": "3.0.2" } }, + "nan": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", + "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "dev": true, + "optional": true + }, "nanomatch": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", - "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "4.0.0", @@ -9982,7 +10236,6 @@ "define-property": "2.0.2", "extend-shallow": "3.0.2", "fragment-cache": "0.2.1", - "is-odd": "2.0.0", "is-windows": "1.0.2", "kind-of": "6.0.2", "object.pick": "1.3.0", @@ -10407,6 +10660,12 @@ "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=", "dev": true }, + "lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", + "dev": true + }, "lodash.defaults": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", @@ -10532,7 +10791,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "chalk": { @@ -10594,9 +10853,9 @@ "dev": true }, "loose-envify": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, "requires": { "js-tokens": "3.0.2" @@ -10643,16 +10902,10 @@ "pseudomap": "1.0.2" } }, - "macaddress": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/macaddress/-/macaddress-0.2.8.tgz", - "integrity": "sha1-WQTcU3w57G2+/q6QIycTX6hRHxI=", - "dev": true - }, "make-dir": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.2.0.tgz", - "integrity": "sha512-aNUAa4UMg/UougV25bbrU4ZaaKNjJ/3/xnvg/twpmKROPdKZPZ9wGgI0opdZzO8q/zUFawoUuixuOv33eZ61Iw==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "dev": true, "requires": { "pify": "3.0.0" @@ -10719,6 +10972,27 @@ "outlayer": "2.1.1" } }, + "matched": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/matched/-/matched-2.0.1.tgz", + "integrity": "sha512-2aidSwg5/8qzUSFx2HuU3tIwY0yyRKA126l67CWIBHhXZlCvA8jjD7C7DqvuTJNzNbbmK/ETRFx3aNEgOFjuzA==", + "dev": true, + "requires": { + "arr-union": "3.1.0", + "glob": "7.1.2", + "has-glob": "1.0.0", + "is-valid-glob": "1.0.0", + "resolve-dir": "1.0.1" + }, + "dependencies": { + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=", + "dev": true + } + } + }, "math-expression-evaluator": { "version": "1.2.17", "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz", @@ -10726,9 +11000,9 @@ "dev": true }, "mathml-tag-names": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.0.2.tgz", - "integrity": "sha512-P503a1lbQxxAnzn78ObgoTQj7MOEBQKCr/PRreWzuA7PTPjhXUtAkHO8nF6534+n7YWf/c5rB1f5LhsKOWazcA==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.0.tgz", + "integrity": "sha512-3Zs9P/0zzwTob2pdgT0CHZuMbnSUSp8MB1bddfm+HDmnFWHGT4jvEZRf+2RuPoa+cjdn/z25SEt5gFTqdhvJAg==", "dev": true }, "md5": { @@ -10758,14 +11032,14 @@ "integrity": "sha1-zbX4TitqLTEU3zO9BdnLMuPECDo=", "dev": true, "requires": { - "unist-util-modify-children": "1.1.1", - "unist-util-visit": "1.3.0" + "unist-util-modify-children": "1.1.2", + "unist-util-visit": "1.3.1" } }, "mdn-data": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.2.tgz", - "integrity": "sha512-HUqqf4U+XdKomJXe2Chw+b1zPXFRUZ3bfUbrGLQ2TGwMOBRULuTHI9geusGqRL4WzsusnLLxYAxV4f/F/8wV+g==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz", + "integrity": "sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA==", "dev": true }, "media-typer": { @@ -10825,9 +11099,9 @@ } }, "merge2": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.1.tgz", - "integrity": "sha512-wUqcG5pxrAcaFI1lkqkMnk3Q7nUxV/NWfpAFSeWUwG9TRODnBDCUHa75mi3o3vLWQ5N4CQERWCauSlP0I3ZqUg==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.2.tgz", + "integrity": "sha512-bgM8twH86rWni21thii6WCMQMRMmwqqdW3sGWi9IipnVAszdLXRjwDwAnyrVXo6DuP3AjRMMttZKUB48QWIFGg==", "dev": true }, "methods": { @@ -10890,9 +11164,9 @@ "dev": true }, "mimic-response": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz", - "integrity": "sha1-3z02Uqc/3ta5sLJBRub9BSNTRY4=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", "dev": true }, "minimalistic-assert": { @@ -10937,13 +11211,13 @@ "dev": true, "requires": { "concat-stream": "1.6.0", - "duplexify": "3.5.4", + "duplexify": "3.6.0", "end-of-stream": "1.4.1", "flush-write-stream": "1.0.3", "from2": "2.3.0", "parallel-transform": "1.1.0", "pump": "2.0.1", - "pumpify": "1.4.0", + "pumpify": "1.5.1", "stream-each": "1.2.2", "through2": "2.0.3" }, @@ -11190,32 +11464,21 @@ "lower-case": "1.1.4" } }, - "node-fetch": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz", - "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==", - "dev": true, - "requires": { - "encoding": "0.1.12", - "is-stream": "1.1.0" - } - }, "node-forge": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.1.tgz", - "integrity": "sha1-naYR6giYL0uUIGs760zJZl8gwwA=", + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz", + "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ==", "dev": true }, "node-gyp": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz", - "integrity": "sha1-m/vlRWIoYoSDjnUOrAUpWFP6HGA=", + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.7.0.tgz", + "integrity": "sha512-qDQE/Ft9xXP6zphwx4sD0t+VhwV7yFaloMpfbL2QnnDZcyaiakWlLdtFGGQfTAwpFHdpbRhRxVhIHN1OKAjgbg==", "dev": true, "requires": { "fstream": "1.0.11", "glob": "7.1.2", "graceful-fs": "4.1.11", - "minimatch": "3.0.4", "mkdirp": "0.5.1", "nopt": "3.0.6", "npmlog": "4.1.2", @@ -11257,7 +11520,7 @@ "querystring-es3": "0.2.1", "readable-stream": "2.3.3", "stream-browserify": "2.0.1", - "stream-http": "2.8.1", + "stream-http": "2.8.3", "string_decoder": "1.0.3", "timers-browserify": "2.0.10", "tty-browserify": "0.0.0", @@ -11279,7 +11542,7 @@ "dev": true, "requires": { "base64-js": "1.3.0", - "ieee754": "1.1.11", + "ieee754": "1.1.12", "isarray": "1.0.0" } } @@ -11303,15 +11566,15 @@ } }, "node-sass": { - "version": "4.9.0", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.0.tgz", - "integrity": "sha512-QFHfrZl6lqRU3csypwviz2XLgGNOoWQbo2GOvtsfQqOfL4cy1BtWnhx/XUeAO9LT3ahBzSRXcEO6DdvAH9DzSg==", + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.2.tgz", + "integrity": "sha512-LdxoJLZutx0aQXHtWIYwJKMj+9pTjneTcLWJgzf2XbGu0q5pRNqW5QvFCEdm3mc5rJOdru/mzln5d0EZLacf6g==", "dev": true, "requires": { "async-foreach": "0.1.3", "chalk": "1.1.3", "cross-spawn": "3.0.1", - "gaze": "1.1.2", + "gaze": "1.1.3", "get-stdin": "4.0.1", "glob": "7.1.2", "in-publish": "2.0.0", @@ -11321,18 +11584,36 @@ "meow": "3.7.0", "mkdirp": "0.5.1", "nan": "2.10.0", - "node-gyp": "3.6.2", + "node-gyp": "3.7.0", "npmlog": "4.1.2", - "request": "2.79.0", + "request": "2.87.0", "sass-graph": "2.2.4", "stdout-stream": "1.4.0", "true-case-path": "1.0.2" }, "dependencies": { - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=", + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "dev": true, + "requires": { + "co": "4.6.0", + "fast-deep-equal": "1.1.0", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.3.1" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", "dev": true }, "cross-spawn": { @@ -11341,26 +11622,75 @@ "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", "dev": true, "requires": { - "lru-cache": "4.1.2", + "lru-cache": "4.1.3", "which": "1.3.0" } }, + "fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "dev": true + }, + "form-data": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", + "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", + "dev": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.6", + "mime-types": "2.1.17" + }, + "dependencies": { + "combined-stream": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", + "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + } + } + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, "har-validator": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", + "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", "dev": true, "requires": { - "chalk": "1.1.3", - "commander": "2.13.0", - "is-my-json-valid": "2.17.2", - "pinkie-promise": "2.0.1" + "ajv": "5.5.2", + "har-schema": "2.0.0" } }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.13.1" + } + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true + }, "lru-cache": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.2.tgz", - "integrity": "sha512-wgeVXhrDwAWnIF/yZARsFnMBtdFXOg1b8RIrhilp+0iDYN4mdQcNZElDZ0e4B64BhaxeQ5zN7PMyvu7we1kPeQ==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", "dev": true, "requires": { "pseudomap": "1.0.2", @@ -11373,45 +11703,45 @@ "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", "dev": true }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, "qs": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz", - "integrity": "sha1-51vV9uJoEioqDgvaYwslUMFmUCw=", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", "dev": true }, "request": { - "version": "2.79.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", - "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", + "version": "2.87.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.87.0.tgz", + "integrity": "sha512-fcogkm7Az5bsS6Sl0sibkbhcKsnyon/jV1kF3ajGmF0c8HrttdKTPRT9hieOaQHA5HEq6r8OyWOo/o781C1tNw==", "dev": true, "requires": { - "aws-sign2": "0.6.0", + "aws-sign2": "0.7.0", "aws4": "1.6.0", - "caseless": "0.11.0", + "caseless": "0.12.0", "combined-stream": "1.0.5", "extend": "3.0.1", "forever-agent": "0.6.1", - "form-data": "2.1.4", - "har-validator": "2.0.6", - "hawk": "3.1.3", - "http-signature": "1.1.1", + "form-data": "2.3.2", + "har-validator": "5.0.3", + "http-signature": "1.2.0", "is-typedarray": "1.0.0", "isstream": "0.1.2", "json-stringify-safe": "5.0.1", "mime-types": "2.1.17", "oauth-sign": "0.8.2", - "qs": "6.3.2", - "stringstream": "0.0.5", + "performance-now": "2.1.0", + "qs": "6.5.2", + "safe-buffer": "5.1.1", "tough-cookie": "2.3.3", - "tunnel-agent": "0.4.3", + "tunnel-agent": "0.6.0", "uuid": "3.1.0" } - }, - "tunnel-agent": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=", - "dev": true } } }, @@ -11512,7 +11842,7 @@ "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", "dev": true, "requires": { - "are-we-there-yet": "1.1.4", + "are-we-there-yet": "1.1.5", "console-control-strings": "1.1.0", "gauge": "2.7.4", "set-blocking": "2.0.0" @@ -11659,9 +11989,9 @@ "dev": true }, "object-keys": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", - "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=", + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", + "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==", "dev": true }, "object-path": { @@ -11717,7 +12047,7 @@ "dev": true, "requires": { "define-properties": "1.1.2", - "es-abstract": "1.11.0" + "es-abstract": "1.12.0" } }, "object.map": { @@ -11770,9 +12100,9 @@ "dev": true, "requires": { "define-properties": "1.1.2", - "es-abstract": "1.11.0", + "es-abstract": "1.12.0", "function-bind": "1.1.1", - "has": "1.0.1" + "has": "1.0.3" } }, "obuf": { @@ -11882,24 +12212,12 @@ } }, "original": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.0.tgz", - "integrity": "sha1-kUf5P6FpbQS+YeAb1QuurKZWvTs=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.1.tgz", + "integrity": "sha512-IEvtB5vM5ULvwnqMxWBLxkS13JIEXbakizMSo3yoPNPCIWzg8TG3Usn/UhXoZFM/m+FuEA20KdzPSFq/0rS+UA==", "dev": true, "requires": { - "url-parse": "1.0.5" - }, - "dependencies": { - "url-parse": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.0.5.tgz", - "integrity": "sha1-CFSGBCKv3P7+tsllxmLUgAFpkns=", - "dev": true, - "requires": { - "querystringify": "0.0.4", - "requires-port": "1.0.0" - } - } + "url-parse": "1.4.1" } }, "os-browserify": { @@ -11978,9 +12296,9 @@ "dev": true }, "p-limit": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz", - "integrity": "sha512-Y/OtIaXtUPr4/YpMv1pCL5L5ed0rumAaAeBSj12F+bSlMdys7i8oQF/GUJmfpTS/QoaRrS/k6pma29haJpsMng==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, "requires": { "p-try": "1.0.0" @@ -11992,7 +12310,7 @@ "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "dev": true, "requires": { - "p-limit": "1.2.0" + "p-limit": "1.3.0" } }, "p-map": { @@ -12088,9 +12406,9 @@ } }, "parse-entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.1.1.tgz", - "integrity": "sha1-gRLYhHExnyerrk1klksSL+ThuJA=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-1.1.2.tgz", + "integrity": "sha512-5N9lmQ7tmxfXf+hO3X6KRG6w7uYO/HL9fHalSySTdyn63C3WNvTM/1R8tn1u1larNcEbo3Slcy2bsVDQqvEpUg==", "dev": true, "requires": { "character-entities": "1.2.2", @@ -12280,9 +12598,9 @@ "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=" }, "php-parser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-2.2.0.tgz", - "integrity": "sha1-ZzhPClkz2770C+qwqzHQuMWC/4g=", + "version": "3.0.0-alpha2", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.0.0-alpha2.tgz", + "integrity": "sha1-bcORysgJ5UFzjxxz9uy52ECjiEA=", "dev": true }, "pify": { @@ -12378,6 +12696,17 @@ "url-to-options": "1.0.1" } }, + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "4.1.3", + "shebang-command": "1.2.0", + "which": "1.3.0" + } + }, "decompress": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.0.tgz", @@ -12389,7 +12718,7 @@ "decompress-targz": "4.1.1", "decompress-unzip": "4.0.1", "graceful-fs": "4.1.11", - "make-dir": "1.2.0", + "make-dir": "1.3.0", "pify": "2.3.0", "strip-dirs": "2.1.0" } @@ -12402,7 +12731,7 @@ "requires": { "file-type": "5.2.0", "is-stream": "1.1.0", - "tar-stream": "1.5.7" + "tar-stream": "1.6.1" } }, "decompress-tarbz2": { @@ -12446,7 +12775,7 @@ "file-type": "3.9.0", "get-stream": "2.3.1", "pify": "2.3.0", - "yauzl": "2.9.1" + "yauzl": "2.10.0" }, "dependencies": { "file-type": { @@ -12468,10 +12797,10 @@ "decompress": "4.2.0", "ext-name": "5.0.0", "file-type": "5.2.0", - "filenamify": "2.0.0", + "filenamify": "2.1.0", "get-stream": "3.0.0", "got": "7.1.0", - "make-dir": "1.2.0", + "make-dir": "1.3.0", "p-event": "1.3.0", "pify": "3.0.0" }, @@ -12539,9 +12868,9 @@ "dev": true }, "filenamify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.0.0.tgz", - "integrity": "sha1-vRYiYsC26Uv7zc8Zo7uzdk94VpU=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", + "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", "dev": true, "requires": { "filename-reserved-regex": "2.0.0", @@ -12604,6 +12933,16 @@ "integrity": "sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=", "dev": true }, + "lru-cache": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", + "dev": true, + "requires": { + "pseudomap": "1.0.2", + "yallist": "2.1.2" + } + }, "semver": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", @@ -12652,9 +12991,9 @@ "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" }, "postcss": { - "version": "6.0.21", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.21.tgz", - "integrity": "sha512-y/bKfbQz2Nn/QBC08bwvYUxEFOVGfPIUOTsJ2CK5inzlXW9SdYR1x4pEsG9blRAF/PX+wRNdOah+gx/hv4q7dw==", + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", "dev": true, "requires": { "chalk": "2.4.1", @@ -12668,7 +13007,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "chalk": { @@ -12723,7 +13062,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -12769,7 +13108,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -12814,7 +13153,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -12858,7 +13197,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -12902,7 +13241,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -12946,7 +13285,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -12990,7 +13329,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13035,7 +13374,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13058,13 +13397,12 @@ } }, "postcss-filter-plugins": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz", - "integrity": "sha1-bYWGJTTXNaxCDkqFgG4fXUKG2Ew=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz", + "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==", "dev": true, "requires": { - "postcss": "5.2.18", - "uniqid": "4.1.1" + "postcss": "5.2.18" }, "dependencies": { "has-flag": { @@ -13080,7 +13418,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13110,7 +13448,7 @@ "requires": { "htmlparser2": "3.9.2", "remark": "8.0.0", - "unist-util-find-all-after": "1.0.1" + "unist-util-find-all-after": "1.0.2" } }, "postcss-less": { @@ -13135,7 +13473,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13158,15 +13496,13 @@ } }, "postcss-load-config": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz", - "integrity": "sha1-U56a/J3chiASHr+djDZz4M5Q0oo=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.0.0.tgz", + "integrity": "sha512-V5JBLzw406BB8UIfsAWSK2KSwIJ5yoEIVFb4gVkXci0QdKgA24jLmHZ/ghe/GgX0lJ0/D1uUK1ejhzEY94MChQ==", "dev": true, "requires": { - "cosmiconfig": "2.2.2", - "object-assign": "4.1.1", - "postcss-load-options": "1.2.0", - "postcss-load-plugins": "2.3.0" + "cosmiconfig": "4.0.0", + "import-cwd": "2.1.0" } }, "postcss-load-options": { @@ -13177,6 +13513,29 @@ "requires": { "cosmiconfig": "2.2.2", "object-assign": "4.1.1" + }, + "dependencies": { + "cosmiconfig": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz", + "integrity": "sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==", + "dev": true, + "requires": { + "is-directory": "0.3.1", + "js-yaml": "3.10.0", + "minimist": "1.2.0", + "object-assign": "4.1.1", + "os-homedir": "1.0.2", + "parse-json": "2.2.0", + "require-from-string": "1.2.1" + } + }, + "require-from-string": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", + "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=", + "dev": true + } } }, "postcss-load-plugins": { @@ -13187,46 +13546,131 @@ "requires": { "cosmiconfig": "2.2.2", "object-assign": "4.1.1" + }, + "dependencies": { + "cosmiconfig": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz", + "integrity": "sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==", + "dev": true, + "requires": { + "is-directory": "0.3.1", + "js-yaml": "3.10.0", + "minimist": "1.2.0", + "object-assign": "4.1.1", + "os-homedir": "1.0.2", + "parse-json": "2.2.0", + "require-from-string": "1.2.1" + } + }, + "require-from-string": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", + "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=", + "dev": true + } } }, "postcss-loader": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.1.4.tgz", - "integrity": "sha512-L2p654oK945B/gDFUGgOhh7uzj19RWoY1SVMeJVoKno1H2MdbQ0RppR/28JGju4pMb22iRC7BJ9aDzbxXSLf4A==", + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.1.6.tgz", + "integrity": "sha512-hgiWSc13xVQAq25cVw80CH0l49ZKlAnU1hKPOdRrNj89bokRr/bZF2nT+hebPPF9c9xs8c3gw3Fr2nxtmXYnNg==", "dev": true, "requires": { "loader-utils": "1.1.0", - "postcss": "6.0.21", - "postcss-load-config": "1.2.0", + "postcss": "6.0.23", + "postcss-load-config": "2.0.0", "schema-utils": "0.4.5" }, "dependencies": { "ajv": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz", - "integrity": "sha1-06/3jpJ3VJdx2vAWTP9ISCt1T8Y=", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", + "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", "dev": true, "requires": { - "fast-deep-equal": "1.1.0", + "fast-deep-equal": "2.0.1", "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1", - "uri-js": "3.0.2" + "json-schema-traverse": "0.4.1", + "uri-js": "4.2.2" } }, - "ajv-keywords": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.1.0.tgz", - "integrity": "sha1-rCsnk5xUPpXSwG5/f1wnvkqlQ74=", - "dev": true - }, "schema-utils": { "version": "0.4.5", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.5.tgz", "integrity": "sha512-yYrjb9TX2k/J1Y5UNy3KYdZq10xhYcF8nMpAW6o3hy6Q8WSIEf9lJHG/ePnOBfziPM3fvQwfOwa13U/Fh8qTfA==", "dev": true, "requires": { - "ajv": "6.4.0", - "ajv-keywords": "3.1.0" + "ajv": "6.5.2", + "ajv-keywords": "3.2.0" + } + } + } + }, + "postcss-markdown": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/postcss-markdown/-/postcss-markdown-0.28.0.tgz", + "integrity": "sha512-F0Vc8eHKDKTmensntXpd35LSAoXXtykhPY+IRfn4AnN4m+irav3QawmtSWLhsmbElKna8l1/HObYnbiM/Wok9Q==", + "dev": true, + "requires": { + "remark": "9.0.0", + "unist-util-find-all-after": "1.0.2" + }, + "dependencies": { + "remark": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/remark/-/remark-9.0.0.tgz", + "integrity": "sha512-amw8rGdD5lHbMEakiEsllmkdBP+/KpjW/PRK6NSGPZKCQowh0BT4IWXDAkRMyG3SB9dKPXWMviFjNusXzXNn3A==", + "dev": true, + "requires": { + "remark-parse": "5.0.0", + "remark-stringify": "5.0.0", + "unified": "6.2.0" + } + }, + "remark-parse": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz", + "integrity": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==", + "dev": true, + "requires": { + "collapse-white-space": "1.0.4", + "is-alphabetical": "1.0.2", + "is-decimal": "1.0.2", + "is-whitespace-character": "1.0.2", + "is-word-character": "1.0.2", + "markdown-escapes": "1.0.2", + "parse-entities": "1.1.2", + "repeat-string": "1.6.1", + "state-toggle": "1.0.1", + "trim": "0.0.1", + "trim-trailing-lines": "1.1.1", + "unherit": "1.1.1", + "unist-util-remove-position": "1.1.2", + "vfile-location": "2.0.3", + "xtend": "4.0.1" + } + }, + "remark-stringify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-5.0.0.tgz", + "integrity": "sha512-Ws5MdA69ftqQ/yhRF9XhVV29mhxbfGhbz0Rx5bQH+oJcNhhSM6nCu1EpLod+DjrFGrU0BMPs+czVmJZU7xiS7w==", + "dev": true, + "requires": { + "ccount": "1.0.3", + "is-alphanumeric": "1.0.0", + "is-decimal": "1.0.2", + "is-whitespace-character": "1.0.2", + "longest-streak": "2.0.2", + "markdown-escapes": "1.0.2", + "markdown-table": "1.1.2", + "mdast-util-compact": "1.0.1", + "parse-entities": "1.1.2", + "repeat-string": "1.6.1", + "state-toggle": "1.0.1", + "stringify-entities": "1.3.2", + "unherit": "1.1.1", + "xtend": "4.0.1" } } } @@ -13243,7 +13687,7 @@ "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", "dev": true, "requires": { - "has": "1.0.1", + "has": "1.0.3", "postcss": "5.2.18", "postcss-value-parser": "3.3.0" }, @@ -13261,7 +13705,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13305,7 +13749,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13346,8 +13790,8 @@ "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", "dev": true, "requires": { - "caniuse-db": "1.0.30000830", - "electron-to-chromium": "1.3.44" + "caniuse-db": "1.0.30000869", + "electron-to-chromium": "1.3.52" } }, "has-flag": { @@ -13363,7 +13807,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13415,7 +13859,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13460,7 +13904,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13507,7 +13951,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13536,7 +13980,7 @@ "dev": true, "requires": { "alphanum-sort": "1.0.2", - "has": "1.0.1", + "has": "1.0.3", "postcss": "5.2.18", "postcss-selector-parser": "2.2.3" }, @@ -13554,7 +13998,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13582,7 +14026,7 @@ "integrity": "sha1-ZhQOzs447wa/DT41XWm/WdFB6oU=", "dev": true, "requires": { - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "postcss-modules-local-by-default": { @@ -13592,7 +14036,7 @@ "dev": true, "requires": { "css-selector-tokenizer": "0.7.0", - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "postcss-modules-scope": { @@ -13602,7 +14046,7 @@ "dev": true, "requires": { "css-selector-tokenizer": "0.7.0", - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "postcss-modules-values": { @@ -13612,7 +14056,7 @@ "dev": true, "requires": { "icss-replace-symbols": "1.1.0", - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "postcss-normalize-charset": { @@ -13637,7 +14081,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13684,7 +14128,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13729,7 +14173,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13774,7 +14218,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13818,7 +14262,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13846,7 +14290,7 @@ "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", "dev": true, "requires": { - "has": "1.0.1", + "has": "1.0.3", "postcss": "5.2.18", "postcss-value-parser": "3.3.0" }, @@ -13864,7 +14308,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -13895,7 +14339,7 @@ "chalk": "2.4.1", "lodash": "4.17.4", "log-symbols": "2.2.0", - "postcss": "6.0.21" + "postcss": "6.0.23" }, "dependencies": { "ansi-styles": { @@ -13904,7 +14348,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "chalk": { @@ -13941,7 +14385,7 @@ "integrity": "sha1-t1Pv9sfArqXoN1++TN6L+QY/8UI=", "dev": true, "requires": { - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "postcss-sass": { @@ -13951,16 +14395,16 @@ "dev": true, "requires": { "gonzales-pe": "4.2.3", - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "postcss-scss": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-1.0.5.tgz", - "integrity": "sha512-gJB1tKYMkBy0MU+COt6WXA4ZiRctAKoWLa6qD7a6bbEbBMqrpa/BhfQdN80eYMV+JkKddZVEpZlOggnGShpvyg==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-1.0.6.tgz", + "integrity": "sha512-4EFYGHcEw+H3E06PT/pQQri06u/1VIIPjeJQaM8skB80vZuXMhp4cSNV5azmdNkontnOID/XYWEvEEELLFB1ww==", "dev": true, "requires": { - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "postcss-selector-parser": { @@ -13999,7 +14443,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -14021,6 +14465,12 @@ } } }, + "postcss-syntax": { + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/postcss-syntax/-/postcss-syntax-0.28.0.tgz", + "integrity": "sha512-9W3T1fSE9QWKyW6s84kZapv0BP5uvj7mNBp34kwI93uGWULzZjaKv4xR4phubBD53cRgaM/qnvquVK1KLsl+Kg==", + "dev": true + }, "postcss-unique-selectors": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", @@ -14045,7 +14495,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -14079,7 +14529,7 @@ "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", "dev": true, "requires": { - "has": "1.0.1", + "has": "1.0.3", "postcss": "5.2.18", "uniqs": "2.0.0" }, @@ -14097,7 +14547,7 @@ "dev": true, "requires": { "chalk": "1.1.3", - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.5.7", "supports-color": "3.2.3" } @@ -14136,108 +14586,446 @@ "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" }, "pressbooks-build-tools": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/pressbooks-build-tools/-/pressbooks-build-tools-0.12.0.tgz", - "integrity": "sha512-HBnQbASeLi8c3b8rlLGSZMZwYN0wyDT31dGWbNzDjXso6Nse28MwHRv156+iP/56SsxzOKLT1OBZ/aFwqpOsFw==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/pressbooks-build-tools/-/pressbooks-build-tools-0.13.0.tgz", + "integrity": "sha512-epJW9GGYrWzhpLBAcbJIXtYvBVDSEpSxI+EGf3OmBt85LOsxQqvi2PYDow/wbIb2eKvQNRUvtenhZ8JbrN1Pqw==", "dev": true, "requires": { - "babel-eslint": "8.2.3", - "browser-sync": "2.23.7", + "babel-eslint": "8.2.6", + "browser-sync": "2.24.5", "browser-sync-webpack-plugin": "2.2.2", - "cross-env": "5.1.4", - "eslint": "4.19.1", - "eslint-config-humanmade": "0.4.1", + "cross-env": "5.2.0", + "eslint": "5.1.0", + "eslint-config-humanmade": "0.5.0", "eslint-config-react-app": "2.1.0", "eslint-loader": "2.0.0", - "eslint-plugin-flowtype": "2.46.3", - "eslint-plugin-import": "2.11.0", - "eslint-plugin-jsx-a11y": "6.0.3", - "eslint-plugin-react": "7.7.0", + "eslint-plugin-flowtype": "2.50.0", + "eslint-plugin-import": "2.13.0", + "eslint-plugin-jsx-a11y": "6.1.1", + "eslint-plugin-react": "7.10.0", "extract-text-webpack-plugin": "3.0.2", "laravel-mix": "2.1.11", - "prettier": "1.12.1", + "prettier": "1.13.7", "prettier-stylelint": "0.4.2", "rimraf": "2.6.2", - "stylelint": "9.2.0", + "stylelint": "9.3.0", "stylelint-config-recommended-scss": "3.2.0", - "stylelint-scss": "3.1.0", - "stylelint-webpack-plugin": "0.10.4", - "wp-pot-cli": "1.1.0" + "stylelint-scss": "3.1.3", + "stylelint-webpack-plugin": "0.10.5", + "wp-pot-cli": "1.2.1" }, "dependencies": { + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, "browser-sync": { - "version": "2.23.7", - "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.23.7.tgz", - "integrity": "sha512-ZyaNxjsYNXzTa6vqyauR7f++FIhhUXUbeSGcXfFLVWIqCPBChpjsoKQNCwC3rQ6+LemKpDRQ+bxU44hzmIBGvQ==", + "version": "2.24.5", + "resolved": "https://registry.npmjs.org/browser-sync/-/browser-sync-2.24.5.tgz", + "integrity": "sha512-r6ZRYncfYRGerw4Rh5S8Q9x9WKDdrwH572hd3ofsYgn0Px6a6EqXiLBVTCss2+2a45G9ZgjRHSeo9YY56UpgKw==", + "dev": true, + "requires": { + "browser-sync-ui": "1.0.1", + "bs-recipes": "1.3.4", + "chokidar": "1.7.0", + "connect": "3.6.6", + "connect-history-api-fallback": "1.5.0", + "dev-ip": "1.0.1", + "easy-extender": "2.3.2", + "eazy-logger": "3.0.2", + "etag": "1.8.1", + "fresh": "0.5.2", + "fs-extra": "3.0.1", + "http-proxy": "1.15.2", + "immutable": "3.8.2", + "localtunnel": "1.9.0", + "micromatch": "2.3.11", + "opn": "4.0.2", + "portscanner": "2.1.1", + "qs": "6.2.3", + "raw-body": "2.3.2", + "resp-modifier": "6.0.2", + "rx": "4.1.0", + "serve-index": "1.9.1", + "serve-static": "1.13.2", + "server-destroy": "1.0.1", + "socket.io": "2.1.1", + "ua-parser-js": "0.7.17", + "yargs": "6.4.0" + } + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wrap-ansi": "2.1.0" + } + }, + "connect": { + "version": "3.6.6", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz", + "integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=", + "dev": true, + "requires": { + "debug": "2.6.9", + "finalhandler": "1.1.0", + "parseurl": "1.3.2", + "utils-merge": "1.0.1" + } + }, + "engine.io": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-3.2.0.tgz", + "integrity": "sha512-mRbgmAtQ4GAlKwuPnnAvXXwdPhEx+jkc0OBCLrXuD/CRvwNK3AxRSnqK4FSqmAMRRHryVJP8TopOvmEaA64fKw==", + "dev": true, + "requires": { + "accepts": "1.3.4", + "base64id": "1.0.0", + "cookie": "0.3.1", + "debug": "3.1.0", + "engine.io-parser": "2.1.2", + "ws": "3.3.3" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "engine.io-client": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.2.1.tgz", + "integrity": "sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw==", + "dev": true, + "requires": { + "component-emitter": "1.2.1", + "component-inherit": "0.0.3", + "debug": "3.1.0", + "engine.io-parser": "2.1.2", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "ws": "3.3.3", + "xmlhttprequest-ssl": "1.5.5", + "yeast": "0.1.2" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "finalhandler": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz", + "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "1.0.1", + "escape-html": "1.0.3", + "on-finished": "2.3.0", + "parseurl": "1.3.2", + "statuses": "1.3.1", + "unpipe": "1.0.0" + } + }, + "fs-extra": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", + "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "dev": true, + "requires": { + "graceful-fs": "4.1.11", + "jsonfile": "3.0.1", + "universalify": "0.1.1" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": "1.5.0" + }, + "dependencies": { + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + } + } + }, + "isarray": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz", + "integrity": "sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4=", + "dev": true + }, + "localtunnel": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/localtunnel/-/localtunnel-1.9.0.tgz", + "integrity": "sha512-wCIiIHJ8kKIcWkTQE3m1VRABvsH2ZuOkiOpZUofUCf6Q42v3VIZ+Q0YfX1Z4sYDRj0muiKL1bLvz1FeoxsPO0w==", + "dev": true, + "requires": { + "axios": "0.17.1", + "debug": "2.6.8", + "openurl": "1.1.1", + "yargs": "6.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "yargs": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", + "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", + "dev": true, + "requires": { + "camelcase": "3.0.0", + "cliui": "3.2.0", + "decamelize": "1.2.0", + "get-caller-file": "1.0.2", + "os-locale": "1.4.0", + "read-pkg-up": "1.0.1", + "require-directory": "2.1.1", + "require-main-filename": "1.0.1", + "set-blocking": "2.0.0", + "string-width": "1.0.2", + "which-module": "1.0.0", + "y18n": "3.2.1", + "yargs-parser": "4.2.1" + } + } + } + }, + "mime": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true + }, + "portscanner": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz", + "integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=", + "dev": true, + "requires": { + "async": "1.5.2", + "is-number-like": "1.0.8" + } + }, + "qs": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz", + "integrity": "sha1-HPyyXBCpsrSDBT/zn138kjOQjP4=", + "dev": true + }, + "send": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", + "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "1.1.2", + "destroy": "1.0.4", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "fresh": "0.5.2", + "http-errors": "1.6.3", + "mime": "1.4.1", + "ms": "2.0.0", + "on-finished": "2.3.0", + "range-parser": "1.2.0", + "statuses": "1.4.0" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "statuses": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", + "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==", + "dev": true + } + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", "dev": true, "requires": { - "browser-sync-ui": "1.0.1", - "bs-recipes": "1.3.4", - "chokidar": "1.7.0", - "connect": "3.5.0", - "connect-history-api-fallback": "1.5.0", - "dev-ip": "1.0.1", - "easy-extender": "2.3.2", - "eazy-logger": "3.0.2", - "emitter-steward": "1.0.0", - "etag": "1.8.1", - "fresh": "0.5.2", - "fs-extra": "3.0.1", - "http-proxy": "1.15.2", - "immutable": "3.8.2", - "localtunnel": "1.8.3", - "micromatch": "2.3.11", - "opn": "4.0.2", - "portscanner": "2.1.1", - "qs": "6.2.1", - "resp-modifier": "6.0.2", - "rx": "4.1.0", - "serve-index": "1.8.0", - "serve-static": "1.12.2", - "server-destroy": "1.0.1", - "socket.io": "2.0.4", - "ua-parser-js": "0.7.12", - "yargs": "6.4.0" + "accepts": "1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "1.0.3", + "http-errors": "1.6.3", + "mime-types": "2.1.17", + "parseurl": "1.3.2" } }, - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "serve-static": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", + "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "dev": true, + "requires": { + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "parseurl": "1.3.2", + "send": "0.16.2" + }, + "dependencies": { + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + } + } + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "dev": true }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "socket.io": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz", + "integrity": "sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA==", "dev": true, "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wrap-ansi": "2.1.0" + "debug": "3.1.0", + "engine.io": "3.2.0", + "has-binary2": "1.0.2", + "socket.io-adapter": "1.1.1", + "socket.io-client": "2.1.1", + "socket.io-parser": "3.2.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } } }, - "fs-extra": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", - "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "socket.io-client": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz", + "integrity": "sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ==", "dev": true, "requires": { - "graceful-fs": "4.1.11", - "jsonfile": "3.0.1", - "universalify": "0.1.1" + "backo2": "1.0.2", + "base64-arraybuffer": "0.1.5", + "component-bind": "1.0.0", + "component-emitter": "1.2.1", + "debug": "3.1.0", + "engine.io-client": "3.2.1", + "has-binary2": "1.0.2", + "has-cors": "1.1.0", + "indexof": "0.0.1", + "object-component": "0.0.3", + "parseqs": "0.0.5", + "parseuri": "0.0.5", + "socket.io-parser": "3.2.0", + "to-array": "0.1.4" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } } }, - "portscanner": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/portscanner/-/portscanner-2.1.1.tgz", - "integrity": "sha1-6rtAnk3iSVD1oqUW01rnaTQ/u5Y=", + "socket.io-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.2.0.tgz", + "integrity": "sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA==", "dev": true, "requires": { - "async": "1.5.2", - "is-number-like": "1.0.8" + "component-emitter": "1.2.1", + "debug": "3.1.0", + "isarray": "2.0.1" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } } }, + "ua-parser-js": { + "version": "0.7.17", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz", + "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==", + "dev": true + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, "window-size": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz", @@ -14269,9 +15057,9 @@ } }, "prettier": { - "version": "1.12.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.12.1.tgz", - "integrity": "sha1-wa0g6APndJ+vkFpAnSNn4Gu+cyU=", + "version": "1.13.7", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.13.7.tgz", + "integrity": "sha512-KIU72UmYPGk4MujZGYMFwinB7lOf2LsDNGSOC8ufevsrPLISrZbNJlWstRi3m0AMuszbH+EFSQ/r6w56RSPK6w==", "dev": true }, "prettier-stylelint": { @@ -14284,11 +15072,11 @@ "debug": "3.1.0", "get-stdin": "5.0.1", "globby": "6.1.0", - "ignore": "3.3.8", + "ignore": "3.3.10", "import-local": "0.1.1", "meow": "3.7.0", "pify": "3.0.0", - "prettier": "1.12.1", + "prettier": "1.13.7", "resolve-from": "4.0.0", "stylelint": "8.4.0", "temp-write": "3.4.0", @@ -14317,7 +15105,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "boxen": { @@ -14371,7 +15159,7 @@ "requires": { "dot-prop": "4.2.0", "graceful-fs": "4.1.11", - "make-dir": "1.2.0", + "make-dir": "1.3.0", "unique-string": "1.0.0", "write-file-atomic": "2.3.0", "xdg-basedir": "3.0.0" @@ -14589,12 +15377,6 @@ "strip-indent": "2.0.0" } }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", @@ -14649,17 +15431,17 @@ "globby": "7.1.1", "globjoin": "0.1.4", "html-tags": "2.0.0", - "ignore": "3.3.8", + "ignore": "3.3.10", "imurmurhash": "0.1.4", "known-css-properties": "0.5.0", "lodash": "4.17.4", "log-symbols": "2.2.0", - "mathml-tag-names": "2.0.2", + "mathml-tag-names": "2.1.0", "meow": "4.0.1", "micromatch": "2.3.11", "normalize-selector": "0.2.0", "pify": "3.0.0", - "postcss": "6.0.21", + "postcss": "6.0.23", "postcss-html": "0.12.0", "postcss-less": "1.1.5", "postcss-media-query-parser": "0.2.3", @@ -14667,7 +15449,7 @@ "postcss-resolve-nested-selector": "0.1.1", "postcss-safe-parser": "3.0.1", "postcss-sass": "0.2.0", - "postcss-scss": "1.0.5", + "postcss-scss": "1.0.6", "postcss-selector-parser": "3.1.1", "postcss-value-parser": "3.3.0", "resolve-from": "4.0.0", @@ -14676,7 +15458,7 @@ "style-search": "0.1.0", "sugarss": "1.0.1", "svg-tags": "1.0.0", - "table": "4.0.2" + "table": "4.0.3" }, "dependencies": { "globby": { @@ -14688,7 +15470,7 @@ "array-union": "1.0.2", "dir-glob": "2.0.0", "glob": "7.1.2", - "ignore": "3.3.8", + "ignore": "3.3.10", "pify": "3.0.0", "slash": "1.0.0" } @@ -14808,15 +15590,6 @@ "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=", "dev": true }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "dev": true, - "requires": { - "asap": "2.0.6" - } - }, "promise-inflight": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", @@ -14832,13 +15605,12 @@ } }, "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "version": "15.6.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz", + "integrity": "sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==", "dev": true, "requires": { - "fbjs": "0.8.16", - "loose-envify": "1.3.1", + "loose-envify": "1.4.0", "object-assign": "4.1.1" } }, @@ -14891,12 +15663,12 @@ } }, "pumpify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.4.0.tgz", - "integrity": "sha512-2kmNR9ry+Pf45opRVirpNuIFotsxUGLaYqxIwuR77AYrYRMuFCz9eryHBS52L360O+NcR383CL4QYlMKPq4zYA==", + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "dev": true, "requires": { - "duplexify": "3.5.4", + "duplexify": "3.6.0", "inherits": "2.0.3", "pump": "2.0.1" } @@ -14940,9 +15712,9 @@ "dev": true }, "querystringify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-0.0.4.tgz", - "integrity": "sha1-DPf4T5Rj/wrlHExLFC2VvjdyTZw=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.0.0.tgz", + "integrity": "sha512-eTPo5t/4bgaMNZxyjWx6N2a6AuE0mq51KWvpc7nU/MAqixcI6v6KrGUKES0HaomdnolQBBXU/++X6/QQ9KL4tw==", "dev": true }, "quick-lru": { @@ -15214,9 +15986,9 @@ } }, "regenerate": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz", - "integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", + "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", "dev": true }, "regenerator-runtime": { @@ -15257,6 +16029,15 @@ "integrity": "sha512-VncXxOF6uFlYog5prG2j+e2UGJeam5MfNiJnB/qEgo4KTnMm2XrELCg4rNZ6IlaEUZnGlb8aB6lXowCRQtTkkA==", "dev": true }, + "regexp.prototype.flags": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz", + "integrity": "sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA==", + "dev": true, + "requires": { + "define-properties": "1.1.2" + } + }, "regexpp": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz", @@ -15269,7 +16050,7 @@ "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", "dev": true, "requires": { - "regenerate": "1.3.3", + "regenerate": "1.4.0", "regjsgen": "0.2.0", "regjsparser": "0.1.5" } @@ -15328,7 +16109,7 @@ "requires": { "remark-parse": "4.0.0", "remark-stringify": "4.0.0", - "unified": "6.1.6" + "unified": "6.2.0" } }, "remark-parse": { @@ -15341,16 +16122,16 @@ "is-alphabetical": "1.0.2", "is-decimal": "1.0.2", "is-whitespace-character": "1.0.2", - "is-word-character": "1.0.1", + "is-word-character": "1.0.2", "markdown-escapes": "1.0.2", - "parse-entities": "1.1.1", + "parse-entities": "1.1.2", "repeat-string": "1.6.1", "state-toggle": "1.0.1", "trim": "0.0.1", - "trim-trailing-lines": "1.1.0", - "unherit": "1.1.0", - "unist-util-remove-position": "1.1.1", - "vfile-location": "2.0.2", + "trim-trailing-lines": "1.1.1", + "unherit": "1.1.1", + "unist-util-remove-position": "1.1.2", + "vfile-location": "2.0.3", "xtend": "4.0.1" } }, @@ -15368,11 +16149,11 @@ "markdown-escapes": "1.0.2", "markdown-table": "1.1.2", "mdast-util-compact": "1.0.1", - "parse-entities": "1.1.1", + "parse-entities": "1.1.2", "repeat-string": "1.6.1", "state-toggle": "1.0.1", - "stringify-entities": "1.3.1", - "unherit": "1.1.0", + "stringify-entities": "1.3.2", + "unherit": "1.1.1", "xtend": "4.0.1" } }, @@ -15451,9 +16232,9 @@ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" }, "require-from-string": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", - "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true }, "require-main-filename": { @@ -15583,7 +16364,7 @@ "dev": true, "requires": { "convert-source-map": "0.3.5", - "css": "2.2.1" + "css": "2.2.3" }, "dependencies": { "convert-source-map": { @@ -15658,13 +16439,13 @@ "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=" }, - "rx-lite-aggregates": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", - "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", + "rxjs": { + "version": "5.5.11", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz", + "integrity": "sha512-3bjO7UwWfA2CV7lmwYMBzj4fQ6Cq+ftHc2MvUe+WMS7wcdJ1LosDWmdjPQanYp2dBRj572p7PeU81JUxHKOcBA==", "dev": true, "requires": { - "rx-lite": "3.1.2" + "symbol-observable": "1.0.1" } }, "safe-buffer": { @@ -15789,6 +16570,18 @@ "fast-json-stable-stringify": "2.0.0", "json-schema-traverse": "0.3.1" } + }, + "fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true } } }, @@ -15798,7 +16591,7 @@ "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", "dev": true, "requires": { - "js-base64": "2.4.3", + "js-base64": "2.4.8", "source-map": "0.4.4" } }, @@ -15829,12 +16622,12 @@ "dev": true }, "selfsigned": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.2.tgz", - "integrity": "sha1-tESVgNmZKbZbEKSDiTAaZZIIh1g=", + "version": "1.10.3", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.3.tgz", + "integrity": "sha512-vmZenZ+8Al3NLHkWnhBQ0x6BkML1eCP2xEi3JE+f3D9wW9fipD9NNJHYtE9XJM4TsPaHGZJIamrSI6MTg1dU2Q==", "dev": true, "requires": { - "node-forge": "0.7.1" + "node-forge": "0.7.5" } }, "semver": { @@ -16320,7 +17113,7 @@ "faye-websocket": "0.11.1", "inherits": "2.0.3", "json3": "3.3.2", - "url-parse": "1.4.0" + "url-parse": "1.4.1" }, "dependencies": { "faye-websocket": { @@ -16401,9 +17194,9 @@ "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" }, "sparkles": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz", - "integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", "dev": true }, "spawn-sync": { @@ -16681,16 +17474,48 @@ } }, "stream-http": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.1.tgz", - "integrity": "sha512-cQ0jo17BLca2r0GfRdZKYAGLU6JRoIWxqSOakUMuKOT6MOK7AAlE856L33QuDmAy/eeOrhLee3dZKX0Uadu93A==", + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", "dev": true, "requires": { "builtin-status-codes": "3.0.0", "inherits": "2.0.3", - "readable-stream": "2.3.3", + "readable-stream": "2.3.6", "to-arraybuffer": "1.0.1", "xtend": "4.0.1" + }, + "dependencies": { + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "5.1.1" + } + } } }, "stream-shift": { @@ -16724,6 +17549,19 @@ "strip-ansi": "3.0.1" } }, + "string.prototype.matchall": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz", + "integrity": "sha512-WoZ+B2ypng1dp4iFLF2kmZlwwlE19gmjgKuhL1FJfDgCREWb3ye3SDVHSzLH6bxfnvYmkCxbzkmWcQZHA4P//Q==", + "dev": true, + "requires": { + "define-properties": "1.1.2", + "es-abstract": "1.12.0", + "function-bind": "1.1.1", + "has-symbols": "1.0.0", + "regexp.prototype.flags": "1.2.0" + } + }, "string_decoder": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", @@ -16733,9 +17571,9 @@ } }, "stringify-entities": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.1.tgz", - "integrity": "sha1-sVDsLXKsTBtfMktR+2soyc3/BYw=", + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.2.tgz", + "integrity": "sha512-nrBAQClJAPN2p+uGCVJRPIPakKeKWZ9GtBCmormE7pWOSlHat7+x5A8gx85M7HM5Dt0BP3pP5RhVW77WdbJJ3A==", "dev": true, "requires": { "character-entities-html4": "1.1.2", @@ -16852,15 +17690,15 @@ "dev": true }, "stylelint": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-9.2.0.tgz", - "integrity": "sha512-aBlnuLyTvyNfIVoc+reaqx88aW41Awc9Ccu7ZXrO2fnSvv0MVSQeyL3ci/nD1H1eYvH3X+MXTwMYC3Mf5+2Ckw==", + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-9.3.0.tgz", + "integrity": "sha512-u59pWTlrdwjqriJtTvO1a0wRK1mfbQQp7jLt27SX4zl2HmtVHOM/I1wd43xHTvUJZDKp1PTOpqRAamU3gFvmOA==", "dev": true, "requires": { - "autoprefixer": "8.3.0", + "autoprefixer": "8.6.5", "balanced-match": "1.0.0", "chalk": "2.4.1", - "cosmiconfig": "4.0.0", + "cosmiconfig": "5.0.5", "debug": "3.1.0", "execall": "1.0.0", "file-entry-cache": "2.0.0", @@ -16868,27 +17706,29 @@ "globby": "8.0.1", "globjoin": "0.1.4", "html-tags": "2.0.0", - "ignore": "3.3.8", + "ignore": "3.3.10", "import-lazy": "3.1.0", "imurmurhash": "0.1.4", "known-css-properties": "0.6.1", "lodash": "4.17.4", "log-symbols": "2.2.0", - "mathml-tag-names": "2.0.2", - "meow": "4.0.1", + "mathml-tag-names": "2.1.0", + "meow": "5.0.0", "micromatch": "2.3.11", "normalize-selector": "0.2.0", "pify": "3.0.0", - "postcss": "6.0.21", - "postcss-html": "0.18.0", - "postcss-less": "1.1.5", + "postcss": "6.0.23", + "postcss-html": "0.28.0", + "postcss-less": "2.0.0", + "postcss-markdown": "0.28.0", "postcss-media-query-parser": "0.2.3", "postcss-reporter": "5.0.0", "postcss-resolve-nested-selector": "0.1.1", "postcss-safe-parser": "3.0.1", - "postcss-sass": "0.3.0", - "postcss-scss": "1.0.5", + "postcss-sass": "0.3.2", + "postcss-scss": "1.0.6", "postcss-selector-parser": "3.1.1", + "postcss-syntax": "0.28.0", "postcss-value-parser": "3.3.0", "resolve-from": "4.0.0", "signal-exit": "3.0.2", @@ -16897,7 +17737,7 @@ "style-search": "0.1.0", "sugarss": "1.0.1", "svg-tags": "1.0.0", - "table": "4.0.2" + "table": "4.0.3" }, "dependencies": { "ansi-regex": { @@ -16912,31 +17752,31 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "autoprefixer": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-8.3.0.tgz", - "integrity": "sha512-HY2K4efAvC97v6j83pgV97Lieal51xhIV8EitvS4SrWcI+IGVZgjpihvXImsmIUzA6kb/tglPKzERG1oRFOvRA==", + "version": "8.6.5", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-8.6.5.tgz", + "integrity": "sha512-PLWJN3Xo/rycNkx+mp8iBDMTm3FeWe4VmYaZDSqL5QQB9sLsQkG5k8n+LNDFnhh9kdq2K+egL/icpctOmDHwig==", "dev": true, "requires": { - "browserslist": "3.2.6", - "caniuse-lite": "1.0.30000830", + "browserslist": "3.2.8", + "caniuse-lite": "1.0.30000865", "normalize-range": "0.1.2", "num2fraction": "1.2.2", - "postcss": "6.0.21", + "postcss": "6.0.23", "postcss-value-parser": "3.3.0" } }, "browserslist": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.6.tgz", - "integrity": "sha512-XCsMSg9V4S1VRdcp265dJ+8kBRjfuFXcavbisY7G6T9QI0H1Z24PP53vvs0WDYWqm38Mco1ILDtafcS8ZR4xiw==", + "version": "3.2.8", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz", + "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==", "dev": true, "requires": { - "caniuse-lite": "1.0.30000830", - "electron-to-chromium": "1.3.44" + "caniuse-lite": "1.0.30000865", + "electron-to-chromium": "1.3.52" } }, "camelcase": { @@ -16968,15 +17808,14 @@ } }, "cosmiconfig": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-4.0.0.tgz", - "integrity": "sha512-6e5vDdrXZD+t5v0L8CrurPeybg4Fmf+FCSYxXKYVAqLUtyCSbuyqE059d0kDthTNRzKVjL7QMgNpEUlsoYH3iQ==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.0.5.tgz", + "integrity": "sha512-94j37OtvxS5w7qr7Ta6dt67tWdnOxigBVN4VnSxNXFez9o18PGQ0D33SchKP17r9LAcWVTYV72G6vDayAUBFIg==", "dev": true, "requires": { "is-directory": "0.3.1", "js-yaml": "3.10.0", - "parse-json": "4.0.0", - "require-from-string": "2.0.2" + "parse-json": "4.0.0" } }, "debug": { @@ -17020,9 +17859,9 @@ "requires": { "array-union": "1.0.2", "dir-glob": "2.0.0", - "fast-glob": "2.2.1", + "fast-glob": "2.2.2", "glob": "7.1.2", - "ignore": "3.3.8", + "ignore": "3.3.10", "pify": "3.0.0", "slash": "1.0.0" } @@ -17070,20 +17909,20 @@ "dev": true }, "meow": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/meow/-/meow-4.0.1.tgz", - "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-5.0.0.tgz", + "integrity": "sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==", "dev": true, "requires": { "camelcase-keys": "4.2.0", "decamelize-keys": "1.1.0", "loud-rejection": "1.6.0", - "minimist": "1.2.0", "minimist-options": "3.0.2", "normalize-package-data": "2.4.0", "read-pkg-up": "3.0.0", "redent": "2.0.0", - "trim-newlines": "2.0.0" + "trim-newlines": "2.0.0", + "yargs-parser": "10.1.0" } }, "parse-json": { @@ -17112,27 +17951,106 @@ "dev": true }, "postcss-html": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-0.18.0.tgz", - "integrity": "sha512-7llFZ5hlINmUu/8iUBIXCTZ4OMyGB+NBeb7jDadXrH9g+hpcUEBhZv3rjqesmOsHNC3bITqx1EkVz77RuHJygw==", + "version": "0.28.0", + "resolved": "https://registry.npmjs.org/postcss-html/-/postcss-html-0.28.0.tgz", + "integrity": "sha512-H+ucbGVR+lsZySspOApeQU9yC6Q3t75lwJYa3Im93fKAUt5DScKOSErShC0aC7USdn2jsT1LxubcC5vYu/VJYw==", + "dev": true, + "requires": { + "htmlparser2": "3.9.2" + } + }, + "postcss-less": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-less/-/postcss-less-2.0.0.tgz", + "integrity": "sha512-pPNsVnpCB13nBMOcl5GVh8JGmB0JGFjqkLUDzKdVpptFFKEe9wFdEzvh2j4lD2AD+7qcrUfw9Ta+oi5+Fw7jjQ==", "dev": true, "requires": { - "@babel/core": "7.0.0-beta.46", - "@babel/traverse": "7.0.0-beta.44", - "babylon": "7.0.0-beta.44", - "htmlparser2": "3.9.2", - "remark": "9.0.0", - "unist-util-find-all-after": "1.0.1" + "postcss": "5.2.18" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "2.2.1", + "escape-string-regexp": "1.0.5", + "has-ansi": "2.0.0", + "strip-ansi": "3.0.1", + "supports-color": "2.0.0" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "1.1.3", + "js-base64": "2.4.8", + "source-map": "0.5.7", + "supports-color": "3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "1.0.0" + } + } } }, "postcss-sass": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.3.0.tgz", - "integrity": "sha512-nZJEFS2bT007CmzMjlZfZwcZKpSJ/JeFiVEdgrgvGZtAnORU+5BvN0cioNuDAVxwXHXp3hksCJzbZYPWkuw41Q==", + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/postcss-sass/-/postcss-sass-0.3.2.tgz", + "integrity": "sha512-0HgxikiZ07VKYr98KT+k7/rAzyMgZlP+3+R8vUti56T2dPdhW0OhPGDQzddxY/N2iDtBVZQqCHRDA09j5I6EWg==", "dev": true, "requires": { "gonzales-pe": "4.2.3", - "postcss": "6.0.21" + "postcss": "6.0.22" + }, + "dependencies": { + "postcss": { + "version": "6.0.22", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz", + "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==", + "dev": true, + "requires": { + "chalk": "2.4.1", + "source-map": "0.6.1", + "supports-color": "5.4.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } } }, "postcss-selector-parser": { @@ -17167,84 +18085,28 @@ "read-pkg": "3.0.0" } }, - "redent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz", - "integrity": "sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=", - "dev": true, - "requires": { - "indent-string": "3.2.0", - "strip-indent": "2.0.0" - } - }, - "remark": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/remark/-/remark-9.0.0.tgz", - "integrity": "sha512-amw8rGdD5lHbMEakiEsllmkdBP+/KpjW/PRK6NSGPZKCQowh0BT4IWXDAkRMyG3SB9dKPXWMviFjNusXzXNn3A==", - "dev": true, - "requires": { - "remark-parse": "5.0.0", - "remark-stringify": "5.0.0", - "unified": "6.1.6" - } - }, - "remark-parse": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz", - "integrity": "sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==", - "dev": true, - "requires": { - "collapse-white-space": "1.0.4", - "is-alphabetical": "1.0.2", - "is-decimal": "1.0.2", - "is-whitespace-character": "1.0.2", - "is-word-character": "1.0.1", - "markdown-escapes": "1.0.2", - "parse-entities": "1.1.1", - "repeat-string": "1.6.1", - "state-toggle": "1.0.1", - "trim": "0.0.1", - "trim-trailing-lines": "1.1.0", - "unherit": "1.1.0", - "unist-util-remove-position": "1.1.1", - "vfile-location": "2.0.2", - "xtend": "4.0.1" - } - }, - "remark-stringify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-5.0.0.tgz", - "integrity": "sha512-Ws5MdA69ftqQ/yhRF9XhVV29mhxbfGhbz0Rx5bQH+oJcNhhSM6nCu1EpLod+DjrFGrU0BMPs+czVmJZU7xiS7w==", + "redent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-2.0.0.tgz", + "integrity": "sha1-wbIAe0LVfrE4kHmzyDM2OdXhzKo=", "dev": true, "requires": { - "ccount": "1.0.3", - "is-alphanumeric": "1.0.0", - "is-decimal": "1.0.2", - "is-whitespace-character": "1.0.2", - "longest-streak": "2.0.2", - "markdown-escapes": "1.0.2", - "markdown-table": "1.1.2", - "mdast-util-compact": "1.0.1", - "parse-entities": "1.1.1", - "repeat-string": "1.6.1", - "state-toggle": "1.0.1", - "stringify-entities": "1.3.1", - "unherit": "1.1.0", - "xtend": "4.0.1" + "indent-string": "3.2.0", + "strip-indent": "2.0.0" } }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -17253,15 +18115,17 @@ "requires": { "is-fullwidth-code-point": "2.0.0", "strip-ansi": "4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "dev": true, - "requires": { - "ansi-regex": "3.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "3.0.0" + } + } } }, "strip-bom": { @@ -17290,6 +18154,15 @@ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz", "integrity": "sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=", "dev": true + }, + "yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "dev": true, + "requires": { + "camelcase": "4.1.0" + } } } }, @@ -17309,12 +18182,12 @@ } }, "stylelint-scss": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.1.0.tgz", - "integrity": "sha512-R8M4j4MBpqE3ZHy26pdb3OkuunGZ6KZ1eBacobByMOqcAB+HfXqNhO+AcE73eWbyWoTOE/rzOThgWJGOHbWCRw==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-3.1.3.tgz", + "integrity": "sha512-a2MPkpQrbRVHu6+Wbk5w/CQKUtAgRikk0shSmiO8eMcHu8rPMqbJTkraBu0Tpo7C6bs2I8cnlB1p+AivnPuWbw==", "dev": true, "requires": { - "lodash": "4.17.4", + "lodash": "4.17.10", "postcss-media-query-parser": "0.2.3", "postcss-resolve-nested-selector": "0.1.1", "postcss-selector-parser": "4.0.0", @@ -17327,6 +18200,12 @@ "integrity": "sha512-S2hzrpWvE6G/rW7i7IxJfWBYn27QWfOIncUW++8Rbo1VB5zsJDSVPcnI+Q8z7rhxT6/yZeLOCja4cZnghJrNGA==", "dev": true }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + }, "postcss-selector-parser": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-4.0.0.tgz", @@ -17341,9 +18220,9 @@ } }, "stylelint-webpack-plugin": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/stylelint-webpack-plugin/-/stylelint-webpack-plugin-0.10.4.tgz", - "integrity": "sha512-YMQtW49j8Bef3C5wMFunNxGR14eIlOWbv2YI8dFFY/4eHCeDFJ0F7JK9f8E0JfsS4OM4ZjVwIGRogejRjKGMvg==", + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/stylelint-webpack-plugin/-/stylelint-webpack-plugin-0.10.5.tgz", + "integrity": "sha512-jtYx3aJ2qDMvBMswe5NRPTO7kJgAKafc6GilAkWDp/ewoAmnoxA6TsYMnIPtLECRLwXevaCPvlh2JEUMGZCoUQ==", "dev": true, "requires": { "arrify": "1.0.1", @@ -17595,23 +18474,6 @@ } } }, - "is-odd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", - "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", - "dev": true, - "requires": { - "is-number": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -17644,7 +18506,7 @@ "extglob": "2.0.4", "fragment-cache": "0.2.1", "kind-of": "6.0.2", - "nanomatch": "1.2.9", + "nanomatch": "1.2.13", "object.pick": "1.3.0", "regex-not": "1.0.0", "snapdragon": "0.8.1", @@ -17652,9 +18514,9 @@ } }, "nanomatch": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", - "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "4.0.0", @@ -17662,7 +18524,6 @@ "define-property": "2.0.2", "extend-shallow": "3.0.2", "fragment-cache": "0.2.1", - "is-odd": "2.0.0", "is-windows": "1.0.2", "kind-of": "6.0.2", "object.pick": "1.3.0", @@ -17703,7 +18564,7 @@ "integrity": "sha512-3qgLZytikQQEVn1/FrhY7B68gPUUGY3R1Q1vTiD5xT+Ti1DP/8iZuwFet9ONs5+bmL8pZoDQ6JrQHVgrNlK6mA==", "dev": true, "requires": { - "postcss": "6.0.21" + "postcss": "6.0.23" } }, "sum-up": { @@ -17801,14 +18662,20 @@ } } }, + "symbol-observable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz", + "integrity": "sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=", + "dev": true + }, "table": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/table/-/table-4.0.2.tgz", - "integrity": "sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/table/-/table-4.0.3.tgz", + "integrity": "sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==", "dev": true, "requires": { - "ajv": "5.5.2", - "ajv-keywords": "2.1.1", + "ajv": "6.5.2", + "ajv-keywords": "3.2.0", "chalk": "2.4.1", "lodash": "4.17.4", "slice-ansi": "1.0.0", @@ -17816,15 +18683,15 @@ }, "dependencies": { "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", + "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", "dev": true, "requires": { - "co": "4.6.0", - "fast-deep-equal": "1.1.0", + "fast-deep-equal": "2.0.1", "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1" + "json-schema-traverse": "0.4.1", + "uri-js": "4.2.2" } }, "ansi-regex": { @@ -17839,7 +18706,7 @@ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "color-convert": "1.9.1" + "color-convert": "1.9.2" } }, "chalk": { @@ -17907,13 +18774,13 @@ } }, "tar-stream": { - "version": "1.5.7", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.7.tgz", - "integrity": "sha512-euyxmyeJpl6wjWGnzPfZRQ1IGLNbqEDJWuYyue9sixDY2vfqVBRiIqZLWYhWG5da031WF4qEN9D9Ek9lZHiH1Q==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.1.tgz", + "integrity": "sha512-IFLM5wp3QrJODQFPm6/to3LJZrONdBY/otxcvDIQzu217zKye6yVR3hhi9lAjrC2Z+m/j5oDxMPb1qcd8cIvpA==", "dev": true, "requires": { "bl": "1.2.2", - "buffer-alloc": "1.1.0", + "buffer-alloc": "1.2.0", "end-of-stream": "1.4.1", "fs-constants": "1.0.0", "readable-stream": "2.3.3", @@ -17935,7 +18802,7 @@ "requires": { "graceful-fs": "4.1.11", "is-stream": "1.1.0", - "make-dir": "1.2.0", + "make-dir": "1.3.0", "pify": "3.0.0", "temp-dir": "1.0.0", "uuid": "3.1.0" @@ -18271,9 +19138,9 @@ "dev": true }, "trim-trailing-lines": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.0.tgz", - "integrity": "sha1-eu+7eAjfnWafbaLkOMrIxGradoQ=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.1.tgz", + "integrity": "sha512-bWLv9BbWbbd7mlqqs2oQYnLD/U/ZqeJeJwbO0FG2zA1aTq+HTvxfHNKFa/HGCVyJpDiioUYaBhfiT6rgk+l4mg==", "dev": true }, "trough": { @@ -18396,9 +19263,9 @@ "optional": true }, "uglifyjs-webpack-plugin": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.5.tgz", - "integrity": "sha512-hIQJ1yxAPhEA2yW/i7Fr+SXZVMp+VEI3d42RTHBgQd2yhp/1UdBcR3QEWPV5ahBxlqQDMEMTuTEvDHSFINfwSw==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.2.7.tgz", + "integrity": "sha512-1VicfKhCYHLS8m1DCApqBhoulnASsEoJ/BvpUpP4zoNAPpKzdH+ghk0olGJMmwX2/jprK2j3hAHdUbczBSy2FA==", "dev": true, "requires": { "cacache": "10.0.4", @@ -18412,23 +19279,17 @@ }, "dependencies": { "ajv": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz", - "integrity": "sha1-06/3jpJ3VJdx2vAWTP9ISCt1T8Y=", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", + "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", "dev": true, "requires": { - "fast-deep-equal": "1.1.0", + "fast-deep-equal": "2.0.1", "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1", - "uri-js": "3.0.2" + "json-schema-traverse": "0.4.1", + "uri-js": "4.2.2" } }, - "ajv-keywords": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.1.0.tgz", - "integrity": "sha1-rCsnk5xUPpXSwG5/f1wnvkqlQ74=", - "dev": true - }, "find-cache-dir": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", @@ -18436,7 +19297,7 @@ "dev": true, "requires": { "commondir": "1.0.1", - "make-dir": "1.2.0", + "make-dir": "1.3.0", "pkg-dir": "2.0.0" } }, @@ -18464,8 +19325,8 @@ "integrity": "sha512-yYrjb9TX2k/J1Y5UNy3KYdZq10xhYcF8nMpAW6o3hy6Q8WSIEf9lJHG/ePnOBfziPM3fvQwfOwa13U/Fh8qTfA==", "dev": true, "requires": { - "ajv": "6.4.0", - "ajv-keywords": "3.1.0" + "ajv": "6.5.2", + "ajv-keywords": "3.2.0" } }, "source-map": { @@ -18497,9 +19358,9 @@ "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" }, "unherit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.0.tgz", - "integrity": "sha1-a5qu379z3xdWrZ4xbdmBiFhAzX0=", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unherit/-/unherit-1.1.1.tgz", + "integrity": "sha512-+XZuV691Cn4zHsK0vkKYwBEwB74T3IZIcxrgn2E4rKwTfFyI1zCh7X7grwh9Re08fdPlarIdyWgI8aVB3F5A5g==", "dev": true, "requires": { "inherits": "2.0.3", @@ -18507,9 +19368,9 @@ } }, "unified": { - "version": "6.1.6", - "resolved": "https://registry.npmjs.org/unified/-/unified-6.1.6.tgz", - "integrity": "sha512-pW2f82bCIo2ifuIGYcV12fL96kMMYgw7JKVEgh7ODlrM9rj6vXSY3BV+H6lCcv1ksxynFf582hwWLnA1qRFy4w==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/unified/-/unified-6.2.0.tgz", + "integrity": "sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==", "dev": true, "requires": { "bail": "1.0.3", @@ -18517,7 +19378,6 @@ "is-plain-obj": "1.1.0", "trough": "1.0.2", "vfile": "2.3.0", - "x-is-function": "1.0.4", "x-is-string": "0.1.0" } }, @@ -18551,15 +19411,6 @@ "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", "dev": true }, - "uniqid": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/uniqid/-/uniqid-4.1.1.tgz", - "integrity": "sha1-iSIN32t1GuUrX3JISGNShZa7hME=", - "dev": true, - "requires": { - "macaddress": "0.2.8" - } - }, "uniqs": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", @@ -18604,51 +19455,51 @@ } }, "unist-util-find-all-after": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-1.0.1.tgz", - "integrity": "sha1-TlUSq/734GFnga7Pex7XUcAK+Qg=", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-1.0.2.tgz", + "integrity": "sha512-nDl79mKpffXojLpCimVXnxhlH/jjaTnDuScznU9J4jjsaUtBdDbxmlc109XtcqxY4SDO0SwzngsxxW8DIISt1w==", "dev": true, "requires": { - "unist-util-is": "2.1.1" + "unist-util-is": "2.1.2" } }, "unist-util-is": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.1.tgz", - "integrity": "sha1-DDEmKeP5YMZukx6BLT2A53AQlHs=", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.2.tgz", + "integrity": "sha512-YkXBK/H9raAmG7KXck+UUpnKiNmUdB+aBGrknfQ4EreE1banuzrKABx3jP6Z5Z3fMSPMQQmeXBlKpCbMwBkxVw==", "dev": true }, "unist-util-modify-children": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-1.1.1.tgz", - "integrity": "sha1-ZtfmpEnm9nIguXarPLi166w55R0=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-modify-children/-/unist-util-modify-children-1.1.2.tgz", + "integrity": "sha512-GRi04yhng1WqBf5RBzPkOtWAadcZS2gvuOgNn/cyJBYNxtTuyYqTKN0eg4rC1YJwGnzrqfRB3dSKm8cNCjNirg==", "dev": true, "requires": { "array-iterate": "1.1.2" } }, "unist-util-remove-position": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.1.tgz", - "integrity": "sha1-WoXBVV/BugwQG4ZwfRXlD6TIcbs=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.2.tgz", + "integrity": "sha512-XxoNOBvq1WXRKXxgnSYbtCF76TJrRoe5++pD4cCBsssSiWSnPEktyFrFLE8LTk3JW5mt9hB0Sk5zn4x/JeWY7Q==", "dev": true, "requires": { - "unist-util-visit": "1.3.0" + "unist-util-visit": "1.3.1" } }, "unist-util-stringify-position": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.1.tgz", - "integrity": "sha1-PMvcU2ee7W7PN3fdf14yKcG2qjw=", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz", + "integrity": "sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==", "dev": true }, "unist-util-visit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.3.0.tgz", - "integrity": "sha512-9ntYcxPFtl44gnwXrQKZ5bMqXMY0ZHzUpqMFiU4zcc8mmf/jzYm8GhYgezuUlX4cJIM1zIDYaO6fG/fI+L6iiQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.3.1.tgz", + "integrity": "sha512-0fdB9EQJU0tho5tK0VzOJzAQpPv2LyLZ030b10GxuzAWEfvd54mpY7BMjQ1L69k2YNvL+SvxRzH0yUIehOO8aA==", "dev": true, "requires": { - "unist-util-is": "2.1.1" + "unist-util-is": "2.1.2" } }, "universalify": { @@ -18714,9 +19565,9 @@ "integrity": "sha1-uYTwh3/AqJwsdzzB73tbIytbBv4=" }, "upath": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.0.4.tgz", - "integrity": "sha512-d4SJySNBXDaQp+DPrziv3xGS6w3d2Xt69FijJr86zMPBy23JEloMCEOUBBzuN7xCtjLCnmB9tI/z7SBCahHBOw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz", + "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==", "dev": true }, "update-notifier": { @@ -18741,18 +19592,18 @@ "dev": true }, "uri-js": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-3.0.2.tgz", - "integrity": "sha1-+QuFhQf4HepNz7s8TD2/orVX+qo=", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", "dev": true, "requires": { - "punycode": "2.1.0" + "punycode": "2.1.1" }, "dependencies": { "punycode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true } } @@ -18781,21 +19632,13 @@ } }, "url-parse": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.0.tgz", - "integrity": "sha512-ERuGxDiQ6Xw/agN4tuoCRbmwRuZP0cJ1lJxJubXr5Q/5cDa78+Dc4wfvtxzhzhkm5VvmW6Mf8EVj9SPGN4l8Lg==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.1.tgz", + "integrity": "sha512-x95Td74QcvICAA0+qERaVkRpTGKyBHHYdwL2LXZm5t/gBtCB9KQSO/0zQgSTYEV1p0WcvSg79TLNPSvd5IDJMQ==", "dev": true, "requires": { "querystringify": "2.0.0", "requires-port": "1.0.0" - }, - "dependencies": { - "querystringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.0.0.tgz", - "integrity": "sha512-eTPo5t/4bgaMNZxyjWx6N2a6AuE0mq51KWvpc7nU/MAqixcI6v6KrGUKES0HaomdnolQBBXU/++X6/QQ9KL4tw==", - "dev": true - } } }, "url-parse-lax": { @@ -19004,8 +19847,8 @@ "requires": { "is-buffer": "1.1.6", "replace-ext": "1.0.0", - "unist-util-stringify-position": "1.1.1", - "vfile-message": "1.0.0" + "unist-util-stringify-position": "1.1.2", + "vfile-message": "1.0.1" }, "dependencies": { "replace-ext": { @@ -19017,18 +19860,18 @@ } }, "vfile-location": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.2.tgz", - "integrity": "sha1-02dcWch3SY5JK0dW/2Xkrxp1IlU=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.3.tgz", + "integrity": "sha512-zM5/l4lfw1CBoPx3Jimxoc5RNDAHHpk6AM6LM0pTIkm5SUSsx8ZekZ0PVdf0WEZ7kjlhSt7ZlqbRL6Cd6dBs6A==", "dev": true }, "vfile-message": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.0.0.tgz", - "integrity": "sha512-HPREhzTOB/sNDc9/Mxf8w0FmHnThg5CRSJdR9VRFkD2riqYWs+fuXlj5z8mIpv2LrD7uU41+oPWFOL4Mjlf+dw==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-1.0.1.tgz", + "integrity": "sha512-vSGCkhNvJzO6VcWC6AlJW4NtYOVtS+RgCaqFIYUjoGIlHnFL+i0LbtYvonDWOMcB97uTPT4PRsyYY7REWC9vug==", "dev": true, "requires": { - "unist-util-stringify-position": "1.1.1" + "unist-util-stringify-position": "1.1.2" } }, "vinyl": { @@ -19057,7 +19900,7 @@ "integrity": "sha1-vm/zJwy1Xf19MGNkDegfJddTIjk=", "dev": true, "requires": { - "duplexify": "3.5.4", + "duplexify": "3.6.0", "glob-stream": "5.3.5", "graceful-fs": "4.1.11", "gulp-sourcemaps": "1.6.0", @@ -19162,19 +20005,19 @@ "dev": true }, "vue-loader": { - "version": "13.7.1", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-13.7.1.tgz", - "integrity": "sha512-v6PbKMGl/hWHGPxB2uGHsA66vusrXF66J/h1QiFXtU6z5zVSK8jq5xl95M1p3QNXmuEJKNP3nxoXfbgQNs7hJg==", + "version": "13.7.2", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-13.7.2.tgz", + "integrity": "sha512-pgFWFsUjYO1v+J+3r7K0Q4lCp0eOyI24/q9j+cCudWyCTjgpjpcAa1MdwjlDUUettt9xkkUBbQ9fkAN1NC8t9w==", "dev": true, "requires": { "consolidate": "0.14.5", "hash-sum": "1.0.2", "loader-utils": "1.1.0", - "lru-cache": "4.1.2", - "postcss": "6.0.21", + "lru-cache": "4.1.3", + "postcss": "6.0.23", "postcss-load-config": "1.2.0", "postcss-selector-parser": "2.2.3", - "prettier": "1.12.1", + "prettier": "1.13.7", "resolve": "1.5.0", "source-map": "0.6.1", "vue-hot-reload-api": "2.3.0", @@ -19182,16 +20025,49 @@ "vue-template-es2015-compiler": "1.6.0" }, "dependencies": { + "cosmiconfig": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.2.2.tgz", + "integrity": "sha512-GiNXLwAFPYHy25XmTPpafYvn3CLAkJ8FLsscq78MQd1Kh0OU6Yzhn4eV2MVF4G9WEQZoWEGltatdR+ntGPMl5A==", + "dev": true, + "requires": { + "is-directory": "0.3.1", + "js-yaml": "3.10.0", + "minimist": "1.2.0", + "object-assign": "4.1.1", + "os-homedir": "1.0.2", + "parse-json": "2.2.0", + "require-from-string": "1.2.1" + } + }, "lru-cache": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.2.tgz", - "integrity": "sha512-wgeVXhrDwAWnIF/yZARsFnMBtdFXOg1b8RIrhilp+0iDYN4mdQcNZElDZ0e4B64BhaxeQ5zN7PMyvu7we1kPeQ==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", "dev": true, "requires": { "pseudomap": "1.0.2", "yallist": "2.1.2" } }, + "postcss-load-config": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz", + "integrity": "sha1-U56a/J3chiASHr+djDZz4M5Q0oo=", + "dev": true, + "requires": { + "cosmiconfig": "2.2.2", + "object-assign": "4.1.1", + "postcss-load-options": "1.2.0", + "postcss-load-plugins": "2.3.0" + } + }, + "require-from-string": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", + "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=", + "dev": true + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -19241,7 +20117,7 @@ "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", "dev": true, "requires": { - "chokidar": "2.0.3", + "chokidar": "2.0.4", "graceful-fs": "4.1.11", "neo-async": "2.5.1" }, @@ -19252,39 +20128,202 @@ "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "dev": true, "requires": { - "micromatch": "3.1.10", - "normalize-path": "2.1.1" + "micromatch": "3.1.10", + "normalize-path": "2.1.1" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "1.1.0", + "array-unique": "0.3.2", + "extend-shallow": "2.0.1", + "fill-range": "4.0.0", + "isobject": "3.0.1", + "repeat-element": "1.1.2", + "snapdragon": "0.8.1", + "snapdragon-node": "2.1.1", + "split-string": "3.1.0", + "to-regex": "3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "chokidar": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", + "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==", + "dev": true, + "requires": { + "anymatch": "2.0.0", + "async-each": "1.0.1", + "braces": "2.3.2", + "fsevents": "1.2.4", + "glob-parent": "3.1.0", + "inherits": "2.0.3", + "is-binary-path": "1.0.1", + "is-glob": "4.0.0", + "lodash.debounce": "4.0.8", + "normalize-path": "2.1.1", + "path-is-absolute": "1.0.1", + "readdirp": "2.1.0", + "upath": "1.1.0" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "1.0.2", + "isobject": "3.0.1" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "2.6.9", + "define-property": "0.2.5", + "extend-shallow": "2.0.1", + "posix-character-classes": "0.1.1", + "regex-not": "1.0.0", + "snapdragon": "0.8.1", + "to-regex": "3.0.2" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "0.1.6" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "0.1.6", + "is-data-descriptor": "0.1.4", + "kind-of": "5.1.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "1.0.0", + "is-extendable": "1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "2.0.4" + } + } } }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "dev": true, "requires": { - "arr-flatten": "1.1.0", "array-unique": "0.3.2", + "define-property": "1.0.0", + "expand-brackets": "2.1.4", "extend-shallow": "2.0.1", - "fill-range": "4.0.0", - "isobject": "3.0.1", - "repeat-element": "1.1.2", + "fragment-cache": "0.2.1", + "regex-not": "1.0.0", "snapdragon": "0.8.1", - "snapdragon-node": "2.1.1", - "split-string": "3.1.0", "to-regex": "3.0.2" }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "1.0.2" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "2.0.1", + "is-number": "3.0.0", + "repeat-string": "1.6.1", + "to-regex-range": "2.1.1" + }, "dependencies": { "extend-shallow": { "version": "2.0.1", @@ -19292,170 +20331,537 @@ "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "dev": true, "requires": { - "is-extendable": "0.1.1" + "is-extendable": "0.1.1" + } + } + } + }, + "fsevents": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", + "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", + "dev": true, + "optional": true, + "requires": { + "nan": "2.10.0", + "node-pre-gyp": "0.10.0" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + }, + "aproba": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "delegates": "1.0.0", + "readable-stream": "2.3.6" + } + }, + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "debug": { + "version": "2.6.9", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "deep-extend": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "aproba": "1.2.0", + "console-control-strings": "1.1.0", + "has-unicode": "2.0.1", + "object-assign": "4.1.1", + "signal-exit": "3.0.2", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wide-align": "1.1.2" + } + }, + "glob": { + "version": "7.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.21", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safer-buffer": "2.1.2" + } + }, + "ignore-walk": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minimatch": "3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "dev": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true + }, + "minipass": { + "version": "2.2.4", + "bundled": true, + "dev": true, + "requires": { + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "minizlib": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" } - } - } - }, - "chokidar": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz", - "integrity": "sha512-zW8iXYZtXMx4kux/nuZVXjkLP+CyIK5Al5FHnj1OgTKGZfp4Oy6/ymtMSKFv3GD8DviEmUPmJg9eFdJ/JzudMg==", - "dev": true, - "requires": { - "anymatch": "2.0.0", - "async-each": "1.0.1", - "braces": "2.3.2", - "fsevents": "1.1.3", - "glob-parent": "3.1.0", - "inherits": "2.0.3", - "is-binary-path": "1.0.1", - "is-glob": "4.0.0", - "normalize-path": "2.1.1", - "path-is-absolute": "1.0.1", - "readdirp": "2.1.0", - "upath": "1.0.4" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "1.0.2", - "isobject": "3.0.1" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "posix-character-classes": "0.1.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.2" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, "dev": true, "requires": { - "is-descriptor": "0.1.6" + "minimist": "0.0.8" } }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "needle": { + "version": "2.2.0", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-extendable": "0.1.1" + "debug": "2.6.9", + "iconv-lite": "0.4.21", + "sax": "1.2.4" } }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "node-pre-gyp": { + "version": "0.10.0", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "detect-libc": "1.0.3", + "mkdirp": "0.5.1", + "needle": "2.2.0", + "nopt": "4.0.1", + "npm-packlist": "1.1.10", + "npmlog": "4.1.2", + "rc": "1.2.7", + "rimraf": "2.6.2", + "semver": "5.5.0", + "tar": "4.4.1" } }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "nopt": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "abbrev": "1.1.1", + "osenv": "0.1.5" + } + }, + "npm-bundled": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "npm-packlist": { + "version": "1.1.10", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ignore-walk": "3.0.1", + "npm-bundled": "1.0.3" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "are-we-there-yet": "1.1.4", + "console-control-strings": "1.1.0", + "gauge": "2.7.4", + "set-blocking": "2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true, "dev": true - } - } - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "1.0.0", - "is-extendable": "1.0.1" - }, - "dependencies": { - "is-extendable": { + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" + } + }, + "path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "bundled": true, "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "rc": { + "version": "1.2.7", + "bundled": true, + "dev": true, + "optional": true, "requires": { - "is-plain-object": "2.0.4" + "deep-extend": "0.5.1", + "ini": "1.3.5", + "minimist": "1.2.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + } } - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "0.3.2", - "define-property": "1.0.0", - "expand-brackets": "2.1.4", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.2" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-descriptor": "1.0.2" + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" } }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "rimraf": { + "version": "2.6.2", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-extendable": "0.1.1" + "glob": "7.1.2" } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "2.0.1", - "is-number": "3.0.0", - "repeat-string": "1.6.1", - "to-regex-range": "2.1.1" - }, - "dependencies": { - "extend-shallow": { + }, + "safe-buffer": { + "version": "5.1.1", + "bundled": true, + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "bundled": true, + "dev": true, + "optional": true + }, + "semver": { + "version": "5.5.0", + "bundled": true, + "dev": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-json-comments": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "bundled": true, + "dev": true, + "optional": true + }, + "tar": { + "version": "4.4.1", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-extendable": "0.1.1" + "chownr": "1.0.1", + "fs-minipass": "1.2.5", + "minipass": "2.2.4", + "minizlib": "1.1.0", + "mkdirp": "0.5.1", + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "wide-align": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "string-width": "1.0.2" } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "3.0.2", + "bundled": true, + "dev": true } } }, @@ -19555,23 +20961,6 @@ } } }, - "is-odd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", - "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", - "dev": true, - "requires": { - "is-number": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -19604,17 +20993,24 @@ "extglob": "2.0.4", "fragment-cache": "0.2.1", "kind-of": "6.0.2", - "nanomatch": "1.2.9", + "nanomatch": "1.2.13", "object.pick": "1.3.0", "regex-not": "1.0.0", "snapdragon": "0.8.1", "to-regex": "3.0.2" } }, + "nan": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", + "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "dev": true, + "optional": true + }, "nanomatch": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", - "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "4.0.0", @@ -19622,7 +21018,6 @@ "define-property": "2.0.2", "extend-shallow": "3.0.2", "fragment-cache": "0.2.1", - "is-odd": "2.0.0", "is-windows": "1.0.2", "kind-of": "6.0.2", "object.pick": "1.3.0", @@ -19675,16 +21070,16 @@ } }, "webpack": { - "version": "3.11.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.11.0.tgz", - "integrity": "sha512-3kOFejWqj5ISpJk4Qj/V7w98h9Vl52wak3CLiw/cDOfbVTq7FeoZ0SdoHHY9PYlHr50ZS42OfvzE2vB4nncKQg==", + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.12.0.tgz", + "integrity": "sha512-Sw7MdIIOv/nkzPzee4o0EdvCuPmxT98+vVpIvwtcwcF1Q4SDSNp92vwcKc4REe7NItH9f1S4ra9FuQ7yuYZ8bQ==", "dev": true, "requires": { - "acorn": "5.5.3", + "acorn": "5.7.1", "acorn-dynamic-import": "2.0.2", - "ajv": "6.4.0", - "ajv-keywords": "3.1.0", - "async": "2.6.0", + "ajv": "6.5.2", + "ajv-keywords": "3.2.0", + "async": "2.6.1", "enhanced-resolve": "3.4.1", "escope": "3.6.0", "interpret": "1.1.0", @@ -19705,23 +21100,17 @@ }, "dependencies": { "ajv": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.4.0.tgz", - "integrity": "sha1-06/3jpJ3VJdx2vAWTP9ISCt1T8Y=", + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.2.tgz", + "integrity": "sha512-hOs7GfvI6tUI1LfZddH82ky6mOMyTuY0mk7kE2pWpmhhUSkumzaTO5vbVwij39MdwPQWCV4Zv57Eo06NtL/GVA==", "dev": true, "requires": { - "fast-deep-equal": "1.1.0", + "fast-deep-equal": "2.0.1", "fast-json-stable-stringify": "2.0.0", - "json-schema-traverse": "0.3.1", - "uri-js": "3.0.2" + "json-schema-traverse": "0.4.1", + "uri-js": "4.2.2" } }, - "ajv-keywords": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.1.0.tgz", - "integrity": "sha1-rCsnk5xUPpXSwG5/f1wnvkqlQ74=", - "dev": true - }, "ansi-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", @@ -19729,12 +21118,12 @@ "dev": true }, "async": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz", - "integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==", + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz", + "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==", "dev": true, "requires": { - "lodash": "4.17.4" + "lodash": "4.17.10" } }, "camelcase": { @@ -19794,6 +21183,12 @@ "strip-bom": "3.0.0" } }, + "lodash": { + "version": "4.17.10", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz", + "integrity": "sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==", + "dev": true + }, "os-locale": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", @@ -19968,8 +21363,8 @@ "ansi-html": "0.0.7", "array-includes": "3.0.3", "bonjour": "3.5.0", - "chokidar": "2.0.3", - "compression": "1.7.2", + "chokidar": "2.0.4", + "compression": "1.7.3", "connect-history-api-fallback": "1.5.0", "debug": "3.1.0", "del": "3.0.0", @@ -19983,7 +21378,7 @@ "loglevel": "1.6.1", "opn": "5.3.0", "portfinder": "1.0.13", - "selfsigned": "1.10.2", + "selfsigned": "1.10.3", "serve-index": "1.8.0", "sockjs": "0.3.19", "sockjs-client": "1.1.4", @@ -20045,214 +21440,744 @@ } } }, - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "chokidar": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz", - "integrity": "sha512-zW8iXYZtXMx4kux/nuZVXjkLP+CyIK5Al5FHnj1OgTKGZfp4Oy6/ymtMSKFv3GD8DviEmUPmJg9eFdJ/JzudMg==", - "dev": true, - "requires": { - "anymatch": "2.0.0", - "async-each": "1.0.1", - "braces": "2.3.2", - "fsevents": "1.1.3", - "glob-parent": "3.1.0", - "inherits": "2.0.3", - "is-binary-path": "1.0.1", - "is-glob": "4.0.0", - "normalize-path": "2.1.1", - "path-is-absolute": "1.0.1", - "readdirp": "2.1.0", - "upath": "1.0.4" - } - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true, - "requires": { - "string-width": "1.0.2", - "strip-ansi": "3.0.1", - "wrap-ansi": "2.1.0" - } - }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "1.0.2", - "isobject": "3.0.1" - } - }, - "del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", - "dev": true, - "requires": { - "globby": "6.1.0", - "is-path-cwd": "1.0.0", - "is-path-in-cwd": "1.0.1", - "p-map": "1.2.0", - "pify": "3.0.0", - "rimraf": "2.6.2" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", + "dev": true + }, + "chokidar": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", + "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==", + "dev": true, + "requires": { + "anymatch": "2.0.0", + "async-each": "1.0.1", + "braces": "2.3.2", + "fsevents": "1.2.4", + "glob-parent": "3.1.0", + "inherits": "2.0.3", + "is-binary-path": "1.0.1", + "is-glob": "4.0.0", + "lodash.debounce": "4.0.8", + "normalize-path": "2.1.1", + "path-is-absolute": "1.0.1", + "readdirp": "2.1.0", + "upath": "1.1.0" + } + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wrap-ansi": "2.1.0" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "1.0.2", + "isobject": "3.0.1" + } + }, + "del": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", + "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "dev": true, + "requires": { + "globby": "6.1.0", + "is-path-cwd": "1.0.0", + "is-path-in-cwd": "1.0.1", + "p-map": "1.2.0", + "pify": "3.0.0", + "rimraf": "2.6.2" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "2.6.9", + "define-property": "0.2.5", + "extend-shallow": "2.0.1", + "posix-character-classes": "0.1.1", + "regex-not": "1.0.0", + "snapdragon": "0.8.1", + "to-regex": "3.0.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "0.1.6" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "0.1.6", + "is-data-descriptor": "0.1.4", + "kind-of": "5.1.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "1.0.0", + "is-extendable": "1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "2.0.4" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "0.3.2", + "define-property": "1.0.0", + "expand-brackets": "2.1.4", + "extend-shallow": "2.0.1", + "fragment-cache": "0.2.1", + "regex-not": "1.0.0", + "snapdragon": "0.8.1", + "to-regex": "3.0.2" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "1.0.2" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "2.0.1", + "is-number": "3.0.0", + "repeat-string": "1.6.1", + "to-regex-range": "2.1.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "fsevents": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", + "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", "dev": true, + "optional": true, "requires": { - "debug": "2.6.9", - "define-property": "0.2.5", - "extend-shallow": "2.0.1", - "posix-character-classes": "0.1.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.2" + "nan": "2.10.0", + "node-pre-gyp": "0.10.0" }, "dependencies": { + "abbrev": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "dev": true + }, + "aproba": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "delegates": "1.0.0", + "readable-stream": "2.3.6" + } + }, + "balanced-match": { + "version": "1.0.0", + "bundled": true, + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "dev": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, "debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "ms": "2.0.0" + } + }, + "deep-extend": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "aproba": "1.2.0", + "console-control-strings": "1.1.0", + "has-unicode": "2.0.1", + "object-assign": "4.1.1", + "signal-exit": "3.0.2", + "string-width": "1.0.2", + "strip-ansi": "3.0.1", + "wide-align": "1.1.2" + } + }, + "glob": { + "version": "7.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "dev": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.21", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safer-buffer": "2.1.2" + } + }, + "ignore-walk": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minimatch": "3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "dev": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "dev": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "dev": true, + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "0.0.8", + "bundled": true, + "dev": true + }, + "minipass": { + "version": "2.2.4", + "bundled": true, + "dev": true, + "requires": { + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "minizlib": { + "version": "1.1.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "minipass": "2.2.4" + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "dev": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "needle": { + "version": "2.2.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "debug": "2.6.9", + "iconv-lite": "0.4.21", + "sax": "1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.10.0", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "detect-libc": "1.0.3", + "mkdirp": "0.5.1", + "needle": "2.2.0", + "nopt": "4.0.1", + "npm-packlist": "1.1.10", + "npmlog": "4.1.2", + "rc": "1.2.7", + "rimraf": "2.6.2", + "semver": "5.5.0", + "tar": "4.4.1" + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "abbrev": "1.1.1", + "osenv": "0.1.5" + } + }, + "npm-bundled": { + "version": "1.0.3", + "bundled": true, + "dev": true, + "optional": true + }, + "npm-packlist": { + "version": "1.1.10", + "bundled": true, "dev": true, + "optional": true, "requires": { - "ms": "2.0.0" + "ignore-walk": "3.0.1", + "npm-bundled": "1.0.3" } }, - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "npmlog": { + "version": "4.1.2", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-descriptor": "0.1.6" + "are-we-there-yet": "1.1.4", + "console-control-strings": "1.1.0", + "gauge": "2.7.4", + "set-blocking": "2.0.0" } }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "dev": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, "dev": true, "requires": { - "is-extendable": "0.1.1" + "wrappy": "1.0.2" } }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-accessor-descriptor": "0.1.6", - "is-data-descriptor": "0.1.4", - "kind-of": "5.1.0" + "os-homedir": "1.0.2", + "os-tmpdir": "1.0.2" } }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "1.0.0", - "is-extendable": "1.0.1" - }, - "dependencies": { - "is-extendable": { + "path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "bundled": true, "dev": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "rc": { + "version": "1.2.7", + "bundled": true, + "dev": true, + "optional": true, "requires": { - "is-plain-object": "2.0.4" + "deep-extend": "0.5.1", + "ini": "1.3.5", + "minimist": "1.2.0", + "strip-json-comments": "2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true, + "optional": true + } } - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "0.3.2", - "define-property": "1.0.0", - "expand-brackets": "2.1.4", - "extend-shallow": "2.0.1", - "fragment-cache": "0.2.1", - "regex-not": "1.0.0", - "snapdragon": "0.8.1", - "to-regex": "3.0.2" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-descriptor": "1.0.2" + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.1", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" } }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "rimraf": { + "version": "2.6.2", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-extendable": "0.1.1" + "glob": "7.1.2" } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "2.0.1", - "is-number": "3.0.0", - "repeat-string": "1.6.1", - "to-regex-range": "2.1.1" - }, - "dependencies": { - "extend-shallow": { + }, + "safe-buffer": { + "version": "5.1.1", + "bundled": true, + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "dev": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "bundled": true, + "dev": true, + "optional": true + }, + "semver": { + "version": "5.5.0", + "bundled": true, + "dev": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "dev": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "safe-buffer": "5.1.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "strip-json-comments": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "bundled": true, + "dev": true, + "optional": true + }, + "tar": { + "version": "4.4.1", + "bundled": true, "dev": true, + "optional": true, "requires": { - "is-extendable": "0.1.1" + "chownr": "1.0.1", + "fs-minipass": "1.2.5", + "minipass": "2.2.4", + "minizlib": "1.1.0", + "mkdirp": "0.5.1", + "safe-buffer": "5.1.1", + "yallist": "3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "dev": true, + "optional": true + }, + "wide-align": { + "version": "1.1.2", + "bundled": true, + "dev": true, + "optional": true, + "requires": { + "string-width": "1.0.2" } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "3.0.2", + "bundled": true, + "dev": true } } }, @@ -20352,23 +22277,6 @@ } } }, - "is-odd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", - "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", - "dev": true, - "requires": { - "is-number": "4.0.0" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - } - } - }, "is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", @@ -20401,17 +22309,24 @@ "extglob": "2.0.4", "fragment-cache": "0.2.1", "kind-of": "6.0.2", - "nanomatch": "1.2.9", + "nanomatch": "1.2.13", "object.pick": "1.3.0", "regex-not": "1.0.0", "snapdragon": "0.8.1", "to-regex": "3.0.2" } }, + "nan": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", + "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", + "dev": true, + "optional": true + }, "nanomatch": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", - "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", "dev": true, "requires": { "arr-diff": "4.0.0", @@ -20419,7 +22334,6 @@ "define-property": "2.0.2", "extend-shallow": "3.0.2", "fragment-cache": "0.2.1", - "is-odd": "2.0.0", "is-windows": "1.0.2", "kind-of": "6.0.2", "object.pick": "1.3.0", @@ -20500,9 +22414,9 @@ } }, "webpack-merge": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.1.2.tgz", - "integrity": "sha512-/0QYwW/H1N/CdXYA2PNPVbsxO3u2Fpz34vs72xm03SRfg6bMNGfMJIQEpQjKRvkG2JvT6oRJFpDtSrwbX8Jzvw==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-4.1.3.tgz", + "integrity": "sha512-zxwAIGK7nKdu5CIZL0BjTQoq3elV0t0MfB7rUC1zj668geid52abs6hN/ACwZdK6LeMS8dC9B6WmtF978zH5mg==", "dev": true, "requires": { "lodash": "4.17.10" @@ -20551,7 +22465,7 @@ "integrity": "sha1-DK+dLXVdk67gSdS90NP+LMoqJOs=", "dev": true, "requires": { - "http-parser-js": "0.4.12", + "http-parser-js": "0.4.13", "websocket-extensions": "0.1.3" } }, @@ -20561,12 +22475,6 @@ "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==", "dev": true }, - "whatwg-fetch": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz", - "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng==", - "dev": true - }, "whet.extend": { "version": "0.9.9", "resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz", @@ -20587,9 +22495,9 @@ "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" }, "wide-align": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz", - "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", "dev": true, "requires": { "string-width": "1.0.2" @@ -20623,47 +22531,24 @@ } }, "wp-pot": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.5.1.tgz", - "integrity": "sha512-1Ni1Bc1I/CFkQ9kR0qVdSp0/iI8QU+JDBuqcHzf76ZlVH8+k0bDFovMTIFGJ4zEiKLBABZStkw5oCulcJ5phVA==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.6.1.tgz", + "integrity": "sha512-rB57DFGxERyghmCOm1H+cioxq4Cu2HksvtwZJuJOKPB0dYbbfpLerGJ6CPQ1VV7VQp67OcwCzBSuFc7S2rd13A==", "dev": true, "requires": { - "globby": "8.0.1", + "matched": "2.0.1", "path-sort": "0.1.0", - "php-parser": "2.2.0" - }, - "dependencies": { - "globby": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.1.tgz", - "integrity": "sha512-oMrYrJERnKBLXNLVTqhm3vPEdJ/b2ZE28xN4YARiix1NOIOBPEpOUnm844K1iu/BkphCaf2WNFwMszv8Soi1pw==", - "dev": true, - "requires": { - "array-union": "1.0.2", - "dir-glob": "2.0.0", - "fast-glob": "2.2.1", - "glob": "7.1.2", - "ignore": "3.3.8", - "pify": "3.0.0", - "slash": "1.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } + "php-parser": "3.0.0-alpha2" } }, "wp-pot-cli": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/wp-pot-cli/-/wp-pot-cli-1.1.0.tgz", - "integrity": "sha512-sAEKmBuAB5CqCmqHJ9dlY+BR6zlXMIFb0Ku+ght91tBGuXCCSwp0TLzJqjw4roqrOGxGJM+92DSdFYgb1E+y0A==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/wp-pot-cli/-/wp-pot-cli-1.2.1.tgz", + "integrity": "sha512-nwSIe5DCGlmldau6fx4NRvF5zjfgJhp5lO1hcNeuT5Zw1/cTAq07EkAIixTGFXvPMYsrNQpDdQ+lO87O8vkU9Q==", "dev": true, "requires": { - "meow": "4.0.1", - "wp-pot": "1.5.1" + "meow": "5.0.0", + "wp-pot": "1.6.1" }, "dependencies": { "camelcase": { @@ -20717,20 +22602,20 @@ "dev": true }, "meow": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/meow/-/meow-4.0.1.tgz", - "integrity": "sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-5.0.0.tgz", + "integrity": "sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==", "dev": true, "requires": { "camelcase-keys": "4.2.0", "decamelize-keys": "1.1.0", "loud-rejection": "1.6.0", - "minimist": "1.2.0", "minimist-options": "3.0.2", "normalize-package-data": "2.4.0", "read-pkg-up": "3.0.0", "redent": "2.0.0", - "trim-newlines": "2.0.0" + "trim-newlines": "2.0.0", + "yargs-parser": "10.1.0" } }, "parse-json": { @@ -20806,6 +22691,15 @@ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz", "integrity": "sha1-tAPQuRvlDDMd/EuC7s6yLD3hbSA=", "dev": true + }, + "yargs-parser": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.1.0.tgz", + "integrity": "sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ==", + "dev": true, + "requires": { + "camelcase": "4.1.0" + } } } }, @@ -20884,12 +22778,6 @@ "ultron": "1.1.1" } }, - "x-is-function": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/x-is-function/-/x-is-function-1.0.4.tgz", - "integrity": "sha1-XSlNw9Joy90GJYDgxd93o5HR+h4=", - "dev": true - }, "x-is-string": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz", @@ -20952,13 +22840,13 @@ } }, "yauzl": { - "version": "2.9.1", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz", - "integrity": "sha1-qBmB6nCleUYTOIPwKcWCGok1mn8=", + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", "dev": true, "requires": { "buffer-crc32": "0.2.13", - "fd-slicer": "1.0.1" + "fd-slicer": "1.1.0" } }, "yeast": { diff --git a/package.json b/package.json index 11f2c65..0834754 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "node": ">= 6.9.4" }, "devDependencies": { - "pressbooks-build-tools": "^0.12.0" + "pressbooks-build-tools": "^0.13.0" }, "dependencies": { "aetna": "^1.0.0-alpha.17", diff --git a/yarn.lock b/yarn.lock index ed3692a..85e0bb0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -255,15 +255,11 @@ acorn-dynamic-import@^2.0.0: dependencies: acorn "^4.0.3" -acorn-jsx@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" +acorn-jsx@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e" dependencies: - acorn "^3.0.4" - -acorn@^3.0.4: - version "3.3.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + acorn "^5.0.3" acorn@^4.0.3: version "4.0.13" @@ -273,9 +269,9 @@ acorn@^5.0.0: version "5.2.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" -acorn@^5.5.0: - version "5.5.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" +acorn@^5.0.3, acorn@^5.6.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8" adjust-sourcemap-loader@^1.1.0: version "1.1.0" @@ -307,6 +303,10 @@ ajv-keywords@^2.0.0, ajv-keywords@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" +ajv-keywords@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.2.0.tgz#e86b819c602cf8821ad637413698f1dec021847a" + ajv@^4.7.0, ajv@^4.9.1: version "4.11.8" resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" @@ -314,7 +314,7 @@ ajv@^4.7.0, ajv@^4.9.1: co "^4.6.0" json-stable-stringify "^1.0.1" -ajv@^5.0.0, ajv@^5.1.5, ajv@^5.3.0: +ajv@^5.0.0, ajv@^5.1.5: version "5.5.1" resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.1.tgz#b38bb8876d9e86bee994956a04e721e88b248eb2" dependencies: @@ -323,14 +323,14 @@ ajv@^5.0.0, ajv@^5.1.5, ajv@^5.3.0: fast-json-stable-stringify "^2.0.0" json-schema-traverse "^0.3.0" -ajv@^5.2.3: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" +ajv@^6.0.1, ajv@^6.5.0: + version "6.5.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.2.tgz#678495f9b82f7cca6be248dd92f59bff5e1f4360" dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" + fast-deep-equal "^2.0.1" fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.1" align-text@^0.1.1, align-text@^0.1.3: version "0.1.4" @@ -364,9 +364,9 @@ ansi-escapes@^1.0.0, ansi-escapes@^1.1.0: version "1.4.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" -ansi-escapes@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" +ansi-escapes@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" ansi-html@0.0.7: version "0.0.7" @@ -659,7 +659,7 @@ axobject-query@^0.1.0: dependencies: ast-types-flow "0.0.7" -babel-code-frame@^6.22.0, babel-code-frame@^6.26.0: +babel-code-frame@^6.26.0: version "6.26.0" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" dependencies: @@ -1771,6 +1771,10 @@ character-reference-invalid@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.1.tgz#942835f750e4ec61a308e60c2ef8cc1011202efc" +chardet@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + charenc@~0.0.1: version "0.0.2" resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" @@ -2058,7 +2062,7 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -concat-stream@^1.4.6, concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.6.0: +concat-stream@^1.4.6, concat-stream@^1.4.7, concat-stream@^1.5.0: version "1.6.0" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" dependencies: @@ -2289,6 +2293,16 @@ cross-spawn@^5.0.1, cross-spawn@^5.1.0: shebang-command "^1.2.0" which "^1.2.9" +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + crypt@~0.0.1: version "0.0.2" resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" @@ -2978,6 +2992,16 @@ error-stack-parser@^2.0.0: dependencies: stackframe "^1.0.3" +es-abstract@^1.10.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.12.0.tgz#9dbbdd27c6856f0001421ca18782d786bf8a6165" + dependencies: + es-to-primitive "^1.1.1" + function-bind "^1.1.1" + has "^1.0.1" + is-callable "^1.1.3" + is-regex "^1.0.4" + es-abstract@^1.5.0, es-abstract@^1.7.0: version "1.10.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" @@ -3076,9 +3100,9 @@ escope@^3.6.0: esrecurse "^4.1.0" estraverse "^4.1.1" -eslint-config-humanmade@^0.4.0: - version "0.4.1" - resolved "https://registry.yarnpkg.com/eslint-config-humanmade/-/eslint-config-humanmade-0.4.1.tgz#9fe61fa9d4ff20d309713dd48a23c5971cd3f7b9" +eslint-config-humanmade@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/eslint-config-humanmade/-/eslint-config-humanmade-0.5.0.tgz#8df1897b6a790f414b795cc13fc1ed2a43b6d0de" eslint-config-react-app@^2.1.0: version "2.1.0" @@ -3150,66 +3174,78 @@ eslint-plugin-react@^7.7.0: jsx-ast-utils "^2.0.1" prop-types "^15.6.0" -eslint-scope@^3.7.1, eslint-scope@~3.7.1: +eslint-scope@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@~3.7.1: version "3.7.1" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" dependencies: esrecurse "^4.1.0" estraverse "^4.1.1" +eslint-utils@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" + eslint-visitor-keys@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" -eslint@^4.18.0: - version "4.19.1" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" +eslint@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.1.0.tgz#2ed611f1ce163c0fb99e1e0cda5af8f662dff645" dependencies: - ajv "^5.3.0" - babel-code-frame "^6.22.0" + ajv "^6.5.0" + babel-code-frame "^6.26.0" chalk "^2.1.0" - concat-stream "^1.6.0" - cross-spawn "^5.1.0" + cross-spawn "^6.0.5" debug "^3.1.0" doctrine "^2.1.0" - eslint-scope "^3.7.1" + eslint-scope "^4.0.0" + eslint-utils "^1.3.1" eslint-visitor-keys "^1.0.0" - espree "^3.5.4" - esquery "^1.0.0" + espree "^4.0.0" + esquery "^1.0.1" esutils "^2.0.2" file-entry-cache "^2.0.0" functional-red-black-tree "^1.0.1" glob "^7.1.2" - globals "^11.0.1" + globals "^11.7.0" ignore "^3.3.3" imurmurhash "^0.1.4" - inquirer "^3.0.6" - is-resolvable "^1.0.0" - js-yaml "^3.9.1" + inquirer "^5.2.0" + is-resolvable "^1.1.0" + js-yaml "^3.11.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.3.0" - lodash "^4.17.4" - minimatch "^3.0.2" + lodash "^4.17.5" + minimatch "^3.0.4" mkdirp "^0.5.1" natural-compare "^1.4.0" optionator "^0.8.2" path-is-inside "^1.0.2" pluralize "^7.0.0" progress "^2.0.0" - regexpp "^1.0.1" + regexpp "^1.1.0" require-uncached "^1.0.3" - semver "^5.3.0" + semver "^5.5.0" + string.prototype.matchall "^2.0.0" strip-ansi "^4.0.0" - strip-json-comments "~2.0.1" - table "4.0.2" - text-table "~0.2.0" + strip-json-comments "^2.0.1" + table "^4.0.3" + text-table "^0.2.0" -espree@^3.5.4: - version "3.5.4" - resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" +espree@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634" dependencies: - acorn "^5.5.0" - acorn-jsx "^3.0.0" + acorn "^5.6.0" + acorn-jsx "^4.1.1" esprima@^2.6.0: version "2.7.3" @@ -3223,9 +3259,9 @@ esprima@~3.1.0: version "3.1.3" resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" -esquery@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" +esquery@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" dependencies: estraverse "^4.0.0" @@ -3415,13 +3451,13 @@ external-editor@^1.1.0: spawn-sync "^1.0.15" tmp "^0.0.29" -external-editor@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" +external-editor@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" dependencies: + chardet "^0.4.0" iconv-lite "^0.4.17" - jschardet "^1.4.2" - tmp "^0.0.31" + tmp "^0.0.33" extglob@^0.3.1: version "0.3.2" @@ -3466,6 +3502,10 @@ fast-deep-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" +fast-deep-equal@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + fast-glob@^2.0.2: version "2.2.1" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.1.tgz#686c2345be88f3741e174add0be6f2e5b6078889" @@ -4015,10 +4055,14 @@ global-prefix@^1.0.1: is-windows "^1.0.1" which "^1.2.14" -globals@^11.0.1, globals@^11.1.0: +globals@^11.1.0: version "11.2.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.2.0.tgz#aa2ece052a787563ba70a3dcd9dc2eb8a9a0488c" +globals@^11.7.0: + version "11.7.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.7.0.tgz#a583faa43055b1aca771914bf68258e2fc125673" + globals@^9.18.0: version "9.18.0" resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" @@ -4275,6 +4319,10 @@ has-gulplog@^0.1.0: dependencies: sparkles "^1.0.0" +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" @@ -4692,21 +4740,20 @@ inquirer@^1.1.2: strip-ansi "^3.0.0" through "^2.3.6" -inquirer@^3.0.6: - version "3.2.3" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.3.tgz#1c7b1731cf77b934ec47d22c9ac5aa8fe7fbe095" +inquirer@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726" dependencies: - ansi-escapes "^2.0.0" + ansi-escapes "^3.0.0" chalk "^2.0.0" cli-cursor "^2.1.0" cli-width "^2.0.0" - external-editor "^2.0.4" + external-editor "^2.1.0" figures "^2.0.0" lodash "^4.3.0" mute-stream "0.0.7" run-async "^2.2.0" - rx-lite "^4.0.8" - rx-lite-aggregates "^4.0.8" + rxjs "^5.5.2" string-width "^2.1.0" strip-ansi "^4.0.0" through "^2.3.6" @@ -5069,11 +5116,9 @@ is-relative@^1.0.0: dependencies: is-unc-path "^1.0.0" -is-resolvable@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" - dependencies: - tryit "^1.0.1" +is-resolvable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" is-retry-allowed@^1.0.0: version "1.1.0" @@ -5237,7 +5282,14 @@ js-tokens@^3.0.0, js-tokens@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" -js-yaml@^3.4.3, js-yaml@^3.6.1, js-yaml@^3.8.1, js-yaml@^3.9.0, js-yaml@^3.9.1: +js-yaml@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.0.tgz#eaed656ec8344f10f527c6bfa1b6e2244de167d1" + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +js-yaml@^3.4.3, js-yaml@^3.6.1, js-yaml@^3.8.1, js-yaml@^3.9.0: version "3.10.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" dependencies: @@ -5255,10 +5307,6 @@ jsbn@~0.1.0: version "0.1.1" resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" -jschardet@^1.4.2: - version "1.5.1" - resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" - jsesc@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" @@ -5283,6 +5331,10 @@ json-schema-traverse@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + json-schema@0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" @@ -5735,6 +5787,10 @@ lodash@^4, lodash@^4.0.0, lodash@^4.12.0, lodash@^4.14.0, lodash@^4.14.1, lodash version "4.17.4" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" +lodash@^4.17.5: + version "4.17.10" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7" + log-symbols@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6" @@ -6235,6 +6291,10 @@ negotiator@0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" +nice-try@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4" + no-case@^2.2.0: version "2.3.2" resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" @@ -6631,7 +6691,7 @@ os-shim@^0.1.2: version "0.1.3" resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" -os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1: +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -6821,7 +6881,7 @@ path-is-inside@^1.0.1, path-is-inside@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" -path-key@^2.0.0: +path-key@^2.0.0, path-key@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" @@ -7350,16 +7410,16 @@ preserve@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" -pressbooks-build-tools@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/pressbooks-build-tools/-/pressbooks-build-tools-0.12.0.tgz#5dd3f5893a07779e4f2d96266754a770cf2311fd" +pressbooks-build-tools@^0.13.0: + version "0.13.0" + resolved "https://registry.yarnpkg.com/pressbooks-build-tools/-/pressbooks-build-tools-0.13.0.tgz#b84b793b7bd03c612adc90e565070fc594aea795" dependencies: babel-eslint "^8.2.1" browser-sync "^2.23.6" browser-sync-webpack-plugin "^2.0.1" cross-env "^5.1.3" - eslint "^4.18.0" - eslint-config-humanmade "^0.4.0" + eslint "^5.0.0" + eslint-config-humanmade "^0.5.0" eslint-config-react-app "^2.1.0" eslint-loader "~2.0" eslint-plugin-flowtype "^2.45.0" @@ -7492,6 +7552,10 @@ punycode@^1.2.4, punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + q@^1.1.2: version "1.5.0" resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" @@ -7763,7 +7827,13 @@ regex-parser@^2.2.1: version "2.2.8" resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.8.tgz#da4c0cda5a828559094168930f455f532b6ffbac" -regexpp@^1.0.1: +regexp.prototype.flags@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c" + dependencies: + define-properties "^1.1.2" + +regexpp@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" @@ -8151,16 +8221,6 @@ run-queue@^1.0.0, run-queue@^1.0.3: dependencies: aproba "^1.1.1" -rx-lite-aggregates@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" - dependencies: - rx-lite "*" - -rx-lite@*, rx-lite@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" - rx-lite@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" @@ -8169,6 +8229,12 @@ rx@4.1.0, rx@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" +rxjs@^5.5.2: + version "5.5.11" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.11.tgz#f733027ca43e3bec6b994473be4ab98ad43ced87" + dependencies: + symbol-observable "1.0.1" + safe-buffer@5.1.1, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" @@ -8254,7 +8320,7 @@ semver-truncate@^1.0.0: dependencies: semver "^5.3.0" -"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1: +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" @@ -8792,6 +8858,16 @@ string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" +string.prototype.matchall@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-2.0.0.tgz#2af8fe3d2d6dc53ca2a59bd376b089c3c152b3c8" + dependencies: + define-properties "^1.1.2" + es-abstract "^1.10.0" + function-bind "^1.1.1" + has-symbols "^1.0.0" + regexp.prototype.flags "^1.2.0" + string.prototype.trim@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" @@ -8877,7 +8953,7 @@ strip-indent@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" -strip-json-comments@~2.0.1: +strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" @@ -9088,16 +9164,9 @@ svgo@^0.7.0: sax "~1.2.1" whet.extend "~0.9.9" -table@4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" - dependencies: - ajv "^5.2.3" - ajv-keywords "^2.1.0" - chalk "^2.1.0" - lodash "^4.17.4" - slice-ansi "1.0.0" - string-width "^2.1.1" +symbol-observable@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" table@^4.0.1: version "4.0.1" @@ -9110,6 +9179,17 @@ table@^4.0.1: slice-ansi "0.0.4" string-width "^2.0.0" +table@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/table/-/table-4.0.3.tgz#00b5e2b602f1794b9acaf9ca908a76386a7813bc" + dependencies: + ajv "^6.0.1" + ajv-keywords "^3.0.0" + chalk "^2.1.0" + lodash "^4.17.4" + slice-ansi "1.0.0" + string-width "^2.1.1" + tapable@^0.2.7: version "0.2.8" resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" @@ -9204,7 +9284,7 @@ term-size@^1.2.0: dependencies: execa "^0.7.0" -text-table@~0.2.0: +text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -9280,11 +9360,11 @@ tmp@^0.0.29: dependencies: os-tmpdir "~1.0.1" -tmp@^0.0.31: - version "0.0.31" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" dependencies: - os-tmpdir "~1.0.1" + os-tmpdir "~1.0.2" to-absolute-glob@^0.1.1: version "0.1.1" @@ -9384,10 +9464,6 @@ trough@^1.0.0: dependencies: glob "^6.0.4" -tryit@^1.0.1: - version "1.0.3" - resolved "https://registry.yarnpkg.com/tryit/-/tryit-1.0.3.tgz#393be730a9446fd1ead6da59a014308f36c289cb" - tty-browserify@0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" @@ -9640,6 +9716,12 @@ upper-case@^1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" +uri-js@^4.2.1: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + dependencies: + punycode "^2.1.0" + urix@^0.1.0, urix@~0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" From 743e20f35e9772c3324590b5ced7738e7d4d57f7 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Tue, 24 Jul 2018 10:39:38 -0300 Subject: [PATCH 14/35] Use Pressbooks coding standards (#131) --- archive.php | 9 +- comments.php | 21 ++- composer.json | 8 +- composer.lock | 179 +++++++++++--------- footer.php | 28 ++-- functions.php | 12 +- header.php | 36 ++-- inc/actions/namespace.php | 108 ++++++------ inc/activation/namespace.php | 15 +- inc/admin/namespace.php | 8 +- inc/customizer/namespace.php | 270 +++++++++++++++++------------- inc/filters/namespace.php | 10 +- inc/helpers/namespace.php | 21 ++- inc/intervention.php | 56 ++++--- index.php | 11 +- page-catalog.php | 10 +- page.php | 9 +- partials/book.php | 27 ++- partials/contact-form.php | 56 +++++-- partials/content-front-page.php | 17 +- partials/content-none.php | 15 +- partials/content-page-catalog.php | 57 ++++--- partials/content-page.php | 12 +- partials/content.php | 46 ++--- phpcs.ruleset.xml | 40 +---- search.php | 15 +- single.php | 3 +- 27 files changed, 650 insertions(+), 449 deletions(-) diff --git a/archive.php b/archive.php index afc7951..7cdcf4e 100644 --- a/archive.php +++ b/archive.php @@ -13,7 +13,8 @@ get_header(); ?>
+ if ( have_posts() ) : + ?>
diff --git a/comments.php b/comments.php index a988447..76d80c8 100644 --- a/comments.php +++ b/comments.php @@ -24,7 +24,8 @@ if ( post_password_required() ) { + if ( have_comments() ) : + ?>

'ol', - 'short_ping' => true, - ] ); + wp_list_comments( + [ + 'style' => 'ol', + 'short_ping' => true, + ] + ); ?> - + if ( ! comments_open() ) : + ?>

- =7", "composer/installers": "~1.0", @@ -25,8 +30,7 @@ "spatie/color": "^1.1" }, "require-dev": { - "humanmade/coding-standards": "^0.2.1", - "squizlabs/php_codesniffer": "^2.8.0", + "pressbooks/coding-standards": "dev-master", "wpreadme2markdown/wp2md": "^3.0" }, "scripts": { diff --git a/composer.lock b/composer.lock index e8a59cc..8573413 100644 --- a/composer.lock +++ b/composer.lock @@ -1,10 +1,10 @@ { "_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#composer-lock-the-lock-file", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "edad2ef6112644b56c39a416914d8b0f", + "content-hash": "055e0d205a16f08b328ff9d4e80e0bcf", "packages": [ { "name": "composer/installers", @@ -262,27 +262,27 @@ "packages-dev": [ { "name": "fig-r/psr2r-sniffer", - "version": "0.3.1", + "version": "0.5.0", "source": { "type": "git", "url": "https://github.com/php-fig-rectified/psr2r-sniffer.git", - "reference": "cdf61b2922efb225903e52c6222d7192d3b97ebf" + "reference": "ff4659fdb1ce8832a9e408a6e22aa05bc93efe10" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig-rectified/psr2r-sniffer/zipball/cdf61b2922efb225903e52c6222d7192d3b97ebf", - "reference": "cdf61b2922efb225903e52c6222d7192d3b97ebf", + "url": "https://api.github.com/repos/php-fig-rectified/psr2r-sniffer/zipball/ff4659fdb1ce8832a9e408a6e22aa05bc93efe10", + "reference": "ff4659fdb1ce8832a9e408a6e22aa05bc93efe10", "shasum": "" }, "require": { "php": ">=5.4.16", - "squizlabs/php_codesniffer": "~2.3" + "squizlabs/php_codesniffer": "^3.0" }, "bin": [ "bin/tokenize", "bin/sniff" ], - "type": "library", + "type": "phpcodesniffer-standard", "autoload": { "psr-4": { "PSR2R\\": "PSR2R" @@ -300,33 +300,70 @@ } ], "description": "Code-Sniffer, Auto-Fixer and Tokenizer for PSR2-R", - "time": "2016-07-11T14:35:34+00:00" + "keywords": [ + "codesniffer", + "cs" + ], + "time": "2017-08-30T10:00:39+00:00" }, { "name": "humanmade/coding-standards", - "version": "0.2.2", + "version": "v0.5.0", "source": { "type": "git", "url": "https://github.com/humanmade/coding-standards.git", - "reference": "f3974696bf139eb17049ae0ced114cbee1f86b20" + "reference": "b35747249bcc727a9eff22f746aaf9758d8a90ce" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/humanmade/coding-standards/zipball/f3974696bf139eb17049ae0ced114cbee1f86b20", - "reference": "f3974696bf139eb17049ae0ced114cbee1f86b20", + "url": "https://api.github.com/repos/humanmade/coding-standards/zipball/b35747249bcc727a9eff22f746aaf9758d8a90ce", + "reference": "b35747249bcc727a9eff22f746aaf9758d8a90ce", "shasum": "" }, "require": { - "fig-r/psr2r-sniffer": "^0.3.1", - "wp-coding-standards/wpcs": "^0.10.0" + "fig-r/psr2r-sniffer": "^0.5.0", + "squizlabs/php_codesniffer": "^3.1", + "wp-coding-standards/wpcs": "^0.14.0" + }, + "require-dev": { + "phpunit/phpunit": "^5.7" }, "type": "project", "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0" + "GPL-2.0-or-later" ], "description": "Human Made coding standards", - "time": "2017-08-31T03:33:08+00:00" + "time": "2018-05-22T13:24:47+00:00" + }, + { + "name": "pressbooks/coding-standards", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/pressbooks/coding-standards.git", + "reference": "f09f0ba4dd3d20c2acb63c13b28a14bfe86ed229" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pressbooks/coding-standards/zipball/f09f0ba4dd3d20c2acb63c13b28a14bfe86ed229", + "reference": "f09f0ba4dd3d20c2acb63c13b28a14bfe86ed229", + "shasum": "" + }, + "require": { + "fig-r/psr2r-sniffer": "0.5.0", + "humanmade/coding-standards": "0.5.0", + "squizlabs/php_codesniffer": "3.3.0" + }, + "require-dev": { + "phpunit/phpunit": "6.5.8" + }, + "type": "project", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0-or-later" + ], + "time": "2018-07-13T14:56:39+00:00" }, { "name": "psr/log", @@ -377,64 +414,37 @@ }, { "name": "squizlabs/php_codesniffer", - "version": "2.9.1", + "version": "3.3.0", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62" + "reference": "d86873af43b4aa9d1f39a3601cc0cfcf02b25266" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62", - "reference": "dcbed1074f8244661eecddfc2a675430d8d33f62", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/d86873af43b4aa9d1f39a3601cc0cfcf02b25266", + "reference": "d86873af43b4aa9d1f39a3601cc0cfcf02b25266", "shasum": "" }, "require": { "ext-simplexml": "*", "ext-tokenizer": "*", "ext-xmlwriter": "*", - "php": ">=5.1.2" + "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "~4.0" + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" }, "bin": [ - "scripts/phpcs", - "scripts/phpcbf" + "bin/phpcs", + "bin/phpcbf" ], "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "3.x-dev" } }, - "autoload": { - "classmap": [ - "CodeSniffer.php", - "CodeSniffer/CLI.php", - "CodeSniffer/Exception.php", - "CodeSniffer/File.php", - "CodeSniffer/Fixer.php", - "CodeSniffer/Report.php", - "CodeSniffer/Reporting.php", - "CodeSniffer/Sniff.php", - "CodeSniffer/Tokens.php", - "CodeSniffer/Reports/", - "CodeSniffer/Tokenizers/", - "CodeSniffer/DocGenerators/", - "CodeSniffer/Standards/AbstractPatternSniff.php", - "CodeSniffer/Standards/AbstractScopeSniff.php", - "CodeSniffer/Standards/AbstractVariableSniff.php", - "CodeSniffer/Standards/IncorrectPatternException.php", - "CodeSniffer/Standards/Generic/Sniffs/", - "CodeSniffer/Standards/MySource/Sniffs/", - "CodeSniffer/Standards/PEAR/Sniffs/", - "CodeSniffer/Standards/PSR1/Sniffs/", - "CodeSniffer/Standards/PSR2/Sniffs/", - "CodeSniffer/Standards/Squiz/Sniffs/", - "CodeSniffer/Standards/Zend/Sniffs/" - ] - }, "notification-url": "https://packagist.org/downloads/", "license": [ "BSD-3-Clause" @@ -451,20 +461,20 @@ "phpcs", "standards" ], - "time": "2017-05-22T02:43:20+00:00" + "time": "2018-06-06T23:58:19+00:00" }, { "name": "symfony/console", - "version": "v3.4.3", + "version": "v3.4.13", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d" + "reference": "e54f84c50e3b12972e7750edfc5ca84b2284c44e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/8394c8ef121949e8f858f13bc1e34f05169e4e7d", - "reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d", + "url": "https://api.github.com/repos/symfony/console/zipball/e54f84c50e3b12972e7750edfc5ca84b2284c44e", + "reference": "e54f84c50e3b12972e7750edfc5ca84b2284c44e", "shasum": "" }, "require": { @@ -485,7 +495,7 @@ "symfony/process": "~3.3|~4.0" }, "suggest": { - "psr/log": "For using the console logger", + "psr/log-implementation": "For using the console logger", "symfony/event-dispatcher": "", "symfony/lock": "", "symfony/process": "" @@ -520,20 +530,20 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2018-01-03T07:37:34+00:00" + "time": "2018-07-10T14:02:11+00:00" }, { "name": "symfony/debug", - "version": "v3.4.3", + "version": "v3.4.13", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245" + "reference": "0e3ca9cbde90fffec8038f4d4e16fd4046bbd018" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/603b95dda8b00020e4e6e60dc906e7b715b1c245", - "reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245", + "url": "https://api.github.com/repos/symfony/debug/zipball/0e3ca9cbde90fffec8038f4d4e16fd4046bbd018", + "reference": "0e3ca9cbde90fffec8038f4d4e16fd4046bbd018", "shasum": "" }, "require": { @@ -576,20 +586,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2018-01-03T17:14:19+00:00" + "time": "2018-06-26T08:45:54+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.6.0", + "version": "v1.8.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296" + "reference": "3296adf6a6454a050679cde90f95350ad604b171" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", - "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171", + "reference": "3296adf6a6454a050679cde90f95350ad604b171", "shasum": "" }, "require": { @@ -601,7 +611,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.8-dev" } }, "autoload": { @@ -635,26 +645,30 @@ "portable", "shim" ], - "time": "2017-10-11T12:05:26+00:00" + "time": "2018-04-26T10:06:28+00:00" }, { "name": "wp-coding-standards/wpcs", - "version": "0.10.0", + "version": "0.14.1", "source": { "type": "git", "url": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git", - "reference": "b39490465f6fd7375743a395019cd597e12119c9" + "reference": "cf6b310caad735816caef7573295f8a534374706" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/WordPress-Coding-Standards/WordPress-Coding-Standards/zipball/b39490465f6fd7375743a395019cd597e12119c9", - "reference": "b39490465f6fd7375743a395019cd597e12119c9", + "url": "https://api.github.com/repos/WordPress-Coding-Standards/WordPress-Coding-Standards/zipball/cf6b310caad735816caef7573295f8a534374706", + "reference": "cf6b310caad735816caef7573295f8a534374706", "shasum": "" }, "require": { - "squizlabs/php_codesniffer": "^2.6" + "php": ">=5.3", + "squizlabs/php_codesniffer": "^2.9.0 || ^3.0.2" }, - "type": "library", + "suggest": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.4.3" + }, + "type": "phpcodesniffer-standard", "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" @@ -671,7 +685,7 @@ "standards", "wordpress" ], - "time": "2016-08-29T20:04:47+00:00" + "time": "2018-02-16T01:57:48+00:00" }, { "name": "wpreadme2markdown/wp2md", @@ -775,11 +789,16 @@ ], "aliases": [], "minimum-stability": "stable", - "stability-flags": [], + "stability-flags": { + "pressbooks/coding-standards": 20 + }, "prefer-stable": false, "prefer-lowest": false, "platform": { "php": ">=7" }, - "platform-dev": [] + "platform-dev": [], + "platform-overrides": { + "php": "7.0.27" + } } diff --git a/footer.php b/footer.php index 13f934b..46e5f10 100644 --- a/footer.php +++ b/footer.php @@ -20,9 +20,11 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' ); - + endif; + ?> diff --git a/functions.php b/functions.php index 13b7c88..12ddc3e 100644 --- a/functions.php +++ b/functions.php @@ -13,11 +13,13 @@ if ( ! class_exists( 'Spatie\\Color\\Hex' ) ) { $composer = get_template_directory() . '/vendor/autoload.php'; if ( ! file_exists( $composer ) ) { - wp_die( sprintf( - '

%1$s

%2$s

', - __( 'Dependencies Missing', 'pressbooks-aldine' ), - __( 'You must run composer install from the Aldine directory.', 'pressbooks-aldine' ) - ) ); + wp_die( + sprintf( + '

%1$s

%2$s

', + __( 'Dependencies Missing', 'pressbooks-aldine' ), + __( 'You must run composer install from the Aldine directory.', 'pressbooks-aldine' ) + ) + ); } require_once $composer; } diff --git a/header.php b/header.php index a60e3d3..d6b980f 100644 --- a/header.php +++ b/header.php @@ -42,7 +42,8 @@
- diff --git a/inc/actions/namespace.php b/inc/actions/namespace.php index bab4247..531335e 100644 --- a/inc/actions/namespace.php +++ b/inc/actions/namespace.php @@ -6,10 +6,8 @@ namespace Aldine\Actions; -use Spatie\Color\Hex; -use Spatie\Color\Rgb; -use Spatie\Color\Rgba; use PressbooksMix\Assets; +use Spatie\Color\Hex; /** * Sets up theme defaults and registers support for various WordPress features. @@ -44,30 +42,36 @@ function setup() { add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in two locations. - register_nav_menus( [ - 'primary-menu' => __( 'Primary Menu', 'pressbooks-aldine' ), - 'network-footer-menu' => __( 'Footer Menu', 'pressbooks-aldine' ), - ] ); + register_nav_menus( + [ + 'primary-menu' => __( 'Primary Menu', 'pressbooks-aldine' ), + 'network-footer-menu' => __( 'Footer Menu', 'pressbooks-aldine' ), + ] + ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ - add_theme_support( 'html5', [ - 'search-form', - 'comment-form', - 'comment-list', - 'gallery', - 'caption', - ] ); + add_theme_support( + 'html5', [ + 'search-form', + 'comment-form', + 'comment-list', + 'gallery', + 'caption', + ] + ); // Set up the WordPress core custom header feature. - add_theme_support( 'custom-header', [ - 'default-image' => get_template_directory_uri() . '/dist/images/header.jpg', - 'width' => 1920, - 'height' => 884, - 'default-text-color' => '#000', - ] ); + add_theme_support( + 'custom-header', [ + 'default-image' => get_template_directory_uri() . '/dist/images/header.jpg', + 'width' => 1920, + 'height' => 884, + 'default-text-color' => '#000', + ] + ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); @@ -77,12 +81,14 @@ function setup() { * * @link https://codex.wordpress.org/Theme_Logo */ - add_theme_support( 'custom-logo', [ - 'height' => 40, - 'width' => 265, - 'flex-width' => true, - 'flex-height' => true, - ] ); + add_theme_support( + 'custom-logo', [ + 'height' => 40, + 'width' => 265, + 'flex-width' => true, + 'flex-height' => true, + ] + ); // Add editor style. add_editor_style( $assets->getPath( 'styles/editor.css' ) ); @@ -103,26 +109,30 @@ function widgets_init() { 'before_title' => '

', 'after_title' => '

', ]; - register_sidebar( [ - 'name' => __( 'Network Footer Block 1', 'pressbooks-aldine' ), - 'description' => __( - 'Add content for your network’s customizeable footer here. + register_sidebar( + [ + 'name' => __( 'Network Footer Block 1', 'pressbooks-aldine' ), + 'description' => __( + 'Add content for your network’s customizeable footer here. Currently, only text and image widgets are supported. Content in this widget area will appear in the first row (on mobile) or the first column (on desktops).', - 'aldine' - ), - 'id' => 'network-footer-block-1', - ] + $config ); - register_sidebar( [ - 'name' => __( 'Network Footer Block 2', 'pressbooks-aldine' ), - 'description' => __( - 'Add content for your network’s customizeable footer here. + 'aldine' + ), + 'id' => 'network-footer-block-1', + ] + $config + ); + register_sidebar( + [ + 'name' => __( 'Network Footer Block 2', 'pressbooks-aldine' ), + 'description' => __( + 'Add content for your network’s customizeable footer here. Currently, only text and image widgets are supported. Content in this widget area will appear in the second row (on mobile) or the middle column (on desktop).', - 'aldine' - ), - 'id' => 'network-footer-block-2', - ] + $config ); + 'aldine' + ), + 'id' => 'network-footer-block-2', + ] + $config + ); } /** @@ -216,15 +226,17 @@ function remove_admin_bar_callback() { * Hide content editor for Catalog page. */ function hide_catalog_content_editor() { - $post_id = $_GET['post'] ?? null ; + $post_id = $_GET['post'] ?? null; if ( ! isset( $post_id ) ) { return; } $pagename = get_the_title( $post_id ); if ( $pagename === 'Catalog' ) { - add_action( 'edit_form_after_title', function() { - printf( '

%s

', __( 'This page displays your network catalog, so there is no content to edit.', 'pressbooks-aldine' ) ); - } ); + add_action( + 'edit_form_after_title', function() { + printf( '

%s

', __( 'This page displays your network catalog, so there is no content to edit.', 'pressbooks-aldine' ) ); + } + ); remove_post_type_support( 'page', 'editor' ); remove_post_type_support( 'page', 'thumbnail' ); } @@ -272,7 +284,7 @@ function register_shortcode_buttons() { * @since 1.1.0 */ function tinymce_l18n() { -?> + ?> -%s', __( 'see here', 'pressbooks-aldine' ) ) ) @@ -55,6 +56,7 @@ function create_default_content() { sprintf( '

%1$s

%2$s

', sprintf( + /* translators: %1$s: link to how to page; %2$s: link to guide */ __( 'The easiest way to get started with Pressbooks is to follow our %1$s. Or, you can review our %2$s.', 'pressbooks-aldine' ), sprintf( '%s', __( '4 Step Guide to Making a Book on Pressbooks', 'pressbooks-aldine' ) ), sprintf( '%s', __( 'Guide to Using Pressbooks', 'pressbooks-aldine' ) ) @@ -79,7 +81,14 @@ function create_default_content() { foreach ( $default_pages as $slug => $page ) { $check = get_page_by_path( $slug ); if ( empty( $check ) ) { - $pages[ $slug ] = wp_insert_post( array_merge( $page, [ 'post_type' => 'page', 'post_status' => 'publish' ] ) ); + $pages[ $slug ] = wp_insert_post( + array_merge( + $page, [ + 'post_type' => 'page', + 'post_status' => 'publish', + ] + ) + ); } else { $pages[ $slug ] = $check->ID; } @@ -192,11 +201,11 @@ function assign_menus() { switch ( $id ) { case 'primary-menu': $menu = get_term_by( 'name', 'Primary Menu', 'nav_menu' ); - break; + break; case 'network-footer-menu': $menu = get_term_by( 'name', 'Footer Menu', 'nav_menu' ); - break; + break; } if ( $menu ) { diff --git a/inc/admin/namespace.php b/inc/admin/namespace.php index 109eace..84f1822 100644 --- a/inc/admin/namespace.php +++ b/inc/admin/namespace.php @@ -70,7 +70,11 @@ function catalog_column( $column, $blog_id ) { if ( 'in_catalog' === $column && ! is_main_site( $blog_id ) ) { ?> disabled="disabled" title="" /> - + disabled="disabled" title="" /> + get_setting( 'header_textcolor' )->transport = 'postMessage'; if ( isset( $wp_customize->selective_refresh ) ) { - $wp_customize->selective_refresh->add_partial( 'blogname', [ - 'selector' => '.site-title a', - 'render_callback' => function() { - bloginfo( 'name' ); - }, - ] ); - $wp_customize->selective_refresh->add_partial( 'blogdescription', [ - 'selector' => '.site-description', - 'render_callback' => function() { - bloginfo( 'description' ); - }, - ] ); - $wp_customize->selective_refresh->add_partial( 'pb_front_page_catalog_title', [ - 'selector' => '#latest-books-title', - 'render_callback' => function() { - get_option( 'pb_front_page_catalog_title' ); - }, - ] ); - $wp_customize->selective_refresh->add_partial( 'pb_network_contact_form_title', [ - 'selector' => '#contact .contact__title', - 'render_callback' => function() { - get_option( 'pb_network_contact_form_title' ); - }, - ] ); + $wp_customize->selective_refresh->add_partial( + 'blogname', [ + 'selector' => '.site-title a', + 'render_callback' => function() { + bloginfo( 'name' ); + }, + ] + ); + $wp_customize->selective_refresh->add_partial( + 'blogdescription', [ + 'selector' => '.site-description', + 'render_callback' => function() { + bloginfo( 'description' ); + }, + ] + ); + $wp_customize->selective_refresh->add_partial( + 'pb_front_page_catalog_title', [ + 'selector' => '#latest-books-title', + 'render_callback' => function() { + get_option( 'pb_front_page_catalog_title' ); + }, + ] + ); + $wp_customize->selective_refresh->add_partial( + 'pb_network_contact_form_title', [ + 'selector' => '#contact .contact__title', + 'render_callback' => function() { + get_option( 'pb_network_contact_form_title' ); + }, + ] + ); } foreach ( [ @@ -92,103 +100,141 @@ function customize_register( \WP_Customize_Manager $wp_customize ) { 'description' => __( 'Used for text on an accent color background.', 'pressbooks-aldine' ), ], ] as $color ) { - $wp_customize->add_setting("pb_network_color_{$color['slug']}", [ - 'type' => 'option', - 'default' => $color['hex'], - ]); - $wp_customize->add_control(new \WP_Customize_Color_Control( - $wp_customize, - "pb_network_color_{$color['slug']}", - [ - 'label' => $color['label'], - 'section' => 'colors', - 'description' => $color['description'], - 'settings' => "pb_network_color_{$color['slug']}", + $wp_customize->add_setting( + "pb_network_color_{$color['slug']}", [ + 'type' => 'option', + 'default' => $color['hex'], ] - )); + ); + $wp_customize->add_control( + new \WP_Customize_Color_Control( + $wp_customize, + "pb_network_color_{$color['slug']}", + [ + 'label' => $color['label'], + 'section' => 'colors', + 'description' => $color['description'], + 'settings' => "pb_network_color_{$color['slug']}", + ] + ) + ); } - $wp_customize->add_section('pb_network_social', [ - 'title' => __( 'Social Media', 'pressbooks-aldine' ), - 'priority' => 30, - ]); - $wp_customize->add_setting('pb_network_facebook', [ - 'type' => 'option', - 'sanitize_callback' => 'esc_url_raw', - ]); - $wp_customize->add_control('pb_network_facebook', [ - 'label' => __( 'Facebook', 'pressbooks-aldine' ), - 'section' => 'pb_network_social', - 'settings' => 'pb_network_facebook', - ]); - $wp_customize->add_setting('pb_network_twitter', [ - 'type' => 'option', - 'sanitize_callback' => 'esc_url_raw', - ]); - $wp_customize->add_control('pb_network_twitter', [ - 'label' => __( 'Twitter', 'pressbooks-aldine' ), - 'section' => 'pb_network_social', - 'settings' => 'pb_network_twitter', - ]); + $wp_customize->add_section( + 'pb_network_social', [ + 'title' => __( 'Social Media', 'pressbooks-aldine' ), + 'priority' => 30, + ] + ); + $wp_customize->add_setting( + 'pb_network_facebook', [ + 'type' => 'option', + 'sanitize_callback' => 'esc_url_raw', + ] + ); + $wp_customize->add_control( + 'pb_network_facebook', [ + 'label' => __( 'Facebook', 'pressbooks-aldine' ), + 'section' => 'pb_network_social', + 'settings' => 'pb_network_facebook', + ] + ); + $wp_customize->add_setting( + 'pb_network_twitter', [ + 'type' => 'option', + 'sanitize_callback' => 'esc_url_raw', + ] + ); + $wp_customize->add_control( + 'pb_network_twitter', [ + 'label' => __( 'Twitter', 'pressbooks-aldine' ), + 'section' => 'pb_network_social', + 'settings' => 'pb_network_twitter', + ] + ); if ( defined( 'PB_PLUGIN_VERSION' ) ) { - $wp_customize->add_section('pb_front_page_catalog', [ - 'title' => __( 'Front Page Catalog', 'pressbooks-aldine' ), + $wp_customize->add_section( + 'pb_front_page_catalog', [ + 'title' => __( 'Front Page Catalog', 'pressbooks-aldine' ), + 'priority' => 25, + ] + ); + $wp_customize->add_setting( + 'pb_front_page_catalog', [ + 'type' => 'option', + ] + ); + $wp_customize->add_control( + 'pb_front_page_catalog', [ + 'label' => __( 'Show Front Page Catalog', 'pressbooks-aldine' ), + 'section' => 'pb_front_page_catalog', + 'settings' => 'pb_front_page_catalog', + 'type' => 'checkbox', + ] + ); + $wp_customize->add_setting( + 'pb_front_page_catalog_title', [ + 'type' => 'option', + 'sanitize_callback' => 'sanitize_text_field', + 'default' => __( 'Our Latest Titles', 'pressbooks-aldine' ), + ] + ); + $wp_customize->add_control( + 'pb_front_page_catalog_title', [ + 'label' => __( 'Front Page Catalog Title', 'pressbooks-aldine' ), + 'section' => 'pb_front_page_catalog', + 'settings' => 'pb_front_page_catalog_title', + ] + ); + } + + $wp_customize->add_section( + 'pb_network_contact_form', [ + 'title' => __( 'Contact Form', 'pressbooks-aldine' ), 'priority' => 25, - ]); - $wp_customize->add_setting('pb_front_page_catalog', [ + ] + ); + $wp_customize->add_setting( + 'pb_network_contact_form', [ 'type' => 'option', - ]); - $wp_customize->add_control('pb_front_page_catalog', [ - 'label' => __( 'Show Front Page Catalog', 'pressbooks-aldine' ), - 'section' => 'pb_front_page_catalog', - 'settings' => 'pb_front_page_catalog', + ] + ); + $wp_customize->add_control( + 'pb_network_contact_form', [ + 'label' => __( 'Show Contact Form', 'pressbooks-aldine' ), + 'section' => 'pb_network_contact_form', + 'settings' => 'pb_network_contact_form', 'type' => 'checkbox', - ]); - $wp_customize->add_setting('pb_front_page_catalog_title', [ + ] + ); + $wp_customize->add_setting( + 'pb_network_contact_form_title', [ 'type' => 'option', 'sanitize_callback' => 'sanitize_text_field', - 'default' => __( 'Our Latest Titles', 'pressbooks-aldine' ), - ]); - $wp_customize->add_control('pb_front_page_catalog_title', [ - 'label' => __( 'Front Page Catalog Title', 'pressbooks-aldine' ), - 'section' => 'pb_front_page_catalog', - 'settings' => 'pb_front_page_catalog_title', - ]); - } - - $wp_customize->add_section('pb_network_contact_form', [ - 'title' => __( 'Contact Form', 'pressbooks-aldine' ), - 'priority' => 25, - ]); - $wp_customize->add_setting('pb_network_contact_form', [ - 'type' => 'option', - ]); - $wp_customize->add_control('pb_network_contact_form', [ - 'label' => __( 'Show Contact Form', 'pressbooks-aldine' ), - 'section' => 'pb_network_contact_form', - 'settings' => 'pb_network_contact_form', - 'type' => 'checkbox', - ]); - $wp_customize->add_setting('pb_network_contact_form_title', [ - 'type' => 'option', - 'sanitize_callback' => 'sanitize_text_field', - 'default' => __( 'Contact Us', 'pressbooks-aldine' ), - ]); - $wp_customize->add_control('pb_network_contact_form_title', [ - 'label' => __( 'Contact Form Title', 'pressbooks-aldine' ), - 'section' => 'pb_network_contact_form', - 'settings' => 'pb_network_contact_form_title', - ]); - $wp_customize->add_setting('pb_network_contact_email', [ - 'type' => 'option', - 'default' => get_option( 'admin_email', '' ), - 'sanitize_callback' => 'sanitize_email', - ]); - $wp_customize->add_control('pb_network_contact_email', [ - 'label' => __( 'Contact Email', 'pressbooks-aldine' ), - 'section' => 'pb_network_contact_form', - 'settings' => 'pb_network_contact_email', - ]); + 'default' => __( 'Contact Us', 'pressbooks-aldine' ), + ] + ); + $wp_customize->add_control( + 'pb_network_contact_form_title', [ + 'label' => __( 'Contact Form Title', 'pressbooks-aldine' ), + 'section' => 'pb_network_contact_form', + 'settings' => 'pb_network_contact_form_title', + ] + ); + $wp_customize->add_setting( + 'pb_network_contact_email', [ + 'type' => 'option', + 'default' => get_option( 'admin_email', '' ), + 'sanitize_callback' => 'sanitize_email', + ] + ); + $wp_customize->add_control( + 'pb_network_contact_email', [ + 'label' => __( 'Contact Email', 'pressbooks-aldine' ), + 'section' => 'pb_network_contact_form', + 'settings' => 'pb_network_contact_email', + ] + ); } /** diff --git a/inc/filters/namespace.php b/inc/filters/namespace.php index 1eef590..1273614 100644 --- a/inc/filters/namespace.php +++ b/inc/filters/namespace.php @@ -7,8 +7,8 @@ namespace Aldine\Filters; -use PressbooksMix\Assets; use function Aldine\Helpers\has_sections; +use PressbooksMix\Assets; /** * Adds custom classes to the array of body classes. @@ -32,9 +32,11 @@ function body_classes( array $classes ) { } /** Clean up class names for custom templates */ - $classes = array_map( function ( $class ) { - return preg_replace( [ '/-php$/', '/^page-template-views/' ], '', $class ); - }, $classes ); + $classes = array_map( + function ( $class ) { + return preg_replace( [ '/-php$/', '/^page-template-views/' ], '', $class ); + }, $classes + ); return array_filter( $classes ); } diff --git a/inc/helpers/namespace.php b/inc/helpers/namespace.php index f74abe0..547458e 100644 --- a/inc/helpers/namespace.php +++ b/inc/helpers/namespace.php @@ -7,8 +7,8 @@ namespace Aldine\Helpers; -use Pressbooks\Book; use function \Pressbooks\Metadata\book_information_to_schema; +use Pressbooks\Book; /** * @param int $page @@ -22,7 +22,10 @@ use function \Pressbooks\Metadata\book_information_to_schema; function get_catalog_data( $page = 1, $per_page = 10, $orderby = 'title', $license = '', $subject = '' ) { if ( ! defined( 'PB_PLUGIN_VERSION' ) ) { - return [ 'pages' => 0, 'books' => [] ]; // Bail + return [ + 'pages' => 0, + 'books' => [], + ]; // Bail } /** @@ -91,7 +94,10 @@ function get_catalog_data( $page = 1, $per_page = 10, $orderby = 'title', $licen } } - return [ 'pages' => $total_pages, 'books' => $books ]; + return [ + 'pages' => $total_pages, + 'books' => $books, + ]; } @@ -226,9 +232,11 @@ function default_menu( $args = [], $items = '' ) { get_default_menu( $items ) ); if ( class_exists( '\PressbooksOAuth\OAuth' ) ) { - add_filter( 'pb_oauth_output_button', function( $bool ) { - return false; - } ); + add_filter( + 'pb_oauth_output_button', function( $bool ) { + return false; + } + ); do_action( 'pressbooks_oauth_connect' ); } } @@ -279,6 +287,7 @@ function handle_contact_form_submission() { } else { $sent = wp_mail( $contact_email, + /* translators: %s name of contact for submitter */ sprintf( __( 'Contact Form Submission from %s', 'pressbooks-aldine' ), $name ), sprintf( "From: %1\$s <%2\$s>\nInstitution: %3\$s\n\n%4\$s", diff --git a/inc/intervention.php b/inc/intervention.php index 9d2ed05..666befc 100644 --- a/inc/intervention.php +++ b/inc/intervention.php @@ -11,30 +11,34 @@ intervention( 'remove-customizer-items', 'static-front-page', 'all' ); intervention( 'remove-emoji' ); intervention( 'remove-howdy', __( 'Hello,', 'pressbooks-aldine' ) ); intervention( 'remove-dashboard-items', [ 'activity', 'quick-draft' ] ); -intervention( 'remove-menu-items', [ - 'posts', - 'tool-import', - 'tool-export', - 'setting-writing', - 'setting-reading', - 'setting-permalink', -], 'all' ); -intervention( 'remove-widgets', [ - 'pages', - 'calendar', - 'archives', - 'links', - 'media-audio', - 'meta', - 'search', - 'categories', - 'recent-posts', - 'recent-comments', - 'rss', - 'tag-cloud', - 'custom-menu', - 'custom-html', - 'media-video', - 'akismet', -], 'all' ); +intervention( + 'remove-menu-items', [ + 'posts', + 'tool-import', + 'tool-export', + 'setting-writing', + 'setting-reading', + 'setting-permalink', + ], 'all' +); +intervention( + 'remove-widgets', [ + 'pages', + 'calendar', + 'archives', + 'links', + 'media-audio', + 'meta', + 'search', + 'categories', + 'recent-posts', + 'recent-comments', + 'rss', + 'tag-cloud', + 'custom-menu', + 'custom-html', + 'media-video', + 'akismet', + ], 'all' +); intervention( 'remove-toolbar-frontend', 'all' ); diff --git a/index.php b/index.php index c7b8d50..772becb 100644 --- a/index.php +++ b/index.php @@ -20,16 +20,18 @@ get_header(); ?> + if ( is_home() && ! is_front_page() ) : + ?>

- get_template_part( 'template-parts/content', 'none' ); - endif; ?> + endif; + ?>
diff --git a/page-catalog.php b/page-catalog.php index c1669f6..a16ed35 100644 --- a/page-catalog.php +++ b/page-catalog.php @@ -9,10 +9,10 @@ * @package Aldine */ +use function Aldine\Helpers\get_available_licenses; +use function Aldine\Helpers\get_available_subjects; use function Aldine\Helpers\get_catalog_data; use function Aldine\Helpers\get_catalog_licenses; -use function Aldine\Helpers\get_available_subjects; -use function Aldine\Helpers\get_available_licenses; $current_page = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; $orderby = ( get_query_var( 'orderby' ) ) ? get_query_var( 'orderby' ) : 'title'; @@ -38,9 +38,9 @@ if ( ! empty( $catalog_data['books'] ) ) : -
- else : - while ( have_posts() ) : the_post(); + while ( have_posts() ) : + the_post(); get_template_part( 'partials/content', 'page' ); diff --git a/partials/book.php b/partials/book.php index 1f6210a..4445ace 100644 --- a/partials/book.php +++ b/partials/book.php @@ -1,29 +1,38 @@ -
  • data-date-published="" + + data-date-published="" data-license="getLicenseFromUrl( $book['metadata']['license']['url'] ); ?>" - data-subject="" + + data-subject="" > -

    +

    - +

    - */ ?> + */ + ?> -

    +

    "> -

    +

    -

    +

  • diff --git a/partials/contact-form.php b/partials/contact-form.php index e8d339a..67f7e10 100644 --- a/partials/contact-form.php +++ b/partials/contact-form.php @@ -23,33 +23,65 @@ $contact_form_response = \Aldine\Helpers\handle_contact_form_submission();

    - class="error" type="text" name="visitor_name" value="" required> + + class="error" type="text" name="visitor_name" value=" + + " required>

    - class="error" type="email" name="visitor_email" value="" required> + + class="error" type="email" name="visitor_email" value=" + + " required>

    - class="error" type="text" name="visitor_institution" value="" required> + + class="error" type="text" name="visitor_institution" value=" + + " required>

    - + diff --git a/partials/content-front-page.php b/partials/content-front-page.php index a33eca6..95d3c50 100644 --- a/partials/content-front-page.php +++ b/partials/content-front-page.php @@ -55,13 +55,22 @@ if ( get_option( 'pb_front_page_catalog' ) ) {

    -
    data-next-page=""> +
    + data-next-page="">
      - + endforeach; + ?>
    - +
    + if ( is_home() && current_user_can( 'publish_posts' ) ) : + ?> -

    +

    + ?> +

    @@ -39,12 +42,14 @@ + else : + ?>

    + endif; + ?>
    diff --git a/partials/content-page-catalog.php b/partials/content-page-catalog.php index e8a4263..6aae9a8 100644 --- a/partials/content-page-catalog.php +++ b/partials/content-page-catalog.php @@ -18,15 +18,19 @@ >
    - $val ) : - if ( array_key_exists( $key, $available_subjects ) ) : ?> + $val ) : + if ( array_key_exists( $key, $available_subjects ) ) : + ?>

    - $v ) : - if ( in_array( $k, $available_subjects[ $key ], true ) ) : ?> + $v ) : + if ( in_array( $k, $available_subjects[ $key ], true ) ) : + ?> > - - + +
    @@ -35,12 +39,16 @@

    > - $value ) : - if ( in_array( $key, $available_licenses, true ) ) : ?> + $value ) : + if ( in_array( $key, $available_licenses, true ) ) : + ?> > - +

    @@ -50,7 +58,8 @@ 'subject' => __( 'Subject', 'pressbooks-aldine' ), 'latest' => __( 'Latest', 'pressbooks-aldine' ), ]; - foreach ( $sorts as $key => $value ) { ?> + foreach ( $sorts as $key => $value ) { + ?> > @@ -59,26 +68,36 @@
      - + endforeach; + ?>
    1 ) : ?>
    diff --git a/partials/content.php b/partials/content.php index 4ca20eb..31d2ab2 100644 --- a/partials/content.php +++ b/partials/content.php @@ -18,34 +18,40 @@ the_title( '

    ', '

    ' ); endif; - if ( 'post' === get_post_type() ) : ?> + if ( 'post' === get_post_type() ) : + ?> - +
    "%s"', 'pressbooks-aldine' ), - [ - 'span' => [ - 'class' => [], - ], - ] - ), - get_the_title() - ) ); + the_content( + sprintf( + wp_kses( + /* translators: %s: Name of current post. Only visible to screen readers */ + __( 'Continue reading "%s"', 'pressbooks-aldine' ), + [ + 'span' => [ + 'class' => [], + ], + ] + ), + get_the_title() + ) + ); - wp_link_pages( [ - 'before' => '', - ] ); - ?> + wp_link_pages( + [ + 'before' => '', + ] + ); + ?>
    diff --git a/phpcs.ruleset.xml b/phpcs.ruleset.xml index cda7685..99b599a 100644 --- a/phpcs.ruleset.xml +++ b/phpcs.ruleset.xml @@ -1,41 +1,13 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + - functions.php + /functions.php - - - - functions.php + + /functions.php diff --git a/search.php b/search.php index a4a02bf..739d7d2 100644 --- a/search.php +++ b/search.php @@ -13,18 +13,22 @@ get_header(); ?>
    + if ( have_posts() ) : + ?> get_template_part( 'template-parts/content', 'none' ); - endif; ?> + endif; + ?>
    diff --git a/single.php b/single.php index e88ebde..711bce7 100644 --- a/single.php +++ b/single.php @@ -13,7 +13,8 @@ get_header(); ?>
    Date: Wed, 25 Jul 2018 13:05:45 -0400 Subject: [PATCH 15/35] Create a new book menu item (#132) For users created with SSO that have no books. blog = Logged in users may register new sites all = Both sites and user accounts can be registered --- inc/helpers/namespace.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/inc/helpers/namespace.php b/inc/helpers/namespace.php index 547458e..040cf2f 100644 --- a/inc/helpers/namespace.php +++ b/inc/helpers/namespace.php @@ -205,6 +205,12 @@ function get_default_menu( $items = '' ) { get_blogaddress_by_id( $user_info->primary_blog ) . 'wp-admin/index.php?page=pb_catalog', __( 'My Books', 'pressbooks-aldine' ) ); + } elseif ( in_array( get_site_option( 'registration' ), [ 'blog', 'all' ], true ) ) { + $items .= sprintf( + '
  • %2$s
  • ', + network_home_url( '/wp-signup.php' ), + __( 'Create a New Book', 'pressbooks-aldine' ) + ); } $items .= sprintf( '
  • %2$s
  • ', From 451fb76377ef79af803bd3d76add98a6a846bd52 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Wed, 25 Jul 2018 14:37:09 -0300 Subject: [PATCH 16/35] Bump PHP and dev version --- .travis.yml | 1 - composer.json | 4 ++-- composer.lock | 6 +++--- readme.txt | 12 +++++++++++- style.css | 2 +- 5 files changed, 17 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 65fada1..560050d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,6 @@ branches: - dev - "/^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(-(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(\\.(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\\+[0-9a-zA-Z-]+(\\.[0-9a-zA-Z-]+)*)?$/" php: -- 7.0 - 7.1 - 7.2 - nightly diff --git a/composer.json b/composer.json index ddcd334..002e3f2 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ }, "config": { "platform": { - "php": "7.0.27" + "php": "7.1" } }, "require": { - "php": ">=7", + "php": ">=7.1", "composer/installers": "~1.0", "pressbooks/mix": "^2.1", "soberwp/intervention": "1.2.0-p", diff --git a/composer.lock b/composer.lock index 8573413..366df91 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "055e0d205a16f08b328ff9d4e80e0bcf", + "content-hash": "37ffab9dc637176f12dc50facb30723b", "packages": [ { "name": "composer/installers", @@ -795,10 +795,10 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": ">=7" + "php": ">=7.1" }, "platform-dev": [], "platform-overrides": { - "php": "7.0.27" + "php": "7.1" } } diff --git a/readme.txt b/readme.txt index 212ce65..dc7d1de 100644 --- a/readme.txt +++ b/readme.txt @@ -38,6 +38,12 @@ TK. == Changelog == +=== 1.5.0 === + +**Minor Changes** + +- Add a new menu item to allow logged-in users without books to create a new book: [#132](https://github.com/pressbooks/pressbooks-aldine/pull/132) + === 1.4.0 === **Minor Changes** @@ -109,6 +115,10 @@ In addition, Aldine introduces a standalone catalog page that is sortable and fi You can now more easily add additional pages to the network root, such as an “About Us” or “Help” page. +== Upgrade Notice == + +- Aldine 1.5.0 requires PHP >= 7.1. + == Credits == -* Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) +- Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) diff --git a/style.css b/style.css index e2f2402..b09a58a 100644 --- a/style.css +++ b/style.css @@ -2,7 +2,7 @@ Theme Name: Aldine Theme URI: https://github.com/pressbooks/pressbooks-aldine/ Description: Aldine is the default theme for the home page of Pressbooks networks. It is named for the Aldine Press, founded by Aldus Manutius in 1494, who is regarded by many as the world’s first publisher. -Version: 1.4.0 +Version: 1.5.0-dev Author: Pressbooks (Book Oven Inc.) Author URI: https://pressbooks.org Text Domain: pressbooks-aldine From 883c97770918ff6379b5d5232f0f8aa1ce74bb08 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Wed, 25 Jul 2018 14:38:13 -0300 Subject: [PATCH 17/35] Update readme [ci skip] --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f93e30a..1d077cd 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,13 @@ TK. ## Changelog +# 1.5.0 + +**Minor Changes** + +- Add a new menu item to allow logged-in users without books to create a new book: [#132](https://github.com/pressbooks/pressbooks-aldine/pull/132) + + # 1.4.0 **Minor Changes** @@ -121,6 +128,11 @@ In addition, Aldine introduces a standalone catalog page that is sortable and fi You can now more easily add additional pages to the network root, such as an “About Us” or “Help” page. +## Upgrade Notice + +- Aldine 1.5.0 requires PHP >= 7.1. + + ## Credits -* Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) +- Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html) From e7e4b5106359d2dbbb87ac1e10f4d439ce74ec89 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 30 Jul 2018 13:05:02 -0300 Subject: [PATCH 18/35] Fix catalog subjects issue --- inc/helpers/namespace.php | 5 +++-- partials/book.php | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/inc/helpers/namespace.php b/inc/helpers/namespace.php index f74abe0..a76065c 100644 --- a/inc/helpers/namespace.php +++ b/inc/helpers/namespace.php @@ -7,8 +7,9 @@ namespace Aldine\Helpers; -use Pressbooks\Book; use function \Pressbooks\Metadata\book_information_to_schema; +use function \Pressbooks\Metadata\is_bisac; +use Pressbooks\Book; /** * @param int $page @@ -142,7 +143,7 @@ function get_available_licenses( $catalog_data ) { function get_available_subjects( $catalog_data ) { $subjects = []; foreach ( $catalog_data['books'] as $book ) { - if ( ! empty( $book['subject'] ) ) { + if ( ! empty( $book['subject'] ) && ! is_bisac( $book['subject'] ) ) { $subjects[ substr( $book['subject'], 0, 1 ) ][] = substr( $book['subject'], 0, 2 ); } } diff --git a/partials/book.php b/partials/book.php index 1f6210a..d49d9a7 100644 --- a/partials/book.php +++ b/partials/book.php @@ -1,6 +1,9 @@ - + -
  • Date: Mon, 30 Jul 2018 13:05:29 -0300 Subject: [PATCH 19/35] Ensure that unsupported catalog subjects aren't loaded (#133) We can't display BISAC subjects in a human-readable format, so we should apply the `is_bisac()` utility to ensure that we only attempt to display Thema subjects on the catalog and book cards within the catalog. --- inc/helpers/namespace.php | 3 ++- partials/book.php | 7 +++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/inc/helpers/namespace.php b/inc/helpers/namespace.php index 040cf2f..8f521ba 100644 --- a/inc/helpers/namespace.php +++ b/inc/helpers/namespace.php @@ -8,6 +8,7 @@ namespace Aldine\Helpers; use function \Pressbooks\Metadata\book_information_to_schema; +use function \Pressbooks\Metadata\is_bisac; use Pressbooks\Book; /** @@ -148,7 +149,7 @@ function get_available_licenses( $catalog_data ) { function get_available_subjects( $catalog_data ) { $subjects = []; foreach ( $catalog_data['books'] as $book ) { - if ( ! empty( $book['subject'] ) ) { + if ( ! empty( $book['subject'] ) && ! is_bisac( $book['subject'] ) ) { $subjects[ substr( $book['subject'], 0, 1 ) ][] = substr( $book['subject'], 0, 2 ); } } diff --git a/partials/book.php b/partials/book.php index 4445ace..6e37702 100644 --- a/partials/book.php +++ b/partials/book.php @@ -1,7 +1,10 @@ - +
  • Date: Mon, 30 Jul 2018 15:25:49 -0300 Subject: [PATCH 20/35] Bump version --- README.md | 8 +++++++- package.json | 2 +- readme.txt | 7 ++++++- style.css | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f93e30a..920b1d3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ **Requires at least:** 4.9.6 **Tested up to:** 4.9.6 -**Stable tag:** 1.4.0 +**Stable tag:** 1.4.1 **License:** GNU General Public License v3 or later **License URI:** LICENSE @@ -42,6 +42,12 @@ TK. ## Changelog +# 1.4.1 + +**Patches** + +- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133) + # 1.4.0 diff --git a/package.json b/package.json index 11f2c65..3205aec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pressbooks/pressbooks-aldine", - "version": "1.2.1", + "version": "1.4.1", "author": "Pressbooks (Book Oven Inc.) ", "homepage": "https://github.com/pressbooks/pressbooks-aldine/", "description": diff --git a/readme.txt b/readme.txt index 212ce65..14b50a1 100644 --- a/readme.txt +++ b/readme.txt @@ -16,7 +16,7 @@ Tags: publishing, catalog, pressbooks, default-theme Requires at least: 4.9.6 Tested up to: 4.9.6 -Stable tag: 1.4.0 +Stable tag: 1.4.1 License: GNU General Public License v3 or later License URI: LICENSE @@ -37,6 +37,11 @@ Aldine is the default theme for the home page of [Pressbooks](https://pressbooks TK. == Changelog == +=== 1.4.1 === + +**Patches** + +- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133) === 1.4.0 === diff --git a/style.css b/style.css index e2f2402..8fd5ca6 100644 --- a/style.css +++ b/style.css @@ -2,7 +2,7 @@ Theme Name: Aldine Theme URI: https://github.com/pressbooks/pressbooks-aldine/ Description: Aldine is the default theme for the home page of Pressbooks networks. It is named for the Aldine Press, founded by Aldus Manutius in 1494, who is regarded by many as the world’s first publisher. -Version: 1.4.0 +Version: 1.4.1 Author: Pressbooks (Book Oven Inc.) Author URI: https://pressbooks.org Text Domain: pressbooks-aldine From d06331e892c180c4bfba9c682ad76a5f14cd24bf Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 30 Jul 2018 15:27:54 -0300 Subject: [PATCH 21/35] Fix readme --- README.md | 12 ++++++------ readme.txt | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 92a7c46..9525c62 100644 --- a/README.md +++ b/README.md @@ -42,18 +42,18 @@ TK. ## Changelog -# 1.4.1 +# 1.5.0 -**Patches** +**Minor Changes** -- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133) +- Add a new menu item to allow logged-in users without books to create a new book: [#132](https://github.com/pressbooks/pressbooks-aldine/pull/132) -# 1.5.0 +# 1.4.1 -**Minor Changes** +**Patches** -- Add a new menu item to allow logged-in users without books to create a new book: [#132](https://github.com/pressbooks/pressbooks-aldine/pull/132) +- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133) # 1.4.0 diff --git a/readme.txt b/readme.txt index 1072b51..e491a36 100644 --- a/readme.txt +++ b/readme.txt @@ -37,18 +37,18 @@ Aldine is the default theme for the home page of [Pressbooks](https://pressbooks TK. == Changelog == -=== 1.4.1 === - -**Patches** - -- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133) - === 1.5.0 === **Minor Changes** - Add a new menu item to allow logged-in users without books to create a new book: [#132](https://github.com/pressbooks/pressbooks-aldine/pull/132) +=== 1.4.1 === + +**Patches** + +- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133) + === 1.4.0 === **Minor Changes** From d0fa0ba3b6d1031ceff002684cb651032f40bea2 Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Mon, 30 Jul 2018 15:28:12 -0300 Subject: [PATCH 22/35] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e50a1ed..1ffe257 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pressbooks/pressbooks-aldine", - "version": "1.4.1", + "version": "1.5.0", "author": "Pressbooks (Book Oven Inc.) ", "homepage": "https://github.com/pressbooks/pressbooks-aldine/", "description": From 6fefcce83570b853a4009198d25281ece0f8e9f6 Mon Sep 17 00:00:00 2001 From: Dac Chartrand Date: Thu, 20 Sep 2018 15:19:41 -0400 Subject: [PATCH 23/35] Simple honeypot (fixes #134) (#135) --- inc/helpers/namespace.php | 9 ++++++++- partials/contact-form.php | 7 +++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/inc/helpers/namespace.php b/inc/helpers/namespace.php index 8f521ba..cdb448e 100644 --- a/inc/helpers/namespace.php +++ b/inc/helpers/namespace.php @@ -9,6 +9,7 @@ namespace Aldine\Helpers; use function \Pressbooks\Metadata\book_information_to_schema; use function \Pressbooks\Metadata\is_bisac; +use function \Pressbooks\Utility\str_starts_with; use Pressbooks\Book; /** @@ -259,6 +260,12 @@ function handle_contact_form_submission() { return false; // Security check failed. } if ( isset( $_POST['submitted'] ) ) { + // Check the fake anti-spam honeypot field. + foreach ( $_POST as $pkey => $pval ) { + if ( str_starts_with( $pkey, 'firstname' ) && ! empty( $pval ) ) { + return false; // Honeypot failed. + } + } $contact_email = get_option( 'pb_network_contact_email', get_option( 'admin_email' ) ); $output = []; $name = ( isset( $_POST['visitor_name'] ) ) ? $_POST['visitor_name'] : ''; @@ -315,7 +322,7 @@ function handle_contact_form_submission() { } return $output; } - return; + return false; } /** diff --git a/partials/contact-form.php b/partials/contact-form.php index 67f7e10..c52baf2 100644 --- a/partials/contact-form.php +++ b/partials/contact-form.php @@ -11,6 +11,7 @@ $pb_network_contact_form_title = get_option( 'pb_network_contact_form_title' ); $contact_form_title = ( ! empty( $pb_network_contact_form_title ) ) ? $pb_network_contact_form_title : __( 'Contact Us', 'pressbooks-aldine' ); $contact_form_response = \Aldine\Helpers\handle_contact_form_submission(); +$honeypot = 'firstname' . rand(); ?> @@ -22,6 +23,12 @@ $contact_form_response = \Aldine\Helpers\handle_contact_form_submission(); +

    Date: Thu, 20 Sep 2018 16:27:06 -0300 Subject: [PATCH 24/35] Update versions and readme --- README.md | 7 ++++--- footer.php | 6 +++--- readme.txt | 7 ++++--- style.css | 2 +- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9525c62..af6ceaa 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,9 @@ [![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&color=brightgreen)](https://opencollective.com/pressbooks/) **Tags:** publishing, catalog, pressbooks, default-theme -**Requires at least:** 4.9.6 -**Tested up to:** 4.9.6 -**Stable tag:** 1.4.1 +**Requires at least:** 4.9.8 +**Tested up to:** 4.9.8 +**Stable tag:** 1.5.0 **License:** GNU General Public License v3 or later **License URI:** LICENSE @@ -47,6 +47,7 @@ TK. **Minor Changes** - Add a new menu item to allow logged-in users without books to create a new book: [#132](https://github.com/pressbooks/pressbooks-aldine/pull/132) +- Add simple honeypot to contact form ([#134](https://github.com/pressbooks/pressbooks-aldine/issues/134)): [#135](https://github.com/pressbooks/pressbooks-aldine/pull/135) # 1.4.1 diff --git a/footer.php b/footer.php index 46e5f10..fcf0390 100644 --- a/footer.php +++ b/footer.php @@ -76,10 +76,10 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );