Browse Source

Merge branch 'dev' into gutenberg

pull/46/head
Ned Zimmerman 7 years ago
parent
commit
eca94092f2
  1. 15
      .distignore
  2. 0
      .github/move.yml
  3. 16
      .github/support.yml
  4. 10
      .travis.yml
  5. 54
      README.md
  6. 9
      archive.php
  7. 12
      assets/scripts/page-section.js
  8. 21
      comments.php
  9. 10
      composer.json
  10. 191
      composer.lock
  11. 28
      footer.php
  12. 15
      functions.php
  13. 36
      header.php
  14. 124
      inc/actions/namespace.php
  15. 15
      inc/activation/namespace.php
  16. 8
      inc/admin/namespace.php
  17. 290
      inc/customizer/namespace.php
  18. 10
      inc/filters/namespace.php
  19. 39
      inc/helpers/namespace.php
  20. 55
      inc/intervention.php
  21. 11
      index.php
  22. 180
      languages/ar.po
  23. 180
      languages/ca.po
  24. 180
      languages/cs.po
  25. 180
      languages/cs_CZ.po
  26. 180
      languages/da_DK.po
  27. 180
      languages/de_CH.po
  28. BIN
      languages/de_DE.mo
  29. 198
      languages/de_DE.po
  30. 180
      languages/el.po
  31. 180
      languages/en_CA.po
  32. 180
      languages/en_GB.po
  33. 180
      languages/es_ES.po
  34. 180
      languages/et.po
  35. 180
      languages/eu.po
  36. BIN
      languages/fr_FR.mo
  37. 185
      languages/fr_FR.po
  38. BIN
      languages/gl_ES.mo
  39. 199
      languages/gl_ES.po
  40. BIN
      languages/he.mo
  41. 305
      languages/he.po
  42. BIN
      languages/hu_HU.mo
  43. 350
      languages/hu_HU.po
  44. BIN
      languages/it_IT.mo
  45. 377
      languages/it_IT.po
  46. 180
      languages/ja.po
  47. 180
      languages/ka_GE.po
  48. 180
      languages/kk@Cyrl.po
  49. 180
      languages/km_KH.po
  50. 180
      languages/ko.po
  51. BIN
      languages/lt_LT.mo
  52. 567
      languages/lt_LT.po
  53. 180
      languages/nb_NO.po
  54. 180
      languages/nl_NL.po
  55. 180
      languages/no.po
  56. 180
      languages/pl.po
  57. 180
      languages/pressbooks-aldine.pot
  58. 180
      languages/pt_BR.po
  59. 180
      languages/pt_PT.po
  60. 180
      languages/ro.po
  61. 180
      languages/ru_RU.po
  62. 180
      languages/sk_SK.po
  63. 180
      languages/sv_SE.po
  64. 180
      languages/ta_IN.po
  65. 180
      languages/ta_LK.po
  66. 180
      languages/tr_TR.po
  67. 180
      languages/uk.po
  68. 180
      languages/zh.po
  69. 180
      languages/zh_CN.po
  70. 180
      languages/zh_TW.po
  71. 6121
      package-lock.json
  72. 6
      package.json
  73. 10
      page-catalog.php
  74. 9
      page.php
  75. 32
      partials/book.php
  76. 63
      partials/contact-form.php
  77. 17
      partials/content-front-page.php
  78. 15
      partials/content-none.php
  79. 57
      partials/content-page-catalog.php
  80. 12
      partials/content-page.php
  81. 46
      partials/content.php
  82. 40
      phpcs.ruleset.xml
  83. 48
      readme.txt
  84. 15
      search.php
  85. 3
      single.php
  86. 2
      style.css
  87. 423
      yarn.lock

15
.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

0
.github/move.yml

16
.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

10
.travis.yml

@ -11,7 +11,6 @@ branches:
- dev - 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-]+)*)?$/" - "/^(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: php:
- 7.0
- 7.1 - 7.1
- 7.2 - 7.2
- nightly - nightly
@ -43,12 +42,13 @@ script:
- composer test - composer test
before_deploy: before_deploy:
- export TRAVIS_PROJECT_SLUG="$(basename $TRAVIS_BUILD_DIR)" - 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 - composer install --no-dev --optimize-autoloader
- cd ../ - cd ../
- zip -9 -ry $TRAVIS_BUILD_DIR/$TRAVIS_PROJECT_SLUG-$TRAVIS_TAG.zip $TRAVIS_PROJECT_SLUG - wp dist-archive $TRAVIS_PROJECT_SLUG $TRAVIS_BUILD_DIR/$TRAVIS_PROJECT_SLUG-$TRAVIS_TAG.zip
-x *.git* *assets/\* *node_modules/\* *tests/\* *.editorconfig* *.gitattributes*
*.github* *.gitignore* *.travis.yml* *package-lock.json* *phpcs.xml* *webpack.mix.js*
*yarn.lock*
- cd $TRAVIS_BUILD_DIR - cd $TRAVIS_BUILD_DIR
deploy: deploy:
provider: releases provider: releases

54
README.md

@ -14,9 +14,9 @@
[![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&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 **Requires at least:** 4.9.8
**Tested up to:** 4.9.4 **Tested up to:** 4.9.8
**Stable tag:** 1.2.1 **Stable tag:** 1.5.0
**License:** GNU General Public License v3 or later **License:** GNU General Public License v3 or later
**License URI:** LICENSE **License URI:** LICENSE
@ -42,6 +42,47 @@ TK.
## Changelog ## Changelog
# 1.6.0
**Minor Changes**
**Patches**
# 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)
- 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
**Patches**
- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133)
# 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**
- 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 # 1.2.1
@ -101,6 +142,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. 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 ## 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)

9
archive.php

@ -13,7 +13,8 @@ get_header(); ?>
<main id="main" class="site-main"> <main id="main" class="site-main">
<?php <?php
if ( have_posts() ) : ?> if ( have_posts() ) :
?>
<header class="page-header"> <header class="page-header">
<?php <?php
@ -24,7 +25,8 @@ get_header(); ?>
<?php <?php
/* Start the Loop */ /* Start the Loop */
while ( have_posts() ) : the_post(); while ( have_posts() ) :
the_post();
/* /*
* Include the Post-Format-specific template for the content. * Include the Post-Format-specific template for the content.
@ -41,7 +43,8 @@ get_header(); ?>
get_template_part( 'template-parts/content', 'none' ); get_template_part( 'template-parts/content', 'none' );
endif; ?> endif;
?>
</main><!-- #main --> </main><!-- #main -->
</div><!-- #primary --> </div><!-- #primary -->

12
assets/scripts/page-section.js

@ -20,16 +20,20 @@
label: 'Variant', label: 'Variant',
values: [ 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 value: '', // Sets the default

21
comments.php

@ -24,7 +24,8 @@ if ( post_password_required() ) {
<?php <?php
// You can start editing here -- including this comment! // You can start editing here -- including this comment!
if ( have_comments() ) : ?> if ( have_comments() ) :
?>
<h2 class="comments-title"> <h2 class="comments-title">
<?php <?php
$comment_count = get_comments_number(); $comment_count = get_comments_number();
@ -49,19 +50,23 @@ if ( post_password_required() ) {
<ol class="comment-list"> <ol class="comment-list">
<?php <?php
wp_list_comments( [ wp_list_comments(
'style' => 'ol', [
'short_ping' => true, 'style' => 'ol',
] ); 'short_ping' => true,
]
);
?> ?>
</ol><!-- .comment-list --> </ol><!-- .comment-list -->
<?php the_comments_navigation(); <?php
the_comments_navigation();
// If comments are closed and there are comments, let's leave a little note, shall we? // If comments are closed and there are comments, let's leave a little note, shall we?
if ( ! comments_open() ) : ?> if ( ! comments_open() ) :
?>
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'pressbooks-aldine' ); ?></p> <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'pressbooks-aldine' ); ?></p>
<?php <?php
endif; endif;
endif; // Check for have_comments(). endif; // Check for have_comments().

10
composer.json

@ -17,16 +17,20 @@
"issues": "https://github.com/pressbooks/pressbooks-aldine/issues", "issues": "https://github.com/pressbooks/pressbooks-aldine/issues",
"forum": "https://discourse.pressbooks.org/" "forum": "https://discourse.pressbooks.org/"
}, },
"config": {
"platform": {
"php": "7.1"
}
},
"require": { "require": {
"php": ">=7", "php": ">=7.1",
"composer/installers": "~1.0", "composer/installers": "~1.0",
"pressbooks/mix": "^2.1", "pressbooks/mix": "^2.1",
"soberwp/intervention": "1.2.0-p", "soberwp/intervention": "1.2.0-p",
"spatie/color": "^1.1" "spatie/color": "^1.1"
}, },
"require-dev": { "require-dev": {
"humanmade/coding-standards": "^0.2.1", "pressbooks/coding-standards": "dev-master",
"squizlabs/php_codesniffer": "^2.8.0",
"wpreadme2markdown/wp2md": "^3.0" "wpreadme2markdown/wp2md": "^3.0"
}, },
"scripts": { "scripts": {

191
composer.lock generated

@ -1,23 +1,23 @@
{ {
"_readme": [ "_readme": [
"This file locks the dependencies of your project to a known state", "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" "This file is @generated automatically"
], ],
"content-hash": "edad2ef6112644b56c39a416914d8b0f", "content-hash": "37ffab9dc637176f12dc50facb30723b",
"packages": [ "packages": [
{ {
"name": "composer/installers", "name": "composer/installers",
"version": "v1.5.0", "version": "v1.6.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/composer/installers.git", "url": "https://github.com/composer/installers.git",
"reference": "049797d727261bf27f2690430d935067710049c2" "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2", "url": "https://api.github.com/repos/composer/installers/zipball/cfcca6b1b60bc4974324efb5783c13dca6932b5b",
"reference": "049797d727261bf27f2690430d935067710049c2", "reference": "cfcca6b1b60bc4974324efb5783c13dca6932b5b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -124,7 +124,7 @@
"zend", "zend",
"zikula" "zikula"
], ],
"time": "2017-12-29T09:13:20+00:00" "time": "2018-08-27T06:10:37+00:00"
}, },
{ {
"name": "pressbooks/mix", "name": "pressbooks/mix",
@ -262,27 +262,27 @@
"packages-dev": [ "packages-dev": [
{ {
"name": "fig-r/psr2r-sniffer", "name": "fig-r/psr2r-sniffer",
"version": "0.3.1", "version": "0.5.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/php-fig-rectified/psr2r-sniffer.git", "url": "https://github.com/php-fig-rectified/psr2r-sniffer.git",
"reference": "cdf61b2922efb225903e52c6222d7192d3b97ebf" "reference": "ff4659fdb1ce8832a9e408a6e22aa05bc93efe10"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-fig-rectified/psr2r-sniffer/zipball/cdf61b2922efb225903e52c6222d7192d3b97ebf", "url": "https://api.github.com/repos/php-fig-rectified/psr2r-sniffer/zipball/ff4659fdb1ce8832a9e408a6e22aa05bc93efe10",
"reference": "cdf61b2922efb225903e52c6222d7192d3b97ebf", "reference": "ff4659fdb1ce8832a9e408a6e22aa05bc93efe10",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.4.16", "php": ">=5.4.16",
"squizlabs/php_codesniffer": "~2.3" "squizlabs/php_codesniffer": "^3.0"
}, },
"bin": [ "bin": [
"bin/tokenize", "bin/tokenize",
"bin/sniff" "bin/sniff"
], ],
"type": "library", "type": "phpcodesniffer-standard",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"PSR2R\\": "PSR2R" "PSR2R\\": "PSR2R"
@ -300,33 +300,70 @@
} }
], ],
"description": "Code-Sniffer, Auto-Fixer and Tokenizer for PSR2-R", "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", "name": "humanmade/coding-standards",
"version": "0.2.2", "version": "v0.5.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/humanmade/coding-standards.git", "url": "https://github.com/humanmade/coding-standards.git",
"reference": "f3974696bf139eb17049ae0ced114cbee1f86b20" "reference": "b35747249bcc727a9eff22f746aaf9758d8a90ce"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/humanmade/coding-standards/zipball/f3974696bf139eb17049ae0ced114cbee1f86b20", "url": "https://api.github.com/repos/humanmade/coding-standards/zipball/b35747249bcc727a9eff22f746aaf9758d8a90ce",
"reference": "f3974696bf139eb17049ae0ced114cbee1f86b20", "reference": "b35747249bcc727a9eff22f746aaf9758d8a90ce",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"fig-r/psr2r-sniffer": "^0.3.1", "fig-r/psr2r-sniffer": "^0.5.0",
"wp-coding-standards/wpcs": "^0.10.0" "squizlabs/php_codesniffer": "^3.1",
"wp-coding-standards/wpcs": "^0.14.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
}, },
"type": "project", "type": "project",
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"GPL-2.0" "GPL-2.0-or-later"
], ],
"description": "Human Made coding standards", "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", "name": "psr/log",
@ -377,64 +414,37 @@
}, },
{ {
"name": "squizlabs/php_codesniffer", "name": "squizlabs/php_codesniffer",
"version": "2.9.1", "version": "3.3.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
"reference": "dcbed1074f8244661eecddfc2a675430d8d33f62" "reference": "d86873af43b4aa9d1f39a3601cc0cfcf02b25266"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dcbed1074f8244661eecddfc2a675430d8d33f62", "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/d86873af43b4aa9d1f39a3601cc0cfcf02b25266",
"reference": "dcbed1074f8244661eecddfc2a675430d8d33f62", "reference": "d86873af43b4aa9d1f39a3601cc0cfcf02b25266",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-simplexml": "*", "ext-simplexml": "*",
"ext-tokenizer": "*", "ext-tokenizer": "*",
"ext-xmlwriter": "*", "ext-xmlwriter": "*",
"php": ">=5.1.2" "php": ">=5.4.0"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~4.0" "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
}, },
"bin": [ "bin": [
"scripts/phpcs", "bin/phpcs",
"scripts/phpcbf" "bin/phpcbf"
], ],
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "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/", "notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"BSD-3-Clause" "BSD-3-Clause"
@ -451,20 +461,20 @@
"phpcs", "phpcs",
"standards" "standards"
], ],
"time": "2017-05-22T02:43:20+00:00" "time": "2018-06-06T23:58:19+00:00"
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v3.4.3", "version": "v3.4.13",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d" "reference": "e54f84c50e3b12972e7750edfc5ca84b2284c44e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/8394c8ef121949e8f858f13bc1e34f05169e4e7d", "url": "https://api.github.com/repos/symfony/console/zipball/e54f84c50e3b12972e7750edfc5ca84b2284c44e",
"reference": "8394c8ef121949e8f858f13bc1e34f05169e4e7d", "reference": "e54f84c50e3b12972e7750edfc5ca84b2284c44e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -485,7 +495,7 @@
"symfony/process": "~3.3|~4.0" "symfony/process": "~3.3|~4.0"
}, },
"suggest": { "suggest": {
"psr/log": "For using the console logger", "psr/log-implementation": "For using the console logger",
"symfony/event-dispatcher": "", "symfony/event-dispatcher": "",
"symfony/lock": "", "symfony/lock": "",
"symfony/process": "" "symfony/process": ""
@ -520,20 +530,20 @@
], ],
"description": "Symfony Console Component", "description": "Symfony Console Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-03T07:37:34+00:00" "time": "2018-07-10T14:02:11+00:00"
}, },
{ {
"name": "symfony/debug", "name": "symfony/debug",
"version": "v3.4.3", "version": "v3.4.13",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/debug.git", "url": "https://github.com/symfony/debug.git",
"reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245" "reference": "0e3ca9cbde90fffec8038f4d4e16fd4046bbd018"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/debug/zipball/603b95dda8b00020e4e6e60dc906e7b715b1c245", "url": "https://api.github.com/repos/symfony/debug/zipball/0e3ca9cbde90fffec8038f4d4e16fd4046bbd018",
"reference": "603b95dda8b00020e4e6e60dc906e7b715b1c245", "reference": "0e3ca9cbde90fffec8038f4d4e16fd4046bbd018",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -576,20 +586,20 @@
], ],
"description": "Symfony Debug Component", "description": "Symfony Debug Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-03T17:14:19+00:00" "time": "2018-06-26T08:45:54+00:00"
}, },
{ {
"name": "symfony/polyfill-mbstring", "name": "symfony/polyfill-mbstring",
"version": "v1.6.0", "version": "v1.8.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git", "url": "https://github.com/symfony/polyfill-mbstring.git",
"reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296" "reference": "3296adf6a6454a050679cde90f95350ad604b171"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/3296adf6a6454a050679cde90f95350ad604b171",
"reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", "reference": "3296adf6a6454a050679cde90f95350ad604b171",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -601,7 +611,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.6-dev" "dev-master": "1.8-dev"
} }
}, },
"autoload": { "autoload": {
@ -635,26 +645,30 @@
"portable", "portable",
"shim" "shim"
], ],
"time": "2017-10-11T12:05:26+00:00" "time": "2018-04-26T10:06:28+00:00"
}, },
{ {
"name": "wp-coding-standards/wpcs", "name": "wp-coding-standards/wpcs",
"version": "0.10.0", "version": "0.14.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git", "url": "https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git",
"reference": "b39490465f6fd7375743a395019cd597e12119c9" "reference": "cf6b310caad735816caef7573295f8a534374706"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/WordPress-Coding-Standards/WordPress-Coding-Standards/zipball/b39490465f6fd7375743a395019cd597e12119c9", "url": "https://api.github.com/repos/WordPress-Coding-Standards/WordPress-Coding-Standards/zipball/cf6b310caad735816caef7573295f8a534374706",
"reference": "b39490465f6fd7375743a395019cd597e12119c9", "reference": "cf6b310caad735816caef7573295f8a534374706",
"shasum": "" "shasum": ""
}, },
"require": { "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/", "notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"MIT" "MIT"
@ -671,7 +685,7 @@
"standards", "standards",
"wordpress" "wordpress"
], ],
"time": "2016-08-29T20:04:47+00:00" "time": "2018-02-16T01:57:48+00:00"
}, },
{ {
"name": "wpreadme2markdown/wp2md", "name": "wpreadme2markdown/wp2md",
@ -775,11 +789,16 @@
], ],
"aliases": [], "aliases": [],
"minimum-stability": "stable", "minimum-stability": "stable",
"stability-flags": [], "stability-flags": {
"pressbooks/coding-standards": 20
},
"prefer-stable": false, "prefer-stable": false,
"prefer-lowest": false, "prefer-lowest": false,
"platform": { "platform": {
"php": ">=7" "php": ">=7.1"
}, },
"platform-dev": [] "platform-dev": [],
"platform-overrides": {
"php": "7.1"
}
} }

28
footer.php

@ -20,9 +20,11 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );
</div><!-- #content --> </div><!-- #content -->
<?php if ( $pb_network_contact_form ) : <?php
if ( $pb_network_contact_form ) :
include( locate_template( 'partials/contact-form.php' ) ); include( locate_template( 'partials/contact-form.php' ) );
endif; ?> endif;
?>
<footer class="footer" role="contentinfo"> <footer class="footer" role="contentinfo">
<div class="footer__inner"> <div class="footer__inner">
@ -37,18 +39,22 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );
<?php dynamic_sidebar( 'network-footer-block-2' ); ?> <?php dynamic_sidebar( 'network-footer-block-2' ); ?>
<div class="social-media"> <div class="social-media">
<?php if ( ! empty( $network_facebook ) ) { ?> <?php if ( ! empty( $network_facebook ) ) { ?>
<?php /* translators: %s network name */ ?>
<a class="facebook" href="<?php echo $network_facebook; ?>" title="<?php printf( __( '%s on Facebook', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?>"> <a class="facebook" href="<?php echo $network_facebook; ?>" title="<?php printf( __( '%s on Facebook', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?>">
<svg class="icon--svg"> <svg class="icon--svg">
<use xlink:href="#facebook" /> <use xlink:href="#facebook" />
</svg> </svg>
<?php /* translators: %s network name */ ?>
<span class="screen-reader-text"><?php printf( __( '%s on Facebook', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span> <span class="screen-reader-text"><?php printf( __( '%s on Facebook', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span>
</a> </a>
<?php } ?> <?php } ?>
<?php if ( ! empty( $network_twitter ) ) { ?> <?php if ( ! empty( $network_twitter ) ) { ?>
<?php /* translators: %s network name */ ?>
<a class="twitter" href="<?php echo $network_twitter; ?>" title="<?php printf( __( '%s on Twitter', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?>"> <a class="twitter" href="<?php echo $network_twitter; ?>" title="<?php printf( __( '%s on Twitter', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?>">
<svg class="icon--svg"> <svg class="icon--svg">
<use xlink:href="#twitter" /> <use xlink:href="#twitter" />
</svg> </svg>
<?php /* translators: %s network name */ ?>
<span class="screen-reader-text"><?php printf( __( '%s on Twitter', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span> <span class="screen-reader-text"><?php printf( __( '%s on Twitter', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span>
</a> </a>
<?php } ?> <?php } ?>
@ -60,22 +66,23 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );
</div> </div>
</div> </div>
<section class="footer__pressbooks"> <section class="footer__pressbooks">
<a class="footer__pressbooks__icon" href="https://pressbooks.com" title="Pressbooks"> <a class="footer__pressbooks__icon" href="https://pressbooks.com" title="Pressbooks">
<?php // TODO ?> <?php // TODO ?>
<svg class="icon--svg"> <svg class="icon--svg">
<use xlink:href="#icon-pressbooks" /> <use xlink:href="#icon-pressbooks" />
</svg> </svg>
</a> </a>
<div class="footer__pressbooks__links"> <div class="footer__pressbooks__links">
<?php /* translators: %s Pressbooks */ ?>
<p class="footer__pressbooks__links__title"><a href="https://pressbooks.com"><?php printf( __( 'Powered by %s', 'pressbooks-aldine' ), '<span class="pressbooks">Pressbooks</span>' ); ?></a></p> <p class="footer__pressbooks__links__title"><a href="https://pressbooks.com"><?php printf( __( 'Powered by %s', 'pressbooks-aldine' ), '<span class="pressbooks">Pressbooks</span>' ); ?></a></p>
<ul class="footer__pressbooks__links__list"> <ul class="footer__pressbooks__links__list">
<li><a href="https://pressbooks.org"><?php _e( 'Open Source', 'pressbooks-aldine' ); ?></a> |</li> <li><a href="https://pressbooks.org/"><?php _e( 'Open Source', 'pressbooks-aldine' ); ?></a> |</li>
<li><a href="https://pressbooks.education/"><?php _e( 'Open Textbooks', 'pressbooks-aldine' ); ?></a> |</li> <li><a href="https://pressbooks.education/"><?php _e( 'Open Textbooks', 'pressbooks-aldine' ); ?></a> |</li>
<li><a href="https://pressbooks.com"><?php _e( 'Open Book Publishing', 'pressbooks-aldine' ); ?></a> |</li> <li><a href="https://pressbooks.com/"><?php _e( 'Open Book Publishing', 'pressbooks-aldine' ); ?></a> |</li>
<li><a href="https://pressbooks.education/about"><?php _e( 'Learn More', 'pressbooks-aldine' ); ?></a> </li> <li><a href="https://pressbooks.education/about/"><?php _e( 'Learn More', 'pressbooks-aldine' ); ?></a> </li>
</ul> </ul>
</div> </div>
<div class="footer__pressbooks__social"> <div class="footer__pressbooks__social">
<a class="facebook" href="https://facebook.com/pressbooks2" title="<?php _e( 'Pressbooks on Facebook', 'pressbooks-aldine' ); ?>"> <a class="facebook" href="https://facebook.com/pressbooks2" title="<?php _e( 'Pressbooks on Facebook', 'pressbooks-aldine' ); ?>">
<svg class="icon--svg"> <svg class="icon--svg">
<use xlink:href="#facebook" /> <use xlink:href="#facebook" />
@ -88,7 +95,6 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );
</svg> </svg>
<span class="screen-reader-text"><?php _e( 'Pressbooks on Twitter', 'pressbooks-aldine' ); ?></span></a> <span class="screen-reader-text"><?php _e( 'Pressbooks on Twitter', 'pressbooks-aldine' ); ?></span></a>
</div> </div>
</section> </section>
</div><!-- .container --> </div><!-- .container -->
</footer><!-- .footer --> </footer><!-- .footer -->

15
functions.php

@ -13,11 +13,13 @@
if ( ! class_exists( 'Spatie\\Color\\Hex' ) ) { if ( ! class_exists( 'Spatie\\Color\\Hex' ) ) {
$composer = get_template_directory() . '/vendor/autoload.php'; $composer = get_template_directory() . '/vendor/autoload.php';
if ( ! file_exists( $composer ) ) { if ( ! file_exists( $composer ) ) {
wp_die( sprintf( wp_die(
'<h1>%1$s</h1><p>%2$s</p>', sprintf(
__( 'Dependencies Missing', 'pressbooks-aldine' ), '<h1>%1$s</h1><p>%2$s</p>',
__( 'You must run <code>composer install</code> from the Aldine directory.', 'pressbooks-aldine' ) __( 'Dependencies Missing', 'pressbooks-aldine' ),
) ); __( 'You must run <code>composer install</code> from the Aldine directory.', 'pressbooks-aldine' )
)
);
} }
require_once $composer; require_once $composer;
} }
@ -74,3 +76,6 @@ add_action( 'wp_ajax_pressbooks_aldine_update_catalog', '\Aldine\Admin\update_ca
add_filter( 'wpmu_blogs_columns', '\Aldine\Admin\catalog_columns' ); add_filter( 'wpmu_blogs_columns', '\Aldine\Admin\catalog_columns' );
add_action( 'manage_blogs_custom_column', '\Aldine\Admin\catalog_column', 1, 3 ); add_action( 'manage_blogs_custom_column', '\Aldine\Admin\catalog_column', 1, 3 );
add_action( 'manage_sites_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' );

36
header.php

@ -42,7 +42,8 @@
</svg> </svg>
<div id="page" class="site"> <div id="page" class="site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'pressbooks-aldine' ); ?></a> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'pressbooks-aldine' ); ?></a>
<header class="header" role="banner" style="background-image: url(<?php <header class="header" role="banner" style="background-image: url(
<?php
if ( is_front_page() ) { if ( is_front_page() ) {
if ( has_header_image() ) { if ( has_header_image() ) {
echo( get_header_image() ); echo( get_header_image() );
@ -51,18 +52,23 @@
} }
} else { } else {
echo get_template_directory_uri() . '/dist/images/catalog-header.jpg'; echo get_template_directory_uri() . '/dist/images/catalog-header.jpg';
} ?>);"> }
?>
);">
<div class="header__inside"> <div class="header__inside">
<div class="header__brand"> <div class="header__brand">
<a title="<?php echo get_bloginfo( 'name', 'display' ); ?>" href="<?php echo network_home_url(); ?>"> <a title="<?php echo get_bloginfo( 'name', 'display' ); ?>" href="<?php echo network_home_url(); ?>">
<?php if ( has_custom_logo() ) { ?> <?php if ( has_custom_logo() ) { ?>
<?php $custom_logo_id = get_theme_mod( 'custom_logo' ); <?php
$custom_logo_id = get_theme_mod( 'custom_logo' );
printf( printf(
'<img class="header__logo--img" src="%1$s" srcset="%2$s" alt="%3$s" />', '<img class="header__logo--img" src="%1$s" srcset="%2$s" alt="%3$s" />',
wp_get_attachment_image_src( $custom_logo_id, 'logo' )[0], wp_get_attachment_image_src( $custom_logo_id, 'logo' )[0],
wp_get_attachment_image_srcset( $custom_logo_id, 'large' ), wp_get_attachment_image_srcset( $custom_logo_id, 'large' ),
/* translators: %s name of network */
sprintf( __( 'Logo for %s', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ) sprintf( __( 'Logo for %s', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) )
); ?> );
?>
<?php } else { ?> <?php } else { ?>
<svg class="header__logo--svg"> <svg class="header__logo--svg">
<use xlink:href="#logo-pressbooks" /> <use xlink:href="#logo-pressbooks" />
@ -72,15 +78,19 @@
</div> </div>
<div class="header__nav"> <div class="header__nav">
<a class="header__nav-icon js-header-nav-toggle" href="#navigation"><?php _e( 'Toggle Menu', 'pressbooks-aldine' ); ?><span class="header__nav-icon__icon"></span></a> <a class="header__nav-icon js-header-nav-toggle" href="#navigation"><?php _e( 'Toggle Menu', 'pressbooks-aldine' ); ?><span class="header__nav-icon__icon"></span></a>
<?php wp_nav_menu( [ <?php
'theme_location' => 'primary-menu', wp_nav_menu(
'fallback_cb' => '\Aldine\Helpers\default_menu', [
'container' => 'nav', 'theme_location' => 'primary-menu',
'container_class' => 'js-header-nav', 'fallback_cb' => '\Aldine\Helpers\default_menu',
'container_id' => 'navigation', 'container' => 'nav',
'menu_id' => 'nav-primary-menu', 'container_class' => 'js-header-nav',
'menu_class' => 'nav--primary', 'container_id' => 'navigation',
] ); ?> 'menu_id' => 'nav-primary-menu',
'menu_class' => 'nav--primary',
]
);
?>
</div> </div>
</div> </div>
</header> <!-- .header --> </header> <!-- .header -->

124
inc/actions/namespace.php

@ -6,10 +6,8 @@
namespace Aldine\Actions; namespace Aldine\Actions;
use Spatie\Color\Hex;
use Spatie\Color\Rgb;
use Spatie\Color\Rgba;
use PressbooksMix\Assets; use PressbooksMix\Assets;
use Spatie\Color\Hex;
/** /**
* Sets up theme defaults and registers support for various WordPress features. * Sets up theme defaults and registers support for various WordPress features.
@ -44,30 +42,36 @@ function setup() {
add_theme_support( 'post-thumbnails' ); add_theme_support( 'post-thumbnails' );
// This theme uses wp_nav_menu() in two locations. // This theme uses wp_nav_menu() in two locations.
register_nav_menus( [ register_nav_menus(
'primary-menu' => __( 'Primary Menu', 'pressbooks-aldine' ), [
'network-footer-menu' => __( 'Footer Menu', 'pressbooks-aldine' ), 'primary-menu' => __( 'Primary Menu', 'pressbooks-aldine' ),
] ); 'network-footer-menu' => __( 'Footer Menu', 'pressbooks-aldine' ),
]
);
/* /*
* Switch default core markup for search form, comment form, and comments * Switch default core markup for search form, comment form, and comments
* to output valid HTML5. * to output valid HTML5.
*/ */
add_theme_support( 'html5', [ add_theme_support(
'search-form', 'html5', [
'comment-form', 'search-form',
'comment-list', 'comment-form',
'gallery', 'comment-list',
'caption', 'gallery',
] ); 'caption',
]
);
// Set up the WordPress core custom header feature. // Set up the WordPress core custom header feature.
add_theme_support( 'custom-header', [ add_theme_support(
'default-image' => get_template_directory_uri() . '/dist/images/header.jpg', 'custom-header', [
'width' => 1920, 'default-image' => get_template_directory_uri() . '/dist/images/header.jpg',
'height' => 884, 'width' => 1920,
'default-text-color' => '#000', 'height' => 884,
] ); 'default-text-color' => '#000',
]
);
// Add theme support for selective refresh for widgets. // Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' ); add_theme_support( 'customize-selective-refresh-widgets' );
@ -77,12 +81,14 @@ function setup() {
* *
* @link https://codex.wordpress.org/Theme_Logo * @link https://codex.wordpress.org/Theme_Logo
*/ */
add_theme_support( 'custom-logo', [ add_theme_support(
'height' => 40, 'custom-logo', [
'width' => 265, 'height' => 40,
'flex-width' => true, 'width' => 265,
'flex-height' => true, 'flex-width' => true,
] ); 'flex-height' => true,
]
);
// Add editor style. // Add editor style.
add_editor_style( $assets->getPath( 'styles/editor.css' ) ); add_editor_style( $assets->getPath( 'styles/editor.css' ) );
@ -103,26 +109,30 @@ function widgets_init() {
'before_title' => '<h2>', 'before_title' => '<h2>',
'after_title' => '</h2>', 'after_title' => '</h2>',
]; ];
register_sidebar( [ register_sidebar(
'name' => __( 'Network Footer Block 1', 'pressbooks-aldine' ), [
'description' => __( 'name' => __( 'Network Footer Block 1', 'pressbooks-aldine' ),
'Add content for your network&rsquo;s customizeable footer here. 'description' => __(
'Add content for your network&rsquo;s customizeable footer here.
Currently, only text and image widgets are supported. 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).', Content in this widget area will appear in the first row (on mobile) or the first column (on desktops).',
'aldine' 'aldine'
), ),
'id' => 'network-footer-block-1', 'id' => 'network-footer-block-1',
] + $config ); ] + $config
register_sidebar( [ );
'name' => __( 'Network Footer Block 2', 'pressbooks-aldine' ), register_sidebar(
'description' => __( [
'Add content for your network&rsquo;s customizeable footer here. 'name' => __( 'Network Footer Block 2', 'pressbooks-aldine' ),
'description' => __(
'Add content for your network&rsquo;s customizeable footer here.
Currently, only text and image widgets are supported. 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).', Content in this widget area will appear in the second row (on mobile) or the middle column (on desktop).',
'aldine' 'aldine'
), ),
'id' => 'network-footer-block-2', 'id' => 'network-footer-block-2',
] + $config ); ] + $config
);
} }
/** /**
@ -216,15 +226,17 @@ function remove_admin_bar_callback() {
* Hide content editor for Catalog page. * Hide content editor for Catalog page.
*/ */
function hide_catalog_content_editor() { function hide_catalog_content_editor() {
$post_id = $_GET['post'] ?? null ; $post_id = $_GET['post'] ?? null;
if ( ! isset( $post_id ) ) { if ( ! isset( $post_id ) ) {
return; return;
} }
$pagename = get_the_title( $post_id ); $pagename = get_the_title( $post_id );
if ( $pagename === 'Catalog' ) { if ( $pagename === 'Catalog' ) {
add_action( 'edit_form_after_title', function() { add_action(
printf( '<p>%s</p>', __( 'This page displays your network catalog, so there is no content to edit.', 'pressbooks-aldine' ) ); 'edit_form_after_title', function() {
} ); printf( '<p>%s</p>', __( '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', 'editor' );
remove_post_type_support( 'page', 'thumbnail' ); remove_post_type_support( 'page', 'thumbnail' );
} }
@ -243,15 +255,8 @@ function add_color_variants( $option, $old_value, $value ) {
$color = Hex::fromString( $value ); $color = Hex::fromString( $value );
$color = $color->toRgb(); $color = $color->toRgb();
$color_alpha = $color->toRgba( 0.25 ); $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_alpha = (string) $color_alpha;
$color_dark = (string) $color_dark;
update_option( $option . '_dark', $color_dark );
update_option( $option . '_alpha', $color_alpha ); update_option( $option . '_alpha', $color_alpha );
} }
@ -279,7 +284,7 @@ function register_shortcode_buttons() {
* @since 1.1.0 * @since 1.1.0
*/ */
function tinymce_l18n() { function tinymce_l18n() {
?> ?>
<script type='text/javascript'> <script type='text/javascript'>
const aldine = { const aldine = {
page_section: { page_section: {
@ -297,7 +302,16 @@ function tinymce_l18n() {
} }
}; };
</script> </script>
<?php <?php
}
/**
* Remove top-level tools menu.
*
* @since 1.4.0
*/
function remove_tools_menu() {
remove_submenu_page( 'tools.php', 'tools.php' );
} }
/** /**

15
inc/activation/namespace.php

@ -42,6 +42,7 @@ function create_default_content() {
__( 'designed PDF (for print-on-demand and digital distribution)', 'pressbooks-aldine' ), __( 'designed PDF (for print-on-demand and digital distribution)', 'pressbooks-aldine' ),
__( 'Pressbooks is used by educational institutions around the world as well as authors and publishers.', 'pressbooks' ), __( 'Pressbooks is used by educational institutions around the world as well as authors and publishers.', 'pressbooks' ),
sprintf( sprintf(
/* translators: %s link to about page */
__( 'For more information about Pressbooks, %s.', 'pressbooks-aldine' ), __( 'For more information about Pressbooks, %s.', 'pressbooks-aldine' ),
sprintf( '<a href="https://pressbooks.com/about">%s</a>', __( 'see here', 'pressbooks-aldine' ) ) sprintf( '<a href="https://pressbooks.com/about">%s</a>', __( 'see here', 'pressbooks-aldine' ) )
) )
@ -55,6 +56,7 @@ function create_default_content() {
sprintf( sprintf(
'<p>%1$s</p><p>%2$s</p>', '<p>%1$s</p><p>%2$s</p>',
sprintf( 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' ), __( 'The easiest way to get started with Pressbooks is to follow our %1$s. Or, you can review our %2$s.', 'pressbooks-aldine' ),
sprintf( '<a href="https://pressbooks.com/how-to-make-a-book-with-pressbooks">%s</a>', __( '4 Step Guide to Making a Book on Pressbooks', 'pressbooks-aldine' ) ), sprintf( '<a href="https://pressbooks.com/how-to-make-a-book-with-pressbooks">%s</a>', __( '4 Step Guide to Making a Book on Pressbooks', 'pressbooks-aldine' ) ),
sprintf( '<a href="https://guide.pressbooks.com/">%s</a>', __( 'Guide to Using Pressbooks', 'pressbooks-aldine' ) ) sprintf( '<a href="https://guide.pressbooks.com/">%s</a>', __( 'Guide to Using Pressbooks', 'pressbooks-aldine' ) )
@ -79,7 +81,14 @@ function create_default_content() {
foreach ( $default_pages as $slug => $page ) { foreach ( $default_pages as $slug => $page ) {
$check = get_page_by_path( $slug ); $check = get_page_by_path( $slug );
if ( empty( $check ) ) { 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 { } else {
$pages[ $slug ] = $check->ID; $pages[ $slug ] = $check->ID;
} }
@ -192,11 +201,11 @@ function assign_menus() {
switch ( $id ) { switch ( $id ) {
case 'primary-menu': case 'primary-menu':
$menu = get_term_by( 'name', 'Primary Menu', 'nav_menu' ); $menu = get_term_by( 'name', 'Primary Menu', 'nav_menu' );
break; break;
case 'network-footer-menu': case 'network-footer-menu':
$menu = get_term_by( 'name', 'Footer Menu', 'nav_menu' ); $menu = get_term_by( 'name', 'Footer Menu', 'nav_menu' );
break; break;
} }
if ( $menu ) { if ( $menu ) {

8
inc/admin/namespace.php

@ -70,7 +70,11 @@ function catalog_column( $column, $blog_id ) {
if ( 'in_catalog' === $column && ! is_main_site( $blog_id ) ) { ?> if ( 'in_catalog' === $column && ! is_main_site( $blog_id ) ) { ?>
<input class="in-catalog" type="checkbox" name="in_catalog" value="1" aria-label="<?php echo esc_attr_x( 'Show in Catalog', 'pressbooks-aldine' ); ?>" <?php checked( get_blog_option( $blog_id, \Aldine\Admin\BLOG_OPTION ), 1 ); ?> <?php <input class="in-catalog" type="checkbox" name="in_catalog" value="1" aria-label="<?php echo esc_attr_x( 'Show in Catalog', 'pressbooks-aldine' ); ?>" <?php checked( get_blog_option( $blog_id, \Aldine\Admin\BLOG_OPTION ), 1 ); ?> <?php
if ( ! get_blog_option( $blog_id, 'blog_public' ) ) { ?>disabled="disabled" title="<?php echo esc_attr_x( 'This book is private, so you can&rsquo;t display it in your catalog.', 'pressbooks-aldine' ); ?>"<?php } ?> /> if ( ! get_blog_option( $blog_id, 'blog_public' ) ) {
<?php }
?>
disabled="disabled" title="<?php echo esc_attr_x( 'This book is private, so you can&rsquo;t display it in your catalog.', 'pressbooks-aldine' ); ?>"<?php } ?> />
<?php
}
} }

290
inc/customizer/namespace.php

@ -28,30 +28,38 @@ function customize_register( \WP_Customize_Manager $wp_customize ) {
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage'; $wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
if ( isset( $wp_customize->selective_refresh ) ) { if ( isset( $wp_customize->selective_refresh ) ) {
$wp_customize->selective_refresh->add_partial( 'blogname', [ $wp_customize->selective_refresh->add_partial(
'selector' => '.site-title a', 'blogname', [
'render_callback' => function() { 'selector' => '.site-title a',
bloginfo( 'name' ); 'render_callback' => function() {
}, bloginfo( 'name' );
] ); },
$wp_customize->selective_refresh->add_partial( 'blogdescription', [ ]
'selector' => '.site-description', );
'render_callback' => function() { $wp_customize->selective_refresh->add_partial(
bloginfo( 'description' ); 'blogdescription', [
}, 'selector' => '.site-description',
] ); 'render_callback' => function() {
$wp_customize->selective_refresh->add_partial( 'pb_front_page_catalog_title', [ bloginfo( 'description' );
'selector' => '#latest-books-title', },
'render_callback' => function() { ]
get_option( 'pb_front_page_catalog_title' ); );
}, $wp_customize->selective_refresh->add_partial(
] ); 'pb_front_page_catalog_title', [
$wp_customize->selective_refresh->add_partial( 'pb_network_contact_form_title', [ 'selector' => '#latest-books-title',
'selector' => '#contact .contact__title', 'render_callback' => function() {
'render_callback' => function() { get_option( 'pb_front_page_catalog_title' );
get_option( 'pb_network_contact_form_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 ( [ foreach ( [
@ -61,12 +69,24 @@ function customize_register( \WP_Customize_Manager $wp_customize ) {
'label' => __( 'Primary Color', 'pressbooks-aldine' ), 'label' => __( 'Primary Color', 'pressbooks-aldine' ),
'description' => __( 'Primary color, used for links and other primary elements.', 'pressbooks-aldine' ), 'description' => __( 'Primary color, used for links and other primary elements.', 'pressbooks-aldine' ),
], ],
[
'slug' => 'primary_dark',
'hex' => '#7f0c07',
'label' => __( 'Primary Color (Hover)', 'pressbooks-aldine' ),
'description' => __( 'Variant of the primary color, used for primary element hover states.', 'pressbooks-aldine' ),
],
[ [
'slug' => 'accent', 'slug' => 'accent',
'hex' => '#015d75', 'hex' => '#015d75',
'label' => __( 'Accent Color', 'pressbooks-aldine' ), 'label' => __( 'Accent Color', 'pressbooks-aldine' ),
'description' => __( 'Accent color, used for flourishes and secondary elements.', 'pressbooks-aldine' ), 'description' => __( 'Accent color, used for flourishes and secondary elements.', 'pressbooks-aldine' ),
], ],
[
'slug' => 'accent_dark',
'hex' => '#013542',
'label' => __( 'Accent Color (Hover)', 'pressbooks-aldine' ),
'description' => __( 'Variant of the accent color, used for secondary element hover states.', 'pressbooks-aldine' ),
],
[ [
'slug' => 'primary_fg', 'slug' => 'primary_fg',
'hex' => '#ffffff', 'hex' => '#ffffff',
@ -80,103 +100,141 @@ function customize_register( \WP_Customize_Manager $wp_customize ) {
'description' => __( 'Used for text on an accent color background.', 'pressbooks-aldine' ), 'description' => __( 'Used for text on an accent color background.', 'pressbooks-aldine' ),
], ],
] as $color ) { ] as $color ) {
$wp_customize->add_setting("pb_network_color_{$color['slug']}", [ $wp_customize->add_setting(
'type' => 'option', "pb_network_color_{$color['slug']}", [
'default' => $color['hex'], '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_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', [ $wp_customize->add_section(
'title' => __( 'Social Media', 'pressbooks-aldine' ), 'pb_network_social', [
'priority' => 30, 'title' => __( 'Social Media', 'pressbooks-aldine' ),
]); 'priority' => 30,
$wp_customize->add_setting('pb_network_facebook', [ ]
'type' => 'option', );
'sanitize_callback' => 'esc_url_raw', $wp_customize->add_setting(
]); 'pb_network_facebook', [
$wp_customize->add_control('pb_network_facebook', [ 'type' => 'option',
'label' => __( 'Facebook', 'pressbooks-aldine' ), 'sanitize_callback' => 'esc_url_raw',
'section' => 'pb_network_social', ]
'settings' => 'pb_network_facebook', );
]); $wp_customize->add_control(
$wp_customize->add_setting('pb_network_twitter', [ 'pb_network_facebook', [
'type' => 'option', 'label' => __( 'Facebook', 'pressbooks-aldine' ),
'sanitize_callback' => 'esc_url_raw', 'section' => 'pb_network_social',
]); 'settings' => 'pb_network_facebook',
$wp_customize->add_control('pb_network_twitter', [ ]
'label' => __( 'Twitter', 'pressbooks-aldine' ), );
'section' => 'pb_network_social', $wp_customize->add_setting(
'settings' => 'pb_network_twitter', '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' ) ) { if ( defined( 'PB_PLUGIN_VERSION' ) ) {
$wp_customize->add_section('pb_front_page_catalog', [ $wp_customize->add_section(
'title' => __( 'Front Page Catalog', 'pressbooks-aldine' ), '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, 'priority' => 25,
]); ]
$wp_customize->add_setting('pb_front_page_catalog', [ );
$wp_customize->add_setting(
'pb_network_contact_form', [
'type' => 'option', 'type' => 'option',
]); ]
$wp_customize->add_control('pb_front_page_catalog', [ );
'label' => __( 'Show Front Page Catalog', 'pressbooks-aldine' ), $wp_customize->add_control(
'section' => 'pb_front_page_catalog', 'pb_network_contact_form', [
'settings' => 'pb_front_page_catalog', 'label' => __( 'Show Contact Form', 'pressbooks-aldine' ),
'section' => 'pb_network_contact_form',
'settings' => 'pb_network_contact_form',
'type' => 'checkbox', 'type' => 'checkbox',
]); ]
$wp_customize->add_setting('pb_front_page_catalog_title', [ );
$wp_customize->add_setting(
'pb_network_contact_form_title', [
'type' => 'option', 'type' => 'option',
'sanitize_callback' => 'sanitize_text_field', 'sanitize_callback' => 'sanitize_text_field',
'default' => __( 'Our Latest Titles', 'pressbooks-aldine' ), 'default' => __( 'Contact Us', 'pressbooks-aldine' ),
]); ]
$wp_customize->add_control('pb_front_page_catalog_title', [ );
'label' => __( 'Front Page Catalog Title', 'pressbooks-aldine' ), $wp_customize->add_control(
'section' => 'pb_front_page_catalog', 'pb_network_contact_form_title', [
'settings' => 'pb_front_page_catalog_title', 'label' => __( 'Contact Form Title', 'pressbooks-aldine' ),
]); 'section' => 'pb_network_contact_form',
} 'settings' => 'pb_network_contact_form_title',
]
$wp_customize->add_section('pb_network_contact_form', [ );
'title' => __( 'Contact Form', 'pressbooks-aldine' ), $wp_customize->add_setting(
'priority' => 25, 'pb_network_contact_email', [
]); 'type' => 'option',
$wp_customize->add_setting('pb_network_contact_form', [ 'default' => get_option( 'admin_email', '' ),
'type' => 'option', 'sanitize_callback' => 'sanitize_email',
]); ]
$wp_customize->add_control('pb_network_contact_form', [ );
'label' => __( 'Show Contact Form', 'pressbooks-aldine' ), $wp_customize->add_control(
'section' => 'pb_network_contact_form', 'pb_network_contact_email', [
'settings' => 'pb_network_contact_form', 'label' => __( 'Contact Email', 'pressbooks-aldine' ),
'type' => 'checkbox', 'section' => 'pb_network_contact_form',
]); 'settings' => 'pb_network_contact_email',
$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',
]);
} }
/** /**
@ -203,8 +261,12 @@ function enqueue_color_contrast_validator() {
$exports = [ $exports = [
'validate_color_contrast' => [ 'validate_color_contrast' => [
'pb_network_color_primary_fg' => [ 'pb_network_color_primary' ], '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_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' ],
], ],
]; ];

10
inc/filters/namespace.php

@ -7,8 +7,8 @@
namespace Aldine\Filters; namespace Aldine\Filters;
use PressbooksMix\Assets;
use function Aldine\Helpers\has_sections; use function Aldine\Helpers\has_sections;
use PressbooksMix\Assets;
/** /**
* Adds custom classes to the array of body classes. * 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 */ /** Clean up class names for custom templates */
$classes = array_map( function ( $class ) { $classes = array_map(
return preg_replace( [ '/-php$/', '/^page-template-views/' ], '', $class ); function ( $class ) {
}, $classes ); return preg_replace( [ '/-php$/', '/^page-template-views/' ], '', $class );
}, $classes
);
return array_filter( $classes ); return array_filter( $classes );
} }

39
inc/helpers/namespace.php

@ -7,8 +7,10 @@
namespace Aldine\Helpers; namespace Aldine\Helpers;
use Pressbooks\Book;
use function \Pressbooks\Metadata\book_information_to_schema; use function \Pressbooks\Metadata\book_information_to_schema;
use function \Pressbooks\Metadata\is_bisac;
use function \Pressbooks\Utility\str_starts_with;
use Pressbooks\Book;
/** /**
* @param int $page * @param int $page
@ -22,7 +24,10 @@ use function \Pressbooks\Metadata\book_information_to_schema;
function get_catalog_data( $page = 1, $per_page = 10, $orderby = 'title', $license = '', $subject = '' ) { function get_catalog_data( $page = 1, $per_page = 10, $orderby = 'title', $license = '', $subject = '' ) {
if ( ! defined( 'PB_PLUGIN_VERSION' ) ) { if ( ! defined( 'PB_PLUGIN_VERSION' ) ) {
return [ 'pages' => 0, 'books' => [] ]; // Bail return [
'pages' => 0,
'books' => [],
]; // Bail
} }
/** /**
@ -91,7 +96,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,
];
} }
@ -142,7 +150,7 @@ function get_available_licenses( $catalog_data ) {
function get_available_subjects( $catalog_data ) { function get_available_subjects( $catalog_data ) {
$subjects = []; $subjects = [];
foreach ( $catalog_data['books'] as $book ) { 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 ); $subjects[ substr( $book['subject'], 0, 1 ) ][] = substr( $book['subject'], 0, 2 );
} }
} }
@ -199,6 +207,12 @@ function get_default_menu( $items = '' ) {
get_blogaddress_by_id( $user_info->primary_blog ) . 'wp-admin/index.php?page=pb_catalog', get_blogaddress_by_id( $user_info->primary_blog ) . 'wp-admin/index.php?page=pb_catalog',
__( 'My Books', 'pressbooks-aldine' ) __( 'My Books', 'pressbooks-aldine' )
); );
} elseif ( in_array( get_site_option( 'registration' ), [ 'blog', 'all' ], true ) ) {
$items .= sprintf(
'<li><a href="%1$s">%2$s</a></li>',
network_home_url( '/wp-signup.php' ),
__( 'Create a New Book', 'pressbooks-aldine' )
);
} }
$items .= sprintf( $items .= sprintf(
'<li><a href="%1$s">%2$s</a></li>', '<li><a href="%1$s">%2$s</a></li>',
@ -226,9 +240,11 @@ function default_menu( $args = [], $items = '' ) {
get_default_menu( $items ) get_default_menu( $items )
); );
if ( class_exists( '\PressbooksOAuth\OAuth' ) ) { if ( class_exists( '\PressbooksOAuth\OAuth' ) ) {
add_filter( 'pb_oauth_output_button', function( $bool ) { add_filter(
return false; 'pb_oauth_output_button', function( $bool ) {
} ); return false;
}
);
do_action( 'pressbooks_oauth_connect' ); do_action( 'pressbooks_oauth_connect' );
} }
} }
@ -244,6 +260,12 @@ function handle_contact_form_submission() {
return false; // Security check failed. return false; // Security check failed.
} }
if ( isset( $_POST['submitted'] ) ) { 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' ) ); $contact_email = get_option( 'pb_network_contact_email', get_option( 'admin_email' ) );
$output = []; $output = [];
$name = ( isset( $_POST['visitor_name'] ) ) ? $_POST['visitor_name'] : ''; $name = ( isset( $_POST['visitor_name'] ) ) ? $_POST['visitor_name'] : '';
@ -279,6 +301,7 @@ function handle_contact_form_submission() {
} else { } else {
$sent = wp_mail( $sent = wp_mail(
$contact_email, $contact_email,
/* translators: %s name of contact for submitter */
sprintf( __( 'Contact Form Submission from %s', 'pressbooks-aldine' ), $name ), sprintf( __( 'Contact Form Submission from %s', 'pressbooks-aldine' ), $name ),
sprintf( sprintf(
"From: %1\$s <%2\$s>\nInstitution: %3\$s\n\n%4\$s", "From: %1\$s <%2\$s>\nInstitution: %3\$s\n\n%4\$s",
@ -299,7 +322,7 @@ function handle_contact_form_submission() {
} }
return $output; return $output;
} }
return; return false;
} }
/** /**

55
inc/intervention.php

@ -11,29 +11,34 @@ intervention( 'remove-customizer-items', 'static-front-page', 'all' );
intervention( 'remove-emoji' ); intervention( 'remove-emoji' );
intervention( 'remove-howdy', __( 'Hello,', 'pressbooks-aldine' ) ); intervention( 'remove-howdy', __( 'Hello,', 'pressbooks-aldine' ) );
intervention( 'remove-dashboard-items', [ 'activity', 'quick-draft' ] ); intervention( 'remove-dashboard-items', [ 'activity', 'quick-draft' ] );
intervention( 'remove-menu-items', [ intervention(
'posts', 'remove-menu-items', [
'tools', 'posts',
'setting-writing', 'tool-import',
'setting-reading', 'tool-export',
'setting-permalink', 'setting-writing',
], 'all' ); 'setting-reading',
intervention( 'remove-widgets', [ 'setting-permalink',
'pages', ], 'all'
'calendar', );
'archives', intervention(
'links', 'remove-widgets', [
'media-audio', 'pages',
'meta', 'calendar',
'search', 'archives',
'categories', 'links',
'recent-posts', 'media-audio',
'recent-comments', 'meta',
'rss', 'search',
'tag-cloud', 'categories',
'custom-menu', 'recent-posts',
'custom-html', 'recent-comments',
'media-video', 'rss',
'akismet', 'tag-cloud',
], 'all' ); 'custom-menu',
'custom-html',
'media-video',
'akismet',
], 'all'
);
intervention( 'remove-toolbar-frontend', 'all' ); intervention( 'remove-toolbar-frontend', 'all' );

11
index.php

@ -20,16 +20,18 @@ get_header(); ?>
<?php <?php
if ( have_posts() ) : if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?> if ( is_home() && ! is_front_page() ) :
?>
<header> <header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1> <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header> </header>
<?php <?php
endif; endif;
/* Start the Loop */ /* Start the Loop */
while ( have_posts() ) : the_post(); while ( have_posts() ) :
the_post();
/* /*
* Include the Post-Format-specific template for the content. * Include the Post-Format-specific template for the content.
@ -46,7 +48,8 @@ get_header(); ?>
get_template_part( 'template-parts/content', 'none' ); get_template_part( 'template-parts/content', 'none' );
endif; ?> endif;
?>
</main><!-- #main --> </main><!-- #main -->
</div><!-- #primary --> </div><!-- #primary -->

180
languages/ar.po

@ -110,29 +110,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -205,7 +241,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -235,151 +271,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -395,35 +439,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -467,10 +503,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/ca.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/cs.po

@ -107,29 +107,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -202,7 +238,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -392,35 +436,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -464,10 +500,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/cs_CZ.po

@ -107,29 +107,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -202,7 +238,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -392,35 +436,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -464,10 +500,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/da_DK.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/de_CH.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

BIN
languages/de_DE.mo

Binary file not shown.

198
languages/de_DE.po

@ -51,19 +51,19 @@ msgstr "%s auf Twitter"
#: ../footer.php:70 #: ../footer.php:70
msgid "Powered by %s" msgid "Powered by %s"
msgstr "" msgstr "Powered by %s"
#: ../footer.php:72 #: ../footer.php:72
msgid "Open Source" msgid "Open Source"
msgstr "" msgstr "Open Source"
#: ../footer.php:73 #: ../footer.php:73
msgid "Open Textbooks" msgid "Open Textbooks"
msgstr "" msgstr "Open Textbooks"
#: ../footer.php:74 #: ../footer.php:74
msgid "Open Book Publishing" msgid "Open Book Publishing"
msgstr "" msgstr "Open Book Publishing"
#: ../footer.php75, ../inc/activation/namespace.php:27 #: ../footer.php75, ../inc/activation/namespace.php:27
msgid "Learn More" msgid "Learn More"
@ -71,11 +71,11 @@ msgstr "Mehr erfahren"
#: ../footer.php79, ../footer.php:83 #: ../footer.php79, ../footer.php:83
msgid "Pressbooks on Facebook" msgid "Pressbooks on Facebook"
msgstr "" msgstr "Pressbooks auf Facebook"
#: ../footer.php85, ../footer.php:89 #: ../footer.php85, ../footer.php:89
msgid "Pressbooks on Twitter" msgid "Pressbooks on Twitter"
msgstr "" msgstr "Pressbooks auf Twitter"
#: ../functions.php:18 #: ../functions.php:18
msgid "Dependencies Missing" msgid "Dependencies Missing"
@ -96,7 +96,7 @@ msgstr "Logo für %s"
#: ../header.php:74 #: ../header.php:74
msgid "Toggle Menu" msgid "Toggle Menu"
msgstr "" msgstr "Menü umschalten"
#: ../inc/intervention.php:12 #: ../inc/intervention.php:12
msgid "Hello," msgid "Hello,"
@ -110,30 +110,66 @@ msgstr "Hauptmenü"
msgid "Footer Menu" msgid "Footer Menu"
msgstr "Fusszeilen-Menü" msgstr "Fusszeilen-Menü"
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "Block 1 im Netzwerk-Fuss" msgstr "Block 1 im Netzwerk-Fuss"
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "Block 2 im Netzwerk-Block" msgstr "Block 2 im Netzwerk-Block"
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "Schriftgrösse vergrössern" msgstr "Schriftgrösse vergrössern"
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "Schriftgrösse verkleinern" msgstr "Schriftgrösse verkleinern"
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" msgstr ""
"Diese Seite zeigt Ihren Netzwerk-Katalog an, Sie müssen hier nichts eingeben" "Diese Seite zeigt Ihren Netzwerk-Katalog an, Sie müssen hier nichts eingeben"
#: ../inc/actions/namespace.php:279
msgid "Page Section"
msgstr "Seitenabschnitt"
#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49
msgid "Title"
msgstr "Titel"
#: ../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 "Greifen Sie jetzt ein"
#: ../inc/actions/namespace.php:288
msgid "Text"
msgstr ""
#: ../inc/actions/namespace.php:289
msgid "Link"
msgstr ""
#: ../inc/activation/namespace.php:25 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "Über Pressbooks" msgstr "Über Pressbooks"
@ -217,7 +253,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "Katalog" msgstr "Katalog"
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "Home" msgstr "Home"
@ -250,151 +286,159 @@ msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
"Dieses Buch ist privat, Sie können es nicht in Ihrem Katalog anzeigen." "Dieses Buch ist privat, Sie können es nicht in Ihrem Katalog anzeigen."
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "Hauptfarbe" msgstr "Hauptfarbe"
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "Hauptfarbe, wird für Links und andere Primärelemente verwendet." msgstr "Hauptfarbe, wird für Links und andere Primärelemente verwendet."
#: ../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" msgid "Accent Color"
msgstr "Akzentfarbe" msgstr "Akzentfarbe"
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "Akzentfarbe, wird für Verzierungen und sekundäre Elemente verwendet" msgstr "Akzentfarbe, wird für Verzierungen und sekundäre Elemente verwendet"
#: ../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" msgid "Primary Foreground Color"
msgstr "Primärfarbe für den Vordergrund" msgstr "Primärfarbe für den Vordergrund"
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "Wird für Text auf einem primären Hintergrund verwendet." msgstr "Wird für Text auf einem primären Hintergrund verwendet."
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "Akzentfarbe für den Vordergrund" msgstr "Akzentfarbe für den Vordergrund"
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "Wird für Text auf einem Hintergrund in Akzentfarbe verwendet." msgstr "Wird für Text auf einem Hintergrund in Akzentfarbe verwendet."
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "Soziale Medien" msgstr "Soziale Medien"
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "Facebook" msgstr "Facebook"
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "Twitter" msgstr "Twitter"
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "Hauptseiten-Katalog" msgstr "Hauptseiten-Katalog"
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "Hauptseiten-Katalog anzeigen" msgstr "Hauptseiten-Katalog anzeigen"
#: ../inc/customizer/namespace.php:124 #: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19
msgid "Our Latest Titles"
msgstr "Unsere neusten Titel"
#: ../inc/customizer/namespace.php:153
msgid "Front Page Catalog Title" msgid "Front Page Catalog Title"
msgstr "Titel des Hauptseiten-Katalogs" msgstr "Titel des Hauptseiten-Katalogs"
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "Kontakt Formular" msgstr "Kontakt Formular"
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "Kontakt Formular anzeigen" msgstr "Kontakt Formular anzeigen"
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Us"
msgstr "Kontaktieren Sie uns"
#: ../inc/customizer/namespace.php:178
msgid "Contact Form Title" msgid "Contact Form Title"
msgstr "Titel des Kontakt Formulars" msgstr "Titel des Kontakt Formulars"
#: ../inc/filters/namespace.php:60 #: ../inc/customizer/namespace.php:188
msgid "Contact Email"
msgstr ""
#: ../inc/filters/namespace.php:61
msgid "Continued" msgid "Continued"
msgstr "Fortgesetzt" msgstr "Fortgesetzt"
#: ../inc/filters/namespace.php:84 #: ../inc/helpers/namespace.php:171
msgid "Page Section"
msgstr "Seitenabschnitt"
#: ../inc/filters/namespace.php:90
msgid "Page Section (Accent)"
msgstr "Seitenabschnitt (Akzentuiert)"
#: ../inc/filters/namespace.php:96
msgid "Page Section (Bordered)"
msgstr "Seitenabschnitt (Umrahmt)"
#: ../inc/filters/namespace.php:102
msgid "Page Section (Borderless)"
msgstr "Seitenabschnitt (Rahmenlos)"
#: ../inc/filters/namespace.php:108
msgid "Call to Action"
msgstr "Greifen Sie jetzt ein"
#: ../inc/helpers/namespace.php:168
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "Anmelden" msgstr "Anmelden"
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "Registrieren" msgstr "Registrieren"
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "Meine Bücher" msgstr "Meine Bücher"
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "Abmelden" msgstr "Abmelden"
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "Name notwendig" msgstr "Name notwendig"
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "E-Mail notwendig" msgstr "E-Mail notwendig"
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "E-Mail ungültig" msgstr "E-Mail ungültig"
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "Institution benötigt" msgstr "Institution benötigt"
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "Nachricht benötigt" msgstr "Nachricht benötigt"
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "Kontaktformular-Eingabe von %s" msgstr "Kontaktformular-Eingabe von %s"
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "Ihre Nachricht wurde versendet!" msgstr "Ihre Nachricht wurde versendet!"
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "Ihre Nachricht konnte nicht versendet werden!" msgstr "Ihre Nachricht konnte nicht versendet werden!"
@ -410,35 +454,27 @@ msgstr "Es wurden keine Bücher zum Katalog hinzugefügt."
msgid "About this book" msgid "About this book"
msgstr "Über dieses Buch" msgstr "Über dieses Buch"
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr "Kontaktieren Sie uns"
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "Ihr Name (benötigt)" msgstr "Ihr Name (benötigt)"
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "Ihre E-Mail (benötigt)" msgstr "Ihre E-Mail (benötigt)"
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "Ihre Institution (benötigt)" msgstr "Ihre Institution (benötigt)"
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "Ihre Nachricht (benötigt)" msgstr "Ihre Nachricht (benötigt)"
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "Senden" msgstr "Senden"
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr "Unsere neusten Titel"
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "Den ganzen Katalog ansehen" msgstr "Den ganzen Katalog ansehen"
@ -488,10 +524,6 @@ msgstr "Alle Lizenzen"
msgid "Sort by" msgid "Sort by"
msgstr "Sortieren nach" msgstr "Sortieren nach"
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr "Titel"
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "Thema" msgstr "Thema"

180
languages/el.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/en_CA.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/en_GB.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/es_ES.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/et.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/eu.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

BIN
languages/fr_FR.mo

Binary file not shown.

185
languages/fr_FR.po

@ -1,8 +1,11 @@
# Copyright (C) 2018 pressbooks-aldine # Copyright (C) 2018 pressbooks-aldine
# This file is distributed under the same license as the pressbooks-aldine package. # This file is distributed under the same license as the pressbooks-aldine package.
# Translators:
# Hugh McGuire <hugh@pressbooks.com>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pressbooks-aldine\n" "Project-Id-Version: pressbooks-aldine\n"
"Last-Translator: Hugh McGuire <hugh@pressbooks.com>, 2018\n"
"Language-Team: French (https://www.transifex.com/pressbooks/teams/9194/fr/)\n" "Language-Team: French (https://www.transifex.com/pressbooks/teams/9194/fr/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -106,29 +109,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -142,7 +181,7 @@ msgstr ""
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137,
#: ../inc/activation/namespace.php:143 #: ../inc/activation/namespace.php:143
msgid "About" msgid "About"
msgstr "" msgstr "À propos"
#: ../inc/activation/namespace.php:39 #: ../inc/activation/namespace.php:39
msgid "" msgid ""
@ -201,7 +240,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +270,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +438,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +502,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

BIN
languages/gl_ES.mo

Binary file not shown.

199
languages/gl_ES.po

@ -1,8 +1,11 @@
# Copyright (C) 2018 pressbooks-aldine # Copyright (C) 2018 pressbooks-aldine
# This file is distributed under the same license as the pressbooks-aldine package. # This file is distributed under the same license as the pressbooks-aldine package.
# Translators:
# xesusmosquera <xesusmosquera@gmail.com>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pressbooks-aldine\n" "Project-Id-Version: pressbooks-aldine\n"
"Last-Translator: xesusmosquera <xesusmosquera@gmail.com>, 2018\n"
"Language-Team: Galician (https://www.transifex.com/pressbooks/teams/9194/gl/)\n" "Language-Team: Galician (https://www.transifex.com/pressbooks/teams/9194/gl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -36,7 +39,7 @@ msgstr[1] ""
#: ../comments.php:63 #: ../comments.php:63
msgid "Comments are closed." msgid "Comments are closed."
msgstr "" msgstr "Os comentarios están pechados."
#: ../footer.php40, ../footer.php:44 #: ../footer.php40, ../footer.php:44
msgid "%s on Facebook" msgid "%s on Facebook"
@ -64,15 +67,15 @@ msgstr ""
#: ../footer.php75, ../inc/activation/namespace.php:27 #: ../footer.php75, ../inc/activation/namespace.php:27
msgid "Learn More" msgid "Learn More"
msgstr "" msgstr "Saber máis"
#: ../footer.php79, ../footer.php:83 #: ../footer.php79, ../footer.php:83
msgid "Pressbooks on Facebook" msgid "Pressbooks on Facebook"
msgstr "" msgstr "Pressbooks no Facebook"
#: ../footer.php85, ../footer.php:89 #: ../footer.php85, ../footer.php:89
msgid "Pressbooks on Twitter" msgid "Pressbooks on Twitter"
msgstr "" msgstr "Pressbooks no Twitter"
#: ../functions.php:18 #: ../functions.php:18
msgid "Dependencies Missing" msgid "Dependencies Missing"
@ -96,39 +99,75 @@ msgstr ""
#: ../inc/intervention.php:12 #: ../inc/intervention.php:12
msgid "Hello," msgid "Hello,"
msgstr "" msgstr "Ola,"
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111
msgid "Primary Menu" msgid "Primary Menu"
msgstr "" msgstr "Menú principal"
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -142,7 +181,7 @@ msgstr ""
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137,
#: ../inc/activation/namespace.php:143 #: ../inc/activation/namespace.php:143
msgid "About" msgid "About"
msgstr "" msgstr "Acerca de"
#: ../inc/activation/namespace.php:39 #: ../inc/activation/namespace.php:39
msgid "" msgid ""
@ -174,7 +213,7 @@ msgstr ""
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167,
#: ../inc/activation/namespace.php:173 #: ../inc/activation/namespace.php:173
msgid "Help" msgid "Help"
msgstr "" msgstr "Axuda"
#: ../inc/activation/namespace.php:58 #: ../inc/activation/namespace.php:58
msgid "" msgid ""
@ -201,7 +240,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +270,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +438,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +502,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

BIN
languages/he.mo

Binary file not shown.

305
languages/he.po

@ -1,14 +1,17 @@
# Copyright (C) 2018 pressbooks-aldine # Copyright (C) 2018 pressbooks-aldine
# This file is distributed under the same license as the pressbooks-aldine package. # This file is distributed under the same license as the pressbooks-aldine package.
# Translators:
# makeabook project <makeabookproject@gmail.com>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pressbooks-aldine\n" "Project-Id-Version: pressbooks-aldine\n"
"Last-Translator: makeabook project <makeabookproject@gmail.com>, 2018\n"
"Language-Team: Hebrew (https://www.transifex.com/pressbooks/teams/9194/he/)\n" "Language-Team: Hebrew (https://www.transifex.com/pressbooks/teams/9194/he/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: he\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-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-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-SearchPath-0: .\n"
@ -21,7 +24,7 @@ msgstr ""
#: ../404.php:21 #: ../404.php:21
msgid "It looks like nothing was found at this location." msgid "It looks like nothing was found at this location."
msgstr "" msgstr "נראה שלא נמצא דבר במיקום זה."
#: ../comments.php:34 #: ../comments.php:34
msgid "One thought on &ldquo;%1$s&rdquo;" msgid "One thought on &ldquo;%1$s&rdquo;"
@ -33,10 +36,12 @@ msgid "%1$s thought on &ldquo;%2$s&rdquo;"
msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;" msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
#: ../comments.php:63 #: ../comments.php:63
msgid "Comments are closed." msgid "Comments are closed."
msgstr "" msgstr "אין אפשרות להגיב."
#: ../footer.php40, ../footer.php:44 #: ../footer.php40, ../footer.php:44
msgid "%s on Facebook" msgid "%s on Facebook"
@ -48,23 +53,23 @@ msgstr ""
#: ../footer.php:70 #: ../footer.php:70
msgid "Powered by %s" msgid "Powered by %s"
msgstr "" msgstr "מופעל על ידי %s"
#: ../footer.php:72 #: ../footer.php:72
msgid "Open Source" msgid "Open Source"
msgstr "" msgstr "קוד פתוח"
#: ../footer.php:73 #: ../footer.php:73
msgid "Open Textbooks" msgid "Open Textbooks"
msgstr "" msgstr "ספרי לימוד"
#: ../footer.php:74 #: ../footer.php:74
msgid "Open Book Publishing" msgid "Open Book Publishing"
msgstr "" msgstr "פרסום הספר- הוצאה לאור"
#: ../footer.php75, ../inc/activation/namespace.php:27 #: ../footer.php75, ../inc/activation/namespace.php:27
msgid "Learn More" msgid "Learn More"
msgstr "" msgstr "למד עוד"
#: ../footer.php79, ../footer.php:83 #: ../footer.php79, ../footer.php:83
msgid "Pressbooks on Facebook" msgid "Pressbooks on Facebook"
@ -84,7 +89,7 @@ msgstr ""
#: ../header.php:44 #: ../header.php:44
msgid "Skip to content" msgid "Skip to content"
msgstr "" msgstr "עבור לתוכן"
#: ../header.php:64 #: ../header.php:64
msgid "Logo for %s" msgid "Logo for %s"
@ -96,39 +101,75 @@ msgstr ""
#: ../inc/intervention.php:12 #: ../inc/intervention.php:12
msgid "Hello," msgid "Hello,"
msgstr "" msgstr "שלום,"
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111
msgid "Primary Menu" msgid "Primary Menu"
msgstr "" msgstr "תפריט ראשי"
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr "הגדל את הכתב"
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr "הקטן את גודל הכתב"
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "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 "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -142,7 +183,7 @@ msgstr ""
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, #: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137,
#: ../inc/activation/namespace.php:143 #: ../inc/activation/namespace.php:143
msgid "About" msgid "About"
msgstr "" msgstr "אודות"
#: ../inc/activation/namespace.php:39 #: ../inc/activation/namespace.php:39
msgid "" msgid ""
@ -153,7 +194,7 @@ msgstr ""
#: ../inc/activation/namespace.php:40 #: ../inc/activation/namespace.php:40
msgid "MOBI (for Kindle ebooks)" msgid "MOBI (for Kindle ebooks)"
msgstr "" msgstr "MOBI (לספרי Kindle)"
#: ../inc/activation/namespace.php:41 #: ../inc/activation/namespace.php:41
msgid "EPUB (for all other ebookstores)" msgid "EPUB (for all other ebookstores)"
@ -169,12 +210,12 @@ msgstr ""
#: ../inc/activation/namespace.php:46 #: ../inc/activation/namespace.php:46
msgid "see here" msgid "see here"
msgstr "" msgstr "ראה כאן"
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167,
#: ../inc/activation/namespace.php:173 #: ../inc/activation/namespace.php:173
msgid "Help" msgid "Help"
msgstr "" msgstr "עזרה"
#: ../inc/activation/namespace.php:58 #: ../inc/activation/namespace.php:58
msgid "" msgid ""
@ -199,11 +240,11 @@ msgstr ""
#: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, #: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152,
#: ../inc/activation/namespace.php158, ../page-catalog.php:4 #: ../inc/activation/namespace.php158, ../page-catalog.php:4
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr "קטלוג"
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr "בית"
#: ../inc/admin/namespace.php:30 #: ../inc/admin/namespace.php:30
msgid "Catalog updated." msgid "Catalog updated."
@ -211,7 +252,7 @@ msgstr ""
#: ../inc/admin/namespace.php:31 #: ../inc/admin/namespace.php:31
msgid "Sorry, but your catalog was not updated. Please try again." msgid "Sorry, but your catalog was not updated. Please try again."
msgstr "" msgstr "מצטערים, אבל הקטלוג לא עודכן. בבקשה נסו שנית"
#: ../inc/admin/namespace.php:32 #: ../inc/admin/namespace.php:32
msgid "Dismiss this notice." msgid "Dismiss this notice."
@ -224,204 +265,204 @@ msgstr ""
#: ../inc/admin/namespace.php:72 #: ../inc/admin/namespace.php:72
msgctxt "pressbooks-aldine" msgctxt "pressbooks-aldine"
msgid "Show in Catalog" msgid "Show in Catalog"
msgstr "" msgstr "הצג בקטלוג"
#: ../inc/admin/namespace.php:73 #: ../inc/admin/namespace.php:73
msgctxt "pressbooks-aldine" msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr "[ספר זה הוא פרטי, לא תוכל להציגו בקטלוג שלך]"
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr "מדיה חברתית"
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr "טופס ליצירת קשר"
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr "הצג טופס ליצירת קשר"
#: ../inc/customizer/namespace.php:148
msgid "Contact Form Title"
msgstr ""
#: ../inc/filters/namespace.php:60
msgid "Continued"
msgstr ""
#: ../inc/filters/namespace.php:84 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Page Section" msgid "Contact Us"
msgstr "" msgstr "צור איתנו קשר"
#: ../inc/filters/namespace.php:90
msgid "Page Section (Accent)"
msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr "כותרת הפניה"
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr "מייל ליצירת קשר"
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr "מתמשך"
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr "יצירת קשר"
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr "התחבר"
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr "הירשם"
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr "מנהל"
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr "הספר שלי"
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr "התנתק"
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr "נדרש שם."
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr "נדרשת כתובת מייל"
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr "כתובת מייל לא חוקית."
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr "הודעתך נשלחה!"
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr "לא ניתן לשלוח את ההודעה"
#: ../page-catalog.php:55 #: ../page-catalog.php:55
msgid "No Books Found" msgid "No Books Found"
msgstr "" msgstr "לא נמצאו ספרים"
#: ../page-catalog.php:58 #: ../page-catalog.php:58
msgid "No books have been added to the catalog." msgid "No books have been added to the catalog."
msgstr "" msgstr "עדיין לא הוספת ספר לקטלוג"
#: ../partials/book.php:27 #: ../partials/book.php:27
msgid "About this book" msgid "About this book"
msgstr "" msgstr "אודות הספר"
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr "שם (נדרש)"
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr "כתובת המייל שלך (נדרש)"
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr "המוסד שלך (נדרש)"
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr "ההודעה שלך (נדרש)"
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" 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" msgid "View Complete Catalog"
msgstr "" msgstr "צפה בקטלוג המלא"
#: ../partials/content-none.php:14 #: ../partials/content-none.php:14
msgid "Nothing Found" msgid "Nothing Found"
@ -429,13 +470,15 @@ msgstr ""
#: ../partials/content-none.php:25 #: ../partials/content-none.php:25
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>." msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
msgstr "" msgstr "מוכן לפרסום הפוסט הראשון שלך? <a href=\"%1$s\">Get started here</a>."
#: ../partials/content-none.php:38 #: ../partials/content-none.php:38
msgid "" msgid ""
"Sorry, but nothing matched your search terms. Please try again with some " "Sorry, but nothing matched your search terms. Please try again with some "
"different keywords." "different keywords."
msgstr "" msgstr ""
"מצטערים, לא נמצאו תוצאות עבור מילות החיפוש הללו. בבקשה נסו להשתמש במילות "
"מפתח אחרות."
#: ../partials/content-none.php:44 #: ../partials/content-none.php:44
msgid "" msgid ""
@ -457,19 +500,15 @@ msgstr ""
#: ../partials/content-page-catalog.php:37 #: ../partials/content-page-catalog.php:37
msgid "All Licenses" msgid "All Licenses"
msgstr "" msgstr "כל הרשיונות"
#: ../partials/content-page-catalog.php:46 #: ../partials/content-page-catalog.php:46
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr "מיין לפי"
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr "נושא"
#: ../partials/content-page-catalog.php:51 #: ../partials/content-page-catalog.php:51
msgid "Latest" msgid "Latest"
@ -481,27 +520,27 @@ msgstr ""
#: ../partials/content-page-catalog.php:59 #: ../partials/content-page-catalog.php:59
msgid "Submit" msgid "Submit"
msgstr "" msgstr "שלח"
#: ../partials/content-page.php22, ../partials/content.php:45 #: ../partials/content-page.php22, ../partials/content.php:45
msgid "Pages:" msgid "Pages:"
msgstr "" msgstr "עמודים:"
#: ../partials/content-page.php:35 #: ../partials/content-page.php:35
msgid "Edit <span class=\"screen-reader-text\">%s</span>" msgid "Edit <span class=\"screen-reader-text\">%s</span>"
msgstr "" msgstr "ערוך <span class=\"screen-reader-text\">%s</span>"
#: ../partials/content.php:34 #: ../partials/content.php:34
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>" msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>"
msgstr "" msgstr "המשך לקרוא <span class=\"screen-reader-text\"> \"%s\"</span>"
#: ../partials/paged-navigation.php:2 #: ../partials/paged-navigation.php:2
msgid "Navigation" msgid "Navigation"
msgstr "" msgstr "ניווט"
#: ../search.php:21 #: ../search.php:21
msgid "Search Results for: %s" msgid "Search Results for: %s"
msgstr "" msgstr "חפש תוצאות עבור: %s"
#: ../searchform.php:3 #: ../searchform.php:3
msgctxt "label" msgctxt "label"

BIN
languages/hu_HU.mo

Binary file not shown.

350
languages/hu_HU.po

@ -1,8 +1,11 @@
# Copyright (C) 2018 pressbooks-aldine # Copyright (C) 2018 pressbooks-aldine
# This file is distributed under the same license as the pressbooks-aldine package. # This file is distributed under the same license as the pressbooks-aldine package.
# Translators:
# Antonio Devís <colomet@hotmail.com>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pressbooks-aldine\n" "Project-Id-Version: pressbooks-aldine\n"
"Last-Translator: Antonio Devís <colomet@hotmail.com>, 2018\n"
"Language-Team: Hungarian (Hungary) (https://www.transifex.com/pressbooks/teams/9194/hu_HU/)\n" "Language-Team: Hungarian (Hungary) (https://www.transifex.com/pressbooks/teams/9194/hu_HU/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -21,7 +24,7 @@ msgstr ""
#: ../404.php:21 #: ../404.php:21
msgid "It looks like nothing was found at this location." 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 #: ../comments.php:34
msgid "One thought on &ldquo;%1$s&rdquo;" msgid "One thought on &ldquo;%1$s&rdquo;"
@ -36,7 +39,7 @@ msgstr[1] ""
#: ../comments.php:63 #: ../comments.php:63
msgid "Comments are closed." msgid "Comments are closed."
msgstr "" msgstr "A hozzászólások le vannak zárva."
#: ../footer.php40, ../footer.php:44 #: ../footer.php40, ../footer.php:44
msgid "%s on Facebook" msgid "%s on Facebook"
@ -52,7 +55,7 @@ msgstr ""
#: ../footer.php:72 #: ../footer.php:72
msgid "Open Source" msgid "Open Source"
msgstr "" msgstr "Nyílt Forráskód"
#: ../footer.php:73 #: ../footer.php:73
msgid "Open Textbooks" msgid "Open Textbooks"
@ -60,19 +63,19 @@ msgstr ""
#: ../footer.php:74 #: ../footer.php:74
msgid "Open Book Publishing" msgid "Open Book Publishing"
msgstr "" msgstr "Nyílt Könyvkiadás"
#: ../footer.php75, ../inc/activation/namespace.php:27 #: ../footer.php75, ../inc/activation/namespace.php:27
msgid "Learn More" msgid "Learn More"
msgstr "" msgstr "Tudjon meg többet"
#: ../footer.php79, ../footer.php:83 #: ../footer.php79, ../footer.php:83
msgid "Pressbooks on Facebook" msgid "Pressbooks on Facebook"
msgstr "" msgstr "Pressbooks a Facebookon"
#: ../footer.php85, ../footer.php:89 #: ../footer.php85, ../footer.php:89
msgid "Pressbooks on Twitter" msgid "Pressbooks on Twitter"
msgstr "" msgstr "Pressbooks a Twitteren"
#: ../functions.php:18 #: ../functions.php:18
msgid "Dependencies Missing" msgid "Dependencies Missing"
@ -84,7 +87,7 @@ msgstr ""
#: ../header.php:44 #: ../header.php:44
msgid "Skip to content" msgid "Skip to content"
msgstr "" msgstr "Ugrás a tartalomra"
#: ../header.php:64 #: ../header.php:64
msgid "Logo for %s" msgid "Logo for %s"
@ -96,53 +99,93 @@ msgstr ""
#: ../inc/intervention.php:12 #: ../inc/intervention.php:12
msgid "Hello," msgid "Hello,"
msgstr "" msgstr "Szia,"
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111
msgid "Primary Menu" msgid "Primary Menu"
msgstr "" msgstr "Főmenü"
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr "Lábléc Menü"
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr "Betűméret Növelése"
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr "Betűméret Csökkentése"
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 "Oldal-szekció"
#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49
msgid "Title"
msgstr "Cím"
#: ../inc/actions/namespace.php:281
msgid "Standard"
msgstr "Sztenderd"
#: ../inc/actions/namespace.php:282
msgid "Accent"
msgstr ""
#: ../inc/actions/namespace.php:283
msgid "Bordered"
msgstr "Határolt"
#: ../inc/actions/namespace.php:284
msgid "Borderless"
msgstr "Nincs határ"
#: ../inc/actions/namespace.php:287
msgid "Call to Action"
msgstr ""
#: ../inc/actions/namespace.php:288
msgid "Text"
msgstr "Szöveg"
#: ../inc/actions/namespace.php:289
msgid "Link"
msgstr "Link"
#: ../inc/activation/namespace.php:25 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr "A Pressbookról"
#: ../inc/activation/namespace.php:26 #: ../inc/activation/namespace.php:26
msgid "" msgid ""
"Pressbooks is easy-to-use book writing software that lets you create a book " "Pressbooks is easy-to-use book writing software that lets you create a book "
"in all the formats you need to publish." "in all the formats you need to publish."
msgstr "" 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.php34, ../inc/activation/namespace.php137,
#: ../inc/activation/namespace.php:143 #: ../inc/activation/namespace.php:143
msgid "About" msgid "About"
msgstr "" msgstr "Rólunk"
#: ../inc/activation/namespace.php:39 #: ../inc/activation/namespace.php:39
msgid "" msgid ""
@ -150,18 +193,22 @@ msgid ""
"publish textbooks, scholarly monographs, syllabi, fiction and non-fiction " "publish textbooks, scholarly monographs, syllabi, fiction and non-fiction "
"books, white papers, and more in multiple formats including:" "books, white papers, and more in multiple formats including:"
msgstr "" 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 #: ../inc/activation/namespace.php:40
msgid "MOBI (for Kindle ebooks)" msgid "MOBI (for Kindle ebooks)"
msgstr "" msgstr "MOBI (Kindle e-könyvekhez)"
#: ../inc/activation/namespace.php:41 #: ../inc/activation/namespace.php:41
msgid "EPUB (for all other ebookstores)" msgid "EPUB (for all other ebookstores)"
msgstr "" msgstr "EPUB (minden más e-könyvtár esetében)"
#: ../inc/activation/namespace.php:42 #: ../inc/activation/namespace.php:42
msgid "designed PDF (for print-on-demand and digital distribution)" msgid "designed PDF (for print-on-demand and digital distribution)"
msgstr "" msgstr ""
"tervezett PDF (nyomtatásra igény szerint és digitális terjesztés esetén)"
#: ../inc/activation/namespace.php:45 #: ../inc/activation/namespace.php:45
msgid "For more information about Pressbooks, %s." msgid "For more information about Pressbooks, %s."
@ -169,12 +216,12 @@ msgstr ""
#: ../inc/activation/namespace.php:46 #: ../inc/activation/namespace.php:46
msgid "see here" msgid "see here"
msgstr "" msgstr "lásd itt"
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167,
#: ../inc/activation/namespace.php:173 #: ../inc/activation/namespace.php:173
msgid "Help" msgid "Help"
msgstr "" msgstr "Súgó"
#: ../inc/activation/namespace.php:58 #: ../inc/activation/namespace.php:58
msgid "" msgid ""
@ -184,248 +231,249 @@ msgstr ""
#: ../inc/activation/namespace.php:59 #: ../inc/activation/namespace.php:59
msgid "4 Step Guide to Making a Book on Pressbooks" 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 #: ../inc/activation/namespace.php:60
msgid "Guide to Using Pressbooks" msgid "Guide to Using Pressbooks"
msgstr "" msgstr "Útmutató a Pressbooks használatához"
#: ../inc/activation/namespace.php:62 #: ../inc/activation/namespace.php:62
msgid "" msgid ""
"If you require further assistance, please contact your network manager." "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.php67, ../inc/activation/namespace.php116,
#: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, #: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152,
#: ../inc/activation/namespace.php158, ../page-catalog.php:4 #: ../inc/activation/namespace.php158, ../page-catalog.php:4
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr "Katalógus"
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr "Főoldal"
#: ../inc/admin/namespace.php:30 #: ../inc/admin/namespace.php:30
msgid "Catalog updated." msgid "Catalog updated."
msgstr "" msgstr "Katalógus frissítve."
#: ../inc/admin/namespace.php:31 #: ../inc/admin/namespace.php:31
msgid "Sorry, but your catalog was not updated. Please try again." msgid "Sorry, but your catalog was not updated. Please try again."
msgstr "" msgstr ""
"Sajnáljuk, de a katalógusát nem tudtuk frissíteni. Kérjük, próbálja újra."
#: ../inc/admin/namespace.php:32 #: ../inc/admin/namespace.php:32
msgid "Dismiss this notice." msgid "Dismiss this notice."
msgstr "" msgstr "Értesítés bezárása"
#: ../inc/admin/namespace.php:61 #: ../inc/admin/namespace.php:61
msgid "In Catalog" msgid "In Catalog"
msgstr "" msgstr "Katalógusban"
#: ../inc/admin/namespace.php:72 #: ../inc/admin/namespace.php:72
msgctxt "pressbooks-aldine" msgctxt "pressbooks-aldine"
msgid "Show in Catalog" msgid "Show in Catalog"
msgstr "" msgstr "Mutassa a Katalógusban"
#: ../inc/admin/namespace.php:73 #: ../inc/admin/namespace.php:73
msgctxt "pressbooks-aldine" msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr "Főszín"
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:57 #: ../inc/customizer/namespace.php:79
msgid "Primary Foreground Color" msgid "Accent Color (Hover)"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:80
msgid "Used for text on a primary background." msgid "Variant of the accent color, used for secondary element hover states."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:85
msgid "Primary Foreground Color"
msgstr "Előtér Főszíne"
#: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background."
msgstr "Fő háttéren használt szöveghez."
#: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr "Közösségi Média"
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr "Facebook"
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr "Twitter"
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr "Címoldal Katalógus"
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "Mutassa a Címoldal Katalógust"
#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19
msgid "Our Latest Titles"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:124 #: ../inc/customizer/namespace.php:153
msgid "Front Page Catalog Title" msgid "Front Page Catalog Title"
msgstr "" msgstr "Címoldal Katalógusának Címe"
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr "Kapcsolatfelvéteteli Űrlap"
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr "Mutassa a Kapcsolatfelvételi Űrlapot"
#: ../inc/customizer/namespace.php:148
msgid "Contact Form Title"
msgstr ""
#: ../inc/filters/namespace.php:60 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Continued" msgid "Contact Us"
msgstr "" msgstr "Lépjen kapcsolatba velünk"
#: ../inc/filters/namespace.php:84
msgid "Page Section"
msgstr ""
#: ../inc/filters/namespace.php:90
msgid "Page Section (Accent)"
msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr "Kapcsolatfelvételi Űrlap Címe"
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr "Email Cím"
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr "Folytatás"
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr "Kapcsolat"
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr "Bejelentkezés"
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr "Regisztráció"
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr "Admin"
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr "Könyveim"
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr "Kilépés"
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr "Név szükséges."
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr "Email szükséges"
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr "Érvénytelen email cím"
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr "Intézmény szükséges."
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr "Üzenet szükséges."
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr "Üzenetét elküldtük!"
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr "Üzenetét nem lehetett elküldeni."
#: ../page-catalog.php:55 #: ../page-catalog.php:55
msgid "No Books Found" msgid "No Books Found"
msgstr "" msgstr "Nem találhatók könyvek"
#: ../page-catalog.php:58 #: ../page-catalog.php:58
msgid "No books have been added to the catalog." 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 #: ../partials/book.php:27
msgid "About this book" msgid "About this book"
msgstr "" msgstr "Erről a könyvről"
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr "Neve (szükséges)"
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr "Email címe (szükséges)"
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr "Intézménye (szükséges)"
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr "Üzenete (szükséges)"
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr "Küldés"
#: ../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" msgid "View Complete Catalog"
msgstr "" msgstr "Lásd a Teljes Katalógust"
#: ../partials/content-none.php:14 #: ../partials/content-none.php:14
msgid "Nothing Found" msgid "Nothing Found"
msgstr "" msgstr "Nincs Találat"
#: ../partials/content-none.php:25 #: ../partials/content-none.php:25
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>." msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
@ -436,6 +484,8 @@ msgid ""
"Sorry, but nothing matched your search terms. Please try again with some " "Sorry, but nothing matched your search terms. Please try again with some "
"different keywords." "different keywords."
msgstr "" 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 #: ../partials/content-none.php:44
msgid "" msgid ""
@ -445,47 +495,43 @@ msgstr ""
#: ../partials/content-page-catalog.php:17 #: ../partials/content-page-catalog.php:17
msgid "Filter by Subject" msgid "Filter by Subject"
msgstr "" msgstr "Szűrés Tárgy szerint"
#: ../partials/content-page-catalog.php:19 #: ../partials/content-page-catalog.php:19
msgid "All Subjects" msgid "All Subjects"
msgstr "" msgstr "Összes Tárgy"
#: ../partials/content-page-catalog.php:35 #: ../partials/content-page-catalog.php:35
msgid "Filter by License" msgid "Filter by License"
msgstr "" msgstr "Szűrés Licence szerint"
#: ../partials/content-page-catalog.php:37 #: ../partials/content-page-catalog.php:37
msgid "All Licenses" msgid "All Licenses"
msgstr "" msgstr "Összes Licence"
#: ../partials/content-page-catalog.php:46 #: ../partials/content-page-catalog.php:46
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr "Rendezve"
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr "Tárgy"
#: ../partials/content-page-catalog.php:51 #: ../partials/content-page-catalog.php:51
msgid "Latest" msgid "Latest"
msgstr "" msgstr "Legújabb"
#: ../partials/content-page-catalog.php:58 #: ../partials/content-page-catalog.php:58
msgid "Clear Filters" msgid "Clear Filters"
msgstr "" msgstr "Szűrők törlése"
#: ../partials/content-page-catalog.php:59 #: ../partials/content-page-catalog.php:59
msgid "Submit" msgid "Submit"
msgstr "" msgstr "Beküldés"
#: ../partials/content-page.php22, ../partials/content.php:45 #: ../partials/content-page.php22, ../partials/content.php:45
msgid "Pages:" msgid "Pages:"
msgstr "" msgstr "Oldalak:"
#: ../partials/content-page.php:35 #: ../partials/content-page.php:35
msgid "Edit <span class=\"screen-reader-text\">%s</span>" msgid "Edit <span class=\"screen-reader-text\">%s</span>"
@ -497,7 +543,7 @@ msgstr ""
#: ../partials/paged-navigation.php:2 #: ../partials/paged-navigation.php:2
msgid "Navigation" msgid "Navigation"
msgstr "" msgstr "Navigáció"
#: ../search.php:21 #: ../search.php:21
msgid "Search Results for: %s" msgid "Search Results for: %s"
@ -506,9 +552,9 @@ msgstr ""
#: ../searchform.php:3 #: ../searchform.php:3
msgctxt "label" msgctxt "label"
msgid "Search Catalog" msgid "Search Catalog"
msgstr "" msgstr "Katalógus Keresése"
#: ../searchform.php:6 #: ../searchform.php:6
msgctxt "submit button" msgctxt "submit button"
msgid "Search" msgid "Search"
msgstr "" msgstr "Keresés"

BIN
languages/it_IT.mo

Binary file not shown.

377
languages/it_IT.po

@ -1,8 +1,12 @@
# Copyright (C) 2018 pressbooks-aldine # Copyright (C) 2018 pressbooks-aldine
# This file is distributed under the same license as the pressbooks-aldine package. # This file is distributed under the same license as the pressbooks-aldine package.
# Translators:
# Giuseppe Pignataro (Fastbyte01) <rogepix@gmail.com>, 2018
# Antonio Devís <colomet@hotmail.com>, 2018
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: pressbooks-aldine\n" "Project-Id-Version: pressbooks-aldine\n"
"Last-Translator: Antonio Devís <colomet@hotmail.com>, 2018\n"
"Language-Team: Italian (https://www.transifex.com/pressbooks/teams/9194/it/)\n" "Language-Team: Italian (https://www.transifex.com/pressbooks/teams/9194/it/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -17,11 +21,11 @@ msgstr ""
#: ../404.php:17 #: ../404.php:17
msgid "Oops! That page can&rsquo;t be found." msgid "Oops! That page can&rsquo;t be found."
msgstr "" msgstr "Oops! Non trovo questa pagina."
#: ../404.php:21 #: ../404.php:21
msgid "It looks like nothing was found at this location." msgid "It looks like nothing was found at this location."
msgstr "" msgstr "Sembra che non ci sia nulla in questo sito."
#: ../comments.php:34 #: ../comments.php:34
msgid "One thought on &ldquo;%1$s&rdquo;" msgid "One thought on &ldquo;%1$s&rdquo;"
@ -36,7 +40,7 @@ msgstr[1] ""
#: ../comments.php:63 #: ../comments.php:63
msgid "Comments are closed." msgid "Comments are closed."
msgstr "" msgstr "Commenti negati"
#: ../footer.php40, ../footer.php:44 #: ../footer.php40, ../footer.php:44
msgid "%s on Facebook" msgid "%s on Facebook"
@ -52,31 +56,31 @@ msgstr ""
#: ../footer.php:72 #: ../footer.php:72
msgid "Open Source" msgid "Open Source"
msgstr "" msgstr "Open Source"
#: ../footer.php:73 #: ../footer.php:73
msgid "Open Textbooks" msgid "Open Textbooks"
msgstr "" msgstr "Apri Textbooks"
#: ../footer.php:74 #: ../footer.php:74
msgid "Open Book Publishing" msgid "Open Book Publishing"
msgstr "" msgstr "Apri Book Publishing"
#: ../footer.php75, ../inc/activation/namespace.php:27 #: ../footer.php75, ../inc/activation/namespace.php:27
msgid "Learn More" msgid "Learn More"
msgstr "" msgstr "Per saperne di più"
#: ../footer.php79, ../footer.php:83 #: ../footer.php79, ../footer.php:83
msgid "Pressbooks on Facebook" msgid "Pressbooks on Facebook"
msgstr "" msgstr "Pressbooks su Facebook"
#: ../footer.php85, ../footer.php:89 #: ../footer.php85, ../footer.php:89
msgid "Pressbooks on Twitter" msgid "Pressbooks on Twitter"
msgstr "" msgstr "Pressbooks su Twitter"
#: ../functions.php:18 #: ../functions.php:18
msgid "Dependencies Missing" msgid "Dependencies Missing"
msgstr "" msgstr "Dipendenze mancanti"
#: ../functions.php:19 #: ../functions.php:19
msgid "You must run <code>composer install</code> from the Aldine directory." msgid "You must run <code>composer install</code> from the Aldine directory."
@ -84,7 +88,7 @@ msgstr ""
#: ../header.php:44 #: ../header.php:44
msgid "Skip to content" msgid "Skip to content"
msgstr "" msgstr "Salta questo contenuto"
#: ../header.php:64 #: ../header.php:64
msgid "Logo for %s" msgid "Logo for %s"
@ -92,57 +96,97 @@ msgstr ""
#: ../header.php:74 #: ../header.php:74
msgid "Toggle Menu" msgid "Toggle Menu"
msgstr "" msgstr "Menù Toggle"
#: ../inc/intervention.php:12 #: ../inc/intervention.php:12
msgid "Hello," msgid "Hello,"
msgstr "" msgstr "Ciao,"
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 #: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111
msgid "Primary Menu" msgid "Primary Menu"
msgstr "" msgstr "Menu principale"
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 #: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr "Menù a pié di pagina"
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr "Blocco della Rete a pié di Pagina 1"
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr "Blocco della Rete a pié di Pagina 2"
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr "Aumenta dimensione carattere"
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr "Riduci dimensione carattere"
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" msgstr ""
"Questa pagina mostra il tuo catalogo di rete, non c'è nessun contenuto da "
"modificare."
#: ../inc/actions/namespace.php:279
msgid "Page Section"
msgstr "Sezione di pagina"
#: ../inc/actions/namespace.php280, ../partials/content-page-catalog.php:49
msgid "Title"
msgstr "Titolo"
#: ../inc/actions/namespace.php:281
msgid "Standard"
msgstr "Standard"
#: ../inc/actions/namespace.php:282
msgid "Accent"
msgstr "Evidenzia"
#: ../inc/actions/namespace.php:283
msgid "Bordered"
msgstr "Con bordo"
#: ../inc/actions/namespace.php:284
msgid "Borderless"
msgstr "Senza bordo"
#: ../inc/actions/namespace.php:287
msgid "Call to Action"
msgstr "Elabora"
#: ../inc/actions/namespace.php:288
msgid "Text"
msgstr "Testo"
#: ../inc/actions/namespace.php:289
msgid "Link"
msgstr "Link"
#: ../inc/activation/namespace.php:25 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr "Informazioni su Pressbooks"
#: ../inc/activation/namespace.php:26 #: ../inc/activation/namespace.php:26
msgid "" msgid ""
"Pressbooks is easy-to-use book writing software that lets you create a book " "Pressbooks is easy-to-use book writing software that lets you create a book "
"in all the formats you need to publish." "in all the formats you need to publish."
msgstr "" 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.php34, ../inc/activation/namespace.php137,
#: ../inc/activation/namespace.php:143 #: ../inc/activation/namespace.php:143
msgid "About" msgid "About"
msgstr "" msgstr "Informazioni su"
#: ../inc/activation/namespace.php:39 #: ../inc/activation/namespace.php:39
msgid "" msgid ""
@ -150,18 +194,21 @@ msgid ""
"publish textbooks, scholarly monographs, syllabi, fiction and non-fiction " "publish textbooks, scholarly monographs, syllabi, fiction and non-fiction "
"books, white papers, and more in multiple formats including:" "books, white papers, and more in multiple formats including:"
msgstr "" 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 #: ../inc/activation/namespace.php:40
msgid "MOBI (for Kindle ebooks)" msgid "MOBI (for Kindle ebooks)"
msgstr "" msgstr "MOBI (per ebook Kindle)"
#: ../inc/activation/namespace.php:41 #: ../inc/activation/namespace.php:41
msgid "EPUB (for all other ebookstores)" msgid "EPUB (for all other ebookstores)"
msgstr "" msgstr "EPUB (per tutti gli altri ebookstore)"
#: ../inc/activation/namespace.php:42 #: ../inc/activation/namespace.php:42
msgid "designed PDF (for print-on-demand and digital distribution)" 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 #: ../inc/activation/namespace.php:45
msgid "For more information about Pressbooks, %s." msgid "For more information about Pressbooks, %s."
@ -169,12 +216,12 @@ msgstr ""
#: ../inc/activation/namespace.php:46 #: ../inc/activation/namespace.php:46
msgid "see here" msgid "see here"
msgstr "" msgstr "Vedi qui"
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, #: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167,
#: ../inc/activation/namespace.php:173 #: ../inc/activation/namespace.php:173
msgid "Help" msgid "Help"
msgstr "" msgstr "Aiuto"
#: ../inc/activation/namespace.php:58 #: ../inc/activation/namespace.php:58
msgid "" msgid ""
@ -184,248 +231,256 @@ msgstr ""
#: ../inc/activation/namespace.php:59 #: ../inc/activation/namespace.php:59
msgid "4 Step Guide to Making a Book on Pressbooks" 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 #: ../inc/activation/namespace.php:60
msgid "Guide to Using Pressbooks" msgid "Guide to Using Pressbooks"
msgstr "" msgstr "Guida all'utilizzo di Pressbooks"
#: ../inc/activation/namespace.php:62 #: ../inc/activation/namespace.php:62
msgid "" msgid ""
"If you require further assistance, please contact your network manager." "If you require further assistance, please contact your network manager."
msgstr "" msgstr ""
"Per richiedere ulteriore aiuto contattare il nostro manager di rete, per "
"favore."
#: ../inc/activation/namespace.php67, ../inc/activation/namespace.php116, #: ../inc/activation/namespace.php67, ../inc/activation/namespace.php116,
#: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152, #: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152,
#: ../inc/activation/namespace.php158, ../page-catalog.php:4 #: ../inc/activation/namespace.php158, ../page-catalog.php:4
msgid "Catalog" 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" msgid "Home"
msgstr "" msgstr "Home"
#: ../inc/admin/namespace.php:30 #: ../inc/admin/namespace.php:30
msgid "Catalog updated." msgid "Catalog updated."
msgstr "" msgstr "Catalogo aggiornato."
#: ../inc/admin/namespace.php:31 #: ../inc/admin/namespace.php:31
msgid "Sorry, but your catalog was not updated. Please try again." msgid "Sorry, but your catalog was not updated. Please try again."
msgstr "" msgstr ""
"Ci dispiace, ma il tuo catalogo non è stato aggiornato. Riprova, per favore."
#: ../inc/admin/namespace.php:32 #: ../inc/admin/namespace.php:32
msgid "Dismiss this notice." msgid "Dismiss this notice."
msgstr "" msgstr "Ignora questa notizia."
#: ../inc/admin/namespace.php:61 #: ../inc/admin/namespace.php:61
msgid "In Catalog" msgid "In Catalog"
msgstr "" msgstr "In catalogo"
#: ../inc/admin/namespace.php:72 #: ../inc/admin/namespace.php:72
msgctxt "pressbooks-aldine" msgctxt "pressbooks-aldine"
msgid "Show in Catalog" msgid "Show in Catalog"
msgstr "" msgstr "Mostra nel catalogo"
#: ../inc/admin/namespace.php:73 #: ../inc/admin/namespace.php:73
msgctxt "pressbooks-aldine" msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
"Questo libro è privato, quindi non può essere mostrato nel tuo catalogo."
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" 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." msgid "Primary color, used for links and other primary elements."
msgstr "Colore primario, usato per link e altri elementi primari."
#: ../inc/customizer/namespace.php:67
msgid "Primary Color (Hover)"
msgstr "Colore Primario (Posiziona il cursore)"
#: ../inc/customizer/namespace.php:68
msgid "Variant of the primary color, used for primary element hover states."
msgstr "" msgstr ""
"Variante del colore primario, usata quando si posiziona il cursore su stati "
"di elementi primari."
#: ../inc/customizer/namespace.php:51 #: ../inc/customizer/namespace.php:73
msgid "Accent Color" msgid "Accent Color"
msgstr "" msgstr "Colore usato per evidenziare"
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "Colore per evidenziare, usato in abbellimenti o elementi secondari."
#: ../inc/customizer/namespace.php:79
msgid "Accent Color (Hover)"
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 "" msgstr ""
"Variante del colore per evidenziare, usata per quando si posiziona il "
"cursore su stati di elementi secondari."
#: ../inc/customizer/namespace.php:57 #: ../inc/customizer/namespace.php:85
msgid "Primary Foreground Color" msgid "Primary Foreground Color"
msgstr "" msgstr "Colore Primario in Primo Piano"
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr "Usato per un testo su uno sfondo primario."
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr "Colore per evidenziare e mettere in Primo Piano."
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." 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:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr "Social Media"
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr "Facebook"
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr "Twitter"
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr "Catalogo della Prima Pagina"
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" 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 "I Nostri Ultimi Titoli"
#: ../inc/customizer/namespace.php:124 #: ../inc/customizer/namespace.php:153
msgid "Front Page Catalog Title" msgid "Front Page Catalog Title"
msgstr "" msgstr "Titolo del Catalogo della Prima Pagina"
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr "Modulo di Contatto"
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr "Mostra il Modulo di Contatto"
#: ../inc/customizer/namespace.php:148
msgid "Contact Form Title"
msgstr ""
#: ../inc/filters/namespace.php:60
msgid "Continued"
msgstr ""
#: ../inc/filters/namespace.php:84 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Page Section" msgid "Contact Us"
msgstr "" msgstr "Come contattarci"
#: ../inc/filters/namespace.php:90
msgid "Page Section (Accent)"
msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr "Titolo del Modulo di Contatto"
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr "Indirizzo Email"
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr "Continuato"
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr "Contatto"
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr "Accedi"
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr "Iscriviti"
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr "Amministratore"
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr "I Miei Libri"
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr "Disconnetti"
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr "È richiesto un Nome."
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr "È richiesta un'Email."
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr "L'Email non è valida."
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr "È richiesta un'organizzazione."
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr "È richiesto un messaggio."
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr "Il tuo messaggio è stato inviato!"
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr "Il tuo messaggio non può essere inviato."
#: ../page-catalog.php:55 #: ../page-catalog.php:55
msgid "No Books Found" msgid "No Books Found"
msgstr "" msgstr "Nessun libro trovato."
#: ../page-catalog.php:58 #: ../page-catalog.php:58
msgid "No books have been added to the catalog." msgid "No books have been added to the catalog."
msgstr "" msgstr "Nessun libro è stato aggiunto al catalogo."
#: ../partials/book.php:27 #: ../partials/book.php:27
msgid "About this book" msgid "About this book"
msgstr "" msgstr "Riguardo questo libro"
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr "Il tuo nome (richiesto)"
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr "Il tuo indirizzo email (richiesto)"
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr "La tua organizzazione (richiesta)"
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr "Il tuo messaggio (richiesto)"
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr "Invia"
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr "Vedi Catalogo Completo"
#: ../partials/content-none.php:14 #: ../partials/content-none.php:14
msgid "Nothing Found" msgid "Nothing Found"
msgstr "" msgstr "Nessun Risultato"
#: ../partials/content-none.php:25 #: ../partials/content-none.php:25
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>." msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
@ -436,6 +491,8 @@ msgid ""
"Sorry, but nothing matched your search terms. Please try again with some " "Sorry, but nothing matched your search terms. Please try again with some "
"different keywords." "different keywords."
msgstr "" msgstr ""
"Ci dispiace, ma nulla corrisponde ai tuoi criteri di ricerca. Riprova con "
"altre parole chiave, per favore."
#: ../partials/content-none.php:44 #: ../partials/content-none.php:44
msgid "" msgid ""
@ -445,47 +502,43 @@ msgstr ""
#: ../partials/content-page-catalog.php:17 #: ../partials/content-page-catalog.php:17
msgid "Filter by Subject" msgid "Filter by Subject"
msgstr "" msgstr "Filtra per Argomento"
#: ../partials/content-page-catalog.php:19 #: ../partials/content-page-catalog.php:19
msgid "All Subjects" msgid "All Subjects"
msgstr "" msgstr "Tutti gli Argomenti"
#: ../partials/content-page-catalog.php:35 #: ../partials/content-page-catalog.php:35
msgid "Filter by License" msgid "Filter by License"
msgstr "" msgstr "Filtra per Licensa"
#: ../partials/content-page-catalog.php:37 #: ../partials/content-page-catalog.php:37
msgid "All Licenses" msgid "All Licenses"
msgstr "" msgstr "Tutte le License"
#: ../partials/content-page-catalog.php:46 #: ../partials/content-page-catalog.php:46
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr "Ordina per"
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr "Argomento"
#: ../partials/content-page-catalog.php:51 #: ../partials/content-page-catalog.php:51
msgid "Latest" msgid "Latest"
msgstr "" msgstr "Più recenti"
#: ../partials/content-page-catalog.php:58 #: ../partials/content-page-catalog.php:58
msgid "Clear Filters" msgid "Clear Filters"
msgstr "" msgstr "Rimuovi il Filtro"
#: ../partials/content-page-catalog.php:59 #: ../partials/content-page-catalog.php:59
msgid "Submit" msgid "Submit"
msgstr "" msgstr "Invia"
#: ../partials/content-page.php22, ../partials/content.php:45 #: ../partials/content-page.php22, ../partials/content.php:45
msgid "Pages:" msgid "Pages:"
msgstr "" msgstr "Pagine:"
#: ../partials/content-page.php:35 #: ../partials/content-page.php:35
msgid "Edit <span class=\"screen-reader-text\">%s</span>" msgid "Edit <span class=\"screen-reader-text\">%s</span>"
@ -497,7 +550,7 @@ msgstr ""
#: ../partials/paged-navigation.php:2 #: ../partials/paged-navigation.php:2
msgid "Navigation" msgid "Navigation"
msgstr "" msgstr "Navigazione"
#: ../search.php:21 #: ../search.php:21
msgid "Search Results for: %s" msgid "Search Results for: %s"
@ -506,9 +559,9 @@ msgstr ""
#: ../searchform.php:3 #: ../searchform.php:3
msgctxt "label" msgctxt "label"
msgid "Search Catalog" msgid "Search Catalog"
msgstr "" msgstr "Cerca Catalogo"
#: ../searchform.php:6 #: ../searchform.php:6
msgctxt "submit button" msgctxt "submit button"
msgid "Search" msgid "Search"
msgstr "" msgstr "Cerca"

180
languages/ja.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/ka_GE.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/kk@Cyrl.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/km_KH.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/ko.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

BIN
languages/lt_LT.mo

Binary file not shown.

567
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 <colomet@hotmail.com>, 2018
msgid ""
msgstr ""
"Project-Id-Version: pressbooks-aldine\n"
"Last-Translator: Antonio Devís <colomet@hotmail.com>, 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&rsquo;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 &ldquo;%1$s&rdquo;"
msgstr ""
#: ../comments.php:40
msgctxt "comments title"
msgid "%1$s thought on &ldquo;%2$s&rdquo;"
msgid_plural "%1$s thoughts on &ldquo;%2$s&rdquo;"
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 <code>composer install</code> 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&rsquo;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? <a href=\"%1$s\">Get started here</a>."
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&rsquo;t find what you&rsquo;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 <span class=\"screen-reader-text\">%s</span>"
msgstr ""
#: ../partials/content.php:34
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>"
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"

180
languages/nb_NO.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/nl_NL.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/no.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/pl.po

@ -108,29 +108,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -203,7 +239,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -233,151 +269,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -393,35 +437,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -465,10 +501,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/pressbooks-aldine.pot

@ -105,26 +105,62 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" 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" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" 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." msgid "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -185,7 +221,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php:71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php:71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -215,151 +251,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php:175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -375,35 +419,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -443,10 +479,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/pt_BR.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/pt_PT.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/ro.po

@ -107,29 +107,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -202,7 +238,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -392,35 +436,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -464,10 +500,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/ru_RU.po

@ -108,29 +108,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -203,7 +239,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -233,151 +269,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -393,35 +437,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -465,10 +501,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/sk_SK.po

@ -107,29 +107,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -202,7 +238,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -392,35 +436,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -464,10 +500,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/sv_SE.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/ta_IN.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/ta_LK.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/tr_TR.po

@ -106,29 +106,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -201,7 +237,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -231,151 +267,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -391,35 +435,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -463,10 +499,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/uk.po

@ -107,29 +107,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -202,7 +238,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -232,151 +268,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -392,35 +436,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -464,10 +500,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/zh.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/zh_CN.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

180
languages/zh_TW.po

@ -105,29 +105,65 @@ msgstr ""
msgid "Footer Menu" msgid "Footer Menu"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:104 #: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1" msgid "Network Footer Block 1"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:114 #: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2" msgid "Network Footer Block 2"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php139, #: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6, #: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7 #: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size" msgid "Increase Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:140 #: ../inc/actions/namespace.php:143
msgid "Decrease Font Size" msgid "Decrease Font Size"
msgstr "" msgstr ""
#: ../inc/actions/namespace.php:223 #: ../inc/actions/namespace.php:226
msgid "" msgid ""
"This page displays your network catalog, so there is no content to edit." "This page displays your network catalog, so there is no content to edit."
msgstr "" 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 #: ../inc/activation/namespace.php:25
msgid "About Pressbooks" msgid "About Pressbooks"
msgstr "" msgstr ""
@ -200,7 +236,7 @@ msgstr ""
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr ""
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 #: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -230,151 +266,159 @@ msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog." msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:45 #: ../inc/customizer/namespace.php:61
msgid "Primary Color" msgid "Primary Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:46 #: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements." msgid "Primary color, used for links and other primary elements."
msgstr "" 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" msgid "Accent Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:52 #: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements." msgid "Accent color, used for flourishes and secondary elements."
msgstr "" 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" msgid "Primary Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:58 #: ../inc/customizer/namespace.php:86
msgid "Used for text on a primary background." msgid "Used for text on a primary background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:63 #: ../inc/customizer/namespace.php:91
msgid "Accent Foreground Color" msgid "Accent Foreground Color"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:64 #: ../inc/customizer/namespace.php:92
msgid "Used for text on an accent color background." msgid "Used for text on an accent color background."
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:83 #: ../inc/customizer/namespace.php:111
msgid "Social Media" msgid "Social Media"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:91 #: ../inc/customizer/namespace.php:119
msgid "Facebook" msgid "Facebook"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:100 #: ../inc/customizer/namespace.php:128
msgid "Twitter" msgid "Twitter"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:107 #: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog" msgid "Front Page Catalog"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:114 #: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog" msgid "Show Front Page Catalog"
msgstr "" 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" msgid "Front Page Catalog Title"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:131 #: ../inc/customizer/namespace.php:160
msgid "Contact Form" msgid "Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:138 #: ../inc/customizer/namespace.php:167
msgid "Show Contact Form" msgid "Show Contact Form"
msgstr "" msgstr ""
#: ../inc/customizer/namespace.php:148 #: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Form Title" msgid "Contact Us"
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)"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:96 #: ../inc/customizer/namespace.php:178
msgid "Page Section (Bordered)" msgid "Contact Form Title"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:102 #: ../inc/customizer/namespace.php:188
msgid "Page Section (Borderless)" msgid "Contact Email"
msgstr "" msgstr ""
#: ../inc/filters/namespace.php:108 #: ../inc/filters/namespace.php:61
msgid "Call to Action" msgid "Continued"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:168 #: ../inc/helpers/namespace.php:171
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:175 #: ../inc/helpers/namespace.php:178
msgid "Sign In" msgid "Sign In"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:181 #: ../inc/helpers/namespace.php:184
msgid "Sign Up" msgid "Sign Up"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:189 #: ../inc/helpers/namespace.php:192
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:197 #: ../inc/helpers/namespace.php:200
msgid "My Books" msgid "My Books"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:203 #: ../inc/helpers/namespace.php:206
msgid "Sign Out" msgid "Sign Out"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:256 #: ../inc/helpers/namespace.php:260
msgid "Name is required." msgid "Name is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:260 #: ../inc/helpers/namespace.php:264
msgid "Email is required." msgid "Email is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:264 #: ../inc/helpers/namespace.php:268
msgid "Email is invalid." msgid "Email is invalid."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:268 #: ../inc/helpers/namespace.php:272
msgid "Institution is required." msgid "Institution is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:272 #: ../inc/helpers/namespace.php:276
msgid "Message is required." msgid "Message is required."
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:278 #: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s" msgid "Contact Form Submission from %s"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:289 #: ../inc/helpers/namespace.php:293
msgid "Your message was sent!" msgid "Your message was sent!"
msgstr "" msgstr ""
#: ../inc/helpers/namespace.php:292 #: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent." msgid "Your message could not be sent."
msgstr "" msgstr ""
@ -390,35 +434,27 @@ msgstr ""
msgid "About this book" msgid "About this book"
msgstr "" msgstr ""
#: ../partials/contact-form.php:11 #: ../partials/contact-form.php:30
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
msgid "Your name (required)" msgid "Your name (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:37 #: ../partials/contact-form.php:38
msgid "Your email address (required)" msgid "Your email address (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:45 #: ../partials/contact-form.php:46
msgid "Your institution (required)" msgid "Your institution (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:53 #: ../partials/contact-form.php:54
msgid "Your message (required)" msgid "Your message (required)"
msgstr "" msgstr ""
#: ../partials/contact-form.php:57 #: ../partials/contact-form.php:58
msgid "Send" msgid "Send"
msgstr "" msgstr ""
#: ../partials/content-front-page.php:18 #: ../partials/content-front-page.php:67
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
msgid "View Complete Catalog" msgid "View Complete Catalog"
msgstr "" msgstr ""
@ -462,10 +498,6 @@ msgstr ""
msgid "Sort by" msgid "Sort by"
msgstr "" msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
#: ../partials/content-page-catalog.php:50 #: ../partials/content-page-catalog.php:50
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""

6121
package-lock.json generated

File diff suppressed because it is too large Load Diff

6
package.json

@ -1,7 +1,11 @@
{ {
"name": "@pressbooks/pressbooks-aldine", "name": "@pressbooks/pressbooks-aldine",
<<<<<<< HEAD
"version": "1.2.1", "version": "1.2.1",
=======
"version": "1.5.0",
>>>>>>> dev
"author": "Pressbooks (Book Oven Inc.) <code@pressbooks.com>", "author": "Pressbooks (Book Oven Inc.) <code@pressbooks.com>",
"homepage": "https://github.com/pressbooks/pressbooks-aldine/", "homepage": "https://github.com/pressbooks/pressbooks-aldine/",
"description": "description":
@ -58,7 +62,7 @@
"node": ">= 6.9.4" "node": ">= 6.9.4"
}, },
"devDependencies": { "devDependencies": {
"pressbooks-build-tools": "^0.12.0" "pressbooks-build-tools": "^0.13.0"
}, },
"dependencies": { "dependencies": {
"aetna": "^1.0.0-alpha.17", "aetna": "^1.0.0-alpha.17",

10
page-catalog.php

@ -9,10 +9,10 @@
* @package Aldine * @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_data;
use function Aldine\Helpers\get_catalog_licenses; 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; $current_page = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
$orderby = ( get_query_var( 'orderby' ) ) ? get_query_var( 'orderby' ) : 'title'; $orderby = ( get_query_var( 'orderby' ) ) ? get_query_var( 'orderby' ) : 'title';
@ -38,9 +38,9 @@ if ( ! empty( $catalog_data['books'] ) ) :
</main><!-- #main --> </main><!-- #main -->
</div><!-- #primary --> </div><!-- #primary -->
<?php <?php
get_sidebar(); get_sidebar();
get_footer(); get_footer();
else : else :
global $wp_query; global $wp_query;

9
page.php

@ -17,9 +17,11 @@ get_header(); ?>
<div id="primary" class="content-area"> <div id="primary" class="content-area">
<main id="main" class="site-main"> <main id="main" class="site-main">
<?php if ( is_front_page() ) : <?php
if ( is_front_page() ) :
while ( have_posts() ) : the_post(); while ( have_posts() ) :
the_post();
get_template_part( 'partials/content', 'front-page' ); get_template_part( 'partials/content', 'front-page' );
@ -27,7 +29,8 @@ get_header(); ?>
else : else :
while ( have_posts() ) : the_post(); while ( have_posts() ) :
the_post();
get_template_part( 'partials/content', 'page' ); get_template_part( 'partials/content', 'page' );

32
partials/book.php

@ -1,29 +1,41 @@
<?php use function \Aldine\Helpers\maybe_truncate_string; ?> <?php
use function \Aldine\Helpers\maybe_truncate_string;
use function \Pressbooks\Metadata\is_bisac;
?>
<?php $subject = ( isset( $book['subject'] ) ) ? substr( $book['subject'], 0, 2 ) : ''; <?php
$subject = ( isset( $book['subject'] ) && ! is_bisac( $book['subject'] ) ) ? substr( $book['subject'], 0, 2 ) : '';
$date = ( isset( $book['metadata']['datePublished'] ) ) ? str_replace( '-', '', $book['metadata']['datePublished'] ) : ''; $date = ( isset( $book['metadata']['datePublished'] ) ) ? str_replace( '-', '', $book['metadata']['datePublished'] ) : '';
?> ?>
<li class="book" <li class="book"
<?php if ( $date ) { ?>data-date-published="<?php echo $date; ?>"<?php } ?> <?php
if ( $date ) {
?>
data-date-published="<?php echo $date; ?>"<?php } ?>
data-license="<?php echo ( new \Pressbooks\Licensing() )->getLicenseFromUrl( $book['metadata']['license']['url'] ); ?>" data-license="<?php echo ( new \Pressbooks\Licensing() )->getLicenseFromUrl( $book['metadata']['license']['url'] ); ?>"
<?php if ( ! empty( $subject ) ) { ?> data-subject="<?php echo $subject ?>"<?php } ?> <?php
if ( ! empty( $subject ) ) {
?>
data-subject="<?php echo $subject ?>"<?php } ?>
> >
<p class="book__title"> <p class="book__title">
<a href="<?php echo $book['link']; ?>"><?php echo maybe_truncate_string( $book['metadata']['name'] ); ?></a> <a href="<?php echo $book['link']; ?>"><?php echo maybe_truncate_string( $book['metadata']['name'] ); ?></a>
</p> </p>
<?php /* <?php if (isset( $book['metadata']['author'] ) ) { ?> <?php
/* <?php if (isset( $book['metadata']['author'] ) ) { ?>
<p class="book__author"> <p class="book__author">
<?php _e( 'By', 'pressbooks-aldine' ); ?> <?php foreach ( $book['metadata']['author'] as $author ) { <?php _e( 'By', 'pressbooks-aldine' ); ?> <?php foreach ( $book['metadata']['author'] as $author ) {
echo $author['name']; echo $author['name'];
} ?> } ?>
</p> </p>
<?php } ?> */ ?> <?php } ?> */
?>
<?php if ( ! empty( $subject ) ) { ?> <?php if ( ! empty( $subject ) ) { ?>
<p class="book__subject"> <p class="book__subject">
<a href="<?php echo network_home_url( "/catalog/#$subject" ) ?>"><?php echo \Pressbooks\Metadata\get_subject_from_thema( $book['subject'] ); ?></a> <a href="<?php echo network_home_url( "/catalog/#$subject" ) ?>"><?php echo \Pressbooks\Metadata\get_subject_from_thema( $book['subject'] ); ?></a>
</p> </p>
<?php } ?> <?php } ?>
<p class="book__read-more"> <p class="book__read-more">
<a href="<?php echo $book['link']; ?>"><?php _e( 'About this book', 'pressbooks-aldine' ); ?> <svg aria-hidden="true"><use xlink:href="#arrow-right" /></svg></a> <a href="<?php echo $book['link']; ?>"><?php _e( 'About this book', 'pressbooks-aldine' ); ?> <svg aria-hidden="true"><use xlink:href="#arrow-right" /></svg></a>
</p> </p>
</li> </li>

63
partials/contact-form.php

@ -11,6 +11,7 @@
$pb_network_contact_form_title = get_option( 'pb_network_contact_form_title' ); $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_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(); $contact_form_response = \Aldine\Helpers\handle_contact_form_submission();
$honeypot = 'firstname' . rand();
?> ?>
@ -22,34 +23,72 @@ $contact_form_response = \Aldine\Helpers\handle_contact_form_submission();
<?php endif; ?> <?php endif; ?>
<?php wp_nonce_field( 'pb_root_contact_form', 'pb_root_contact_form_nonce' ); ?> <?php wp_nonce_field( 'pb_root_contact_form', 'pb_root_contact_form_nonce' ); ?>
<input type="hidden" name="submitted" value="1"> <input type="hidden" name="submitted" value="1">
<p class="form__row" style="display:none;">
<input type="text" name="<?php echo $honeypot; ?>" id="<?php echo $honeypot; ?>"/>
<label for="<?php echo $honeypot; ?>">
<?php _e( 'Keep this field blank (required)', 'pressbooks-aldine' ); ?>
</label>
</p>
<p class="form__row"> <p class="form__row">
<input id="contact-name" <?php if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'visitor_name' ) : ?>class="error"<?php endif; ?> type="text" name="visitor_name" value="<?php if ( $contact_form_response['status'] === 'error' ) : <input id="contact-name"
echo $contact_form_response['values']['visitor_name']; <?php
endif; ?>" required> if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'visitor_name' ) :
?>
class="error"<?php endif; ?> type="text" name="visitor_name" value="
<?php
if ( $contact_form_response['status'] === 'error' ) :
echo $contact_form_response['values']['visitor_name'];
endif;
?>
" required>
<label for="contact-name"> <label for="contact-name">
<?php _e( 'Your name (required)', 'pressbooks-aldine' ); ?> <?php _e( 'Your name (required)', 'pressbooks-aldine' ); ?>
</label> </label>
</p> </p>
<p class="form__row"> <p class="form__row">
<input id="contact-email" <?php if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'visitor_email' ) : ?>class="error" <?php endif; ?>type="email" name="visitor_email" value="<?php if ( $contact_form_response['status'] === 'error' ) : <input id="contact-email"
echo $contact_form_response['values']['visitor_email']; <?php
endif; ?>" required> if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'visitor_email' ) :
?>
class="error" <?php endif; ?>type="email" name="visitor_email" value="
<?php
if ( $contact_form_response['status'] === 'error' ) :
echo $contact_form_response['values']['visitor_email'];
endif;
?>
" required>
<label for="contact-email"> <label for="contact-email">
<?php _e( 'Your email address (required)', 'pressbooks-aldine' ); ?> <?php _e( 'Your email address (required)', 'pressbooks-aldine' ); ?>
</label> </label>
</p> </p>
<p class="form__row"> <p class="form__row">
<input id="contact-institution" <?php if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'visitor_institution' ) : ?>class="error" <?php endif; ?>type="text" name="visitor_institution" value="<?php if ( $contact_form_response['status'] === 'error' ) : <input id="contact-institution"
echo $contact_form_response['values']['visitor_institution']; <?php
endif; ?>" required> if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'visitor_institution' ) :
?>
class="error" <?php endif; ?>type="text" name="visitor_institution" value="
<?php
if ( $contact_form_response['status'] === 'error' ) :
echo $contact_form_response['values']['visitor_institution'];
endif;
?>
" required>
<label for="contact-institution"> <label for="contact-institution">
<?php _e( 'Your institution (required)', 'pressbooks-aldine' ); ?> <?php _e( 'Your institution (required)', 'pressbooks-aldine' ); ?>
</label> </label>
</p> </p>
<p class="form__row"> <p class="form__row">
<textarea id="contact-message" <?php if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'message' ) : ?>class="error" <?php endif; ?>name="message" required><?php if ( $contact_form_response['status'] === 'error' ) : <textarea id="contact-message"
echo $contact_form_response['values']['message']; <?php
endif; ?></textarea> if ( isset( $contact_form_response['field'] ) && $contact_form_response['field'] === 'message' ) :
?>
class="error" <?php endif; ?>name="message" required>
<?php
if ( $contact_form_response['status'] === 'error' ) :
echo $contact_form_response['values']['message'];
endif;
?>
</textarea>
<label for="contact-message"> <label for="contact-message">
<?php _e( 'Your message (required)', 'pressbooks-aldine' ); ?> <?php _e( 'Your message (required)', 'pressbooks-aldine' ); ?>
</label> </label>

17
partials/content-front-page.php

@ -55,13 +55,22 @@ if ( get_option( 'pb_front_page_catalog' ) ) {
<?php if ( get_option( 'pb_front_page_catalog' ) && ! empty( $catalog_data['books'] ) ) : ?> <?php if ( get_option( 'pb_front_page_catalog' ) && ! empty( $catalog_data['books'] ) ) : ?>
<div id="latest-books" class="latest-books"> <div id="latest-books" class="latest-books">
<h2 id="latest-books-title"><?php echo $latest_books_title; ?></h2> <h2 id="latest-books-title"><?php echo $latest_books_title; ?></h2>
<div class="slider" role="region" aria-labelledby="latest-books-title" data-total-pages="<?php echo $catalog_data['pages']; ?>" <?php if ( $next_page <= $catalog_data['pages'] ) : ?>data-next-page="<?php echo $next_page; ?>"<?php endif; ?>> <div class="slider" role="region" aria-labelledby="latest-books-title" data-total-pages="<?php echo $catalog_data['pages']; ?>"
<?php
if ( $next_page <= $catalog_data['pages'] ) :
?>
data-next-page="<?php echo $next_page; ?>"<?php endif; ?>>
<ul class="books"> <ul class="books">
<?php foreach ( $catalog_data['books'] as $book ) : <?php
foreach ( $catalog_data['books'] as $book ) :
include( locate_template( 'partials/book.php' ) ); include( locate_template( 'partials/book.php' ) );
endforeach; ?> endforeach;
?>
</ul> </ul>
<?php if ( $previous_page || $next_page ) { include( locate_template( 'partials/paged-navigation.php' ) ); } ?> <?php
if ( $previous_page || $next_page ) {
include( locate_template( 'partials/paged-navigation.php' ) ); }
?>
</div> </div>
<p class="catalog-link"> <p class="catalog-link">
<a class="call-to-action" href="<?php echo network_home_url( '/catalog/' ); ?>"><?php _e( 'View Complete Catalog', 'pressbooks-aldine' ); ?></a> <a class="call-to-action" href="<?php echo network_home_url( '/catalog/' ); ?>"><?php _e( 'View Complete Catalog', 'pressbooks-aldine' ); ?></a>

15
partials/content-none.php

@ -16,9 +16,11 @@
<div class="page-content"> <div class="page-content">
<?php <?php
if ( is_home() && current_user_can( 'publish_posts' ) ) : ?> if ( is_home() && current_user_can( 'publish_posts' ) ) :
?>
<p><?php <p>
<?php
printf( printf(
wp_kses( wp_kses(
/* translators: 1: link to WP admin new post page. */ /* translators: 1: link to WP admin new post page. */
@ -31,7 +33,8 @@
), ),
esc_url( admin_url( 'post-new.php' ) ) esc_url( admin_url( 'post-new.php' ) )
); );
?></p> ?>
</p>
<?php elseif ( is_search() ) : ?> <?php elseif ( is_search() ) : ?>
@ -39,12 +42,14 @@
<?php <?php
get_search_form(); get_search_form();
else : ?> else :
?>
<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'pressbooks-aldine' ); ?></p> <p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'pressbooks-aldine' ); ?></p>
<?php <?php
get_search_form(); get_search_form();
endif; ?> endif;
?>
</div><!-- .page-content --> </div><!-- .page-content -->
</section><!-- .no-results --> </section><!-- .no-results -->

57
partials/content-page-catalog.php

@ -18,15 +18,19 @@
<input type="radio" name="subject" id="all-subjects" value="" <?php checked( $subject, '' ); ?>> <input type="radio" name="subject" id="all-subjects" value="" <?php checked( $subject, '' ); ?>>
<label for="all-subjects"><?php _e( 'All Subjects', 'pressbooks-aldine' ); ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label> <label for="all-subjects"><?php _e( 'All Subjects', 'pressbooks-aldine' ); ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<div class="subject-groups"> <div class="subject-groups">
<?php foreach ( $subjects as $key => $val ) : <?php
if ( array_key_exists( $key, $available_subjects ) ) : ?> foreach ( $subjects as $key => $val ) :
if ( array_key_exists( $key, $available_subjects ) ) :
?>
<h3><span class="label"><?php echo $val['label']; ?></span></h3> <h3><span class="label"><?php echo $val['label']; ?></span></h3>
<?php foreach ( $val['children'] as $k => $v ) : <?php
if ( in_array( $k, $available_subjects[ $key ], true ) ) : ?> foreach ( $val['children'] as $k => $v ) :
if ( in_array( $k, $available_subjects[ $key ], true ) ) :
?>
<input type="radio" name="subject" id="<?php echo $k; ?>" value="<?php echo $k; ?>" <?php checked( $subject, $k ); ?>> <input type="radio" name="subject" id="<?php echo $k; ?>" value="<?php echo $k; ?>" <?php checked( $subject, $k ); ?>>
<label for="<?php echo $k; ?>"><span class="label"><?php echo $v; ?></span> <svg class="checked"><use xlink:href="#checkmark" /></svg></label> <label for="<?php echo $k; ?>"><span class="label"><?php echo $v; ?></span> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<?php endif; ?> <?php endif; ?>
<?php endforeach; ?> <?php endforeach; ?>
<?php endif; ?> <?php endif; ?>
<?php endforeach; ?> <?php endforeach; ?>
</div> </div>
@ -35,12 +39,16 @@
<h2><?php _e( 'Filter by License', 'pressbooks-aldine' ); ?></h2> <h2><?php _e( 'Filter by License', 'pressbooks-aldine' ); ?></h2>
<input type="radio" name="license" id="all-licenses" value="" <?php checked( $license, '' ); ?>> <input type="radio" name="license" id="all-licenses" value="" <?php checked( $license, '' ); ?>>
<label for="all-licenses"><?php _e( 'All Licenses', 'pressbooks-aldine' ); ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label> <label for="all-licenses"><?php _e( 'All Licenses', 'pressbooks-aldine' ); ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<?php foreach ( $licenses as $key => $value ) : <?php
if ( in_array( $key, $available_licenses, true ) ) : ?> foreach ( $licenses as $key => $value ) :
if ( in_array( $key, $available_licenses, true ) ) :
?>
<input type="radio" name="license" id="<?php echo $key; ?>" value="<?php echo $key; ?>" <?php checked( $license, $key ); ?>> <input type="radio" name="license" id="<?php echo $key; ?>" value="<?php echo $key; ?>" <?php checked( $license, $key ); ?>>
<label for="<?php echo $key; ?>"><?php echo $value; ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label> <label for="<?php echo $key; ?>"><?php echo $value; ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<?php endif; <?php
endforeach; ?> endif;
endforeach;
?>
</fieldset> </fieldset>
<fieldset class="sorts"> <fieldset class="sorts">
<h2><?php _e( 'Sort by', 'pressbooks-aldine' ); ?></h2> <h2><?php _e( 'Sort by', 'pressbooks-aldine' ); ?></h2>
@ -50,7 +58,8 @@
'subject' => __( 'Subject', 'pressbooks-aldine' ), 'subject' => __( 'Subject', 'pressbooks-aldine' ),
'latest' => __( 'Latest', 'pressbooks-aldine' ), 'latest' => __( 'Latest', 'pressbooks-aldine' ),
]; ];
foreach ( $sorts as $key => $value ) { ?> foreach ( $sorts as $key => $value ) {
?>
<input type="radio" name="orderby" id="<?php echo $key ?>" value="<?php echo $key ?>" <?php checked( $orderby, $key ); ?>> <input type="radio" name="orderby" id="<?php echo $key ?>" value="<?php echo $key ?>" <?php checked( $orderby, $key ); ?>>
<label for="<?php echo $key ?>"><?php echo $value; ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label> <label for="<?php echo $key ?>"><?php echo $value; ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<?php } ?> <?php } ?>
@ -59,26 +68,36 @@
<button type="submit"><?php _e( 'Submit', 'pressbooks-aldine' ); ?></button> <button type="submit"><?php _e( 'Submit', 'pressbooks-aldine' ); ?></button>
</form> </form>
<ul class="books"> <ul class="books">
<?php foreach ( $catalog_data['books'] as $book ) : <?php
foreach ( $catalog_data['books'] as $book ) :
include( locate_template( 'partials/book.php' ) ); include( locate_template( 'partials/book.php' ) );
endforeach; ?> endforeach;
?>
</ul> </ul>
<?php if ( $catalog_data['pages'] > 1 ) : ?> <?php if ( $catalog_data['pages'] > 1 ) : ?>
<nav class="catalog-navigation"> <nav class="catalog-navigation">
<?php if ( $previous_page ) : ?><a class="previous" rel="previous" data-page="<?php echo $previous_page; ?>" href="<?php echo network_home_url( "/catalog/page/$previous_page/" ); ?>"><span class="screen-reader-text"><?php _e( 'Previous Page', 'pressbooks' ); ?></span> <?php
if ( $previous_page ) :
?>
<a class="previous" rel="previous" data-page="<?php echo $previous_page; ?>" href="<?php echo network_home_url( "/catalog/page/$previous_page/" ); ?>"><span class="screen-reader-text"><?php _e( 'Previous Page', 'pressbooks' ); ?></span>
<svg aria-hidden="true"> <svg aria-hidden="true">
<use xlink:href="#arrow-left" /> <use xlink:href="#arrow-left" />
</svg></a><?php endif; ?> </svg></a><?php endif; ?>
<div class="pages"> <div class="pages">
<?php for ( $i = 1; $i <= $catalog_data['pages']; $i++ ) : <?php
if ( $i === $current_page ) : ?> for ( $i = 1; $i <= $catalog_data['pages']; $i++ ) :
if ( $i === $current_page ) :
?>
<span class="current"><?php echo $i; ?></span> <span class="current"><?php echo $i; ?></span>
<?php else : ?> <?php else : ?>
<a href="<?php echo network_home_url( "/catalog/page/$i/" ); ?>"><?php echo $i; ?></a> <a href="<?php echo network_home_url( "/catalog/page/$i/" ); ?>"><?php echo $i; ?></a>
<?php endif; ?> <?php endif; ?>
<?php endfor; ?> <?php endfor; ?>
</div> </div>
<?php if ( $next_page <= $catalog_data['pages'] ) : ?><a class="next" rel="next" data-page="<?php echo $next_page; ?>" href="<?php echo network_home_url( "/catalog/page/$next_page/" ); ?>"><span class="screen-reader-text"><?php _e( 'Next Page', 'pressbooks' ); ?></span> <?php
if ( $next_page <= $catalog_data['pages'] ) :
?>
<a class="next" rel="next" data-page="<?php echo $next_page; ?>" href="<?php echo network_home_url( "/catalog/page/$next_page/" ); ?>"><span class="screen-reader-text"><?php _e( 'Next Page', 'pressbooks' ); ?></span>
<svg aria-hidden="true"> <svg aria-hidden="true">
<use xlink:href="#arrow-right" /> <use xlink:href="#arrow-right" />
</svg></a><?php endif; ?> </svg></a><?php endif; ?>

12
partials/content-page.php

@ -18,11 +18,13 @@
<?php <?php
the_content(); the_content();
wp_link_pages( [ wp_link_pages(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pressbooks-aldine' ), [
'after' => '</div>', 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pressbooks-aldine' ),
] ); 'after' => '</div>',
?> ]
);
?>
</div><!-- .entry-content --> </div><!-- .entry-content -->
<?php if ( get_edit_post_link() ) : ?> <?php if ( get_edit_post_link() ) : ?>

46
partials/content.php

@ -18,34 +18,40 @@
the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
endif; endif;
if ( 'post' === get_post_type() ) : ?> if ( 'post' === get_post_type() ) :
?>
<div class="entry-meta"> <div class="entry-meta">
<?php pressbooks_aldine_posted_on(); ?> <?php pressbooks_aldine_posted_on(); ?>
</div><!-- .entry-meta --> </div><!-- .entry-meta -->
<?php <?php
endif; ?> endif;
?>
</header><!-- .entry-header --> </header><!-- .entry-header -->
<div class="entry-content"> <div class="entry-content">
<?php <?php
the_content( sprintf( the_content(
wp_kses( sprintf(
/* translators: %s: Name of current post. Only visible to screen readers */ wp_kses(
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'pressbooks-aldine' ), /* translators: %s: Name of current post. Only visible to screen readers */
[ __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'pressbooks-aldine' ),
'span' => [ [
'class' => [], 'span' => [
], 'class' => [],
] ],
), ]
get_the_title() ),
) ); get_the_title()
)
);
wp_link_pages( [ wp_link_pages(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pressbooks-aldine' ), [
'after' => '</div>', 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'pressbooks-aldine' ),
] ); 'after' => '</div>',
?> ]
);
?>
</div><!-- .entry-content --> </div><!-- .entry-content -->
<footer class="entry-footer"> <footer class="entry-footer">

40
phpcs.ruleset.xml

@ -1,41 +1,13 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<ruleset> <ruleset>
<!-- Scan only PHP files --> <!-- Use Pressbooks Coding Standards -->
<arg name="extensions" value="php"/> <rule ref="vendor/pressbooks/coding-standards" />
<!-- Show colors in console --> <!-- Disable Side Effects and MissingNamespace rules for bootstrapping files: -->
<arg value="-colors"/>
<!-- Show progress -->
<arg value="p"/>
<!-- Be quiet -->
<arg value="q"/>
<!-- Use HM Coding Standards -->
<rule ref="vendor/humanmade/coding-standards">
<!-- Disable all ESLint checks -->
<exclude name="HM.Debug.ESLint"/>
<!-- Disable rules Pressbooks disagrees with -->
<exclude name="WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid"/>
<exclude name="WordPress.NamingConventions.ValidVariableName.MemberNotSnakeCase"/>
<exclude name="WordPress.NamingConventions.ValidVariableName.NotSnakeCaseMemberVar"/>
<exclude name="WordPress.VIP.SessionVariableUsage"/>
<exclude name="WordPress.VIP.SessionFunctionsUsage"/>
<!-- Disable LayoutOrder until humanmade/coding-standards#5 is fixed -->
<exclude name="HM.Layout.Order.WrongOrder"/>
</rule>
<!-- Re-enable rules Pressbooks agrees with -->
<rule ref="Generic.NamingConventions.UpperCaseConstantName"/>
<!-- Disable Side Effects rule for functions.php -->
<rule ref="PSR1.Files.SideEffects"> <rule ref="PSR1.Files.SideEffects">
<exclude-pattern>functions.php</exclude-pattern> <exclude-pattern>/functions.php</exclude-pattern>
</rule> </rule>
<rule ref="HM.Functions.NamespacedFunctions.MissingNamespace">
<!-- Disable Namespaced Functions for functions.php --> <exclude-pattern>/functions.php</exclude-pattern>
<rule ref="HM.Functions.NamespacedFunctions">
<exclude-pattern>functions.php</exclude-pattern>
</rule> </rule>
</ruleset> </ruleset>

48
readme.txt

@ -14,9 +14,9 @@
[![Open Collective](https://opencollective.com/pressbooks/tiers/sponsor/badge.svg?label=sponsors&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 Requires at least: 4.9.8
Tested up to: 4.9.4 Tested up to: 4.9.8
Stable tag: 1.2.1 Stable tag: 1.5.0
License: GNU General Public License v3 or later License: GNU General Public License v3 or later
License URI: LICENSE License URI: LICENSE
@ -37,6 +37,42 @@ Aldine is the default theme for the home page of [Pressbooks](https://pressbooks
TK. TK.
== Changelog == == Changelog ==
=== 1.6.0 ===
**Minor Changes**
**Patches**
=== 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)
- 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 ===
**Patches**
- Ensure that unsupported catalog subject codes aren't loaded: [#133](https://github.com/pressbooks/pressbooks-aldine/pull/133)
=== 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**
- 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 === === 1.2.1 ===
@ -91,6 +127,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. 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 == == 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)

15
search.php

@ -13,18 +13,22 @@ get_header(); ?>
<main id="main" class="site-main"> <main id="main" class="site-main">
<?php <?php
if ( have_posts() ) : ?> if ( have_posts() ) :
?>
<header class="page-header"> <header class="page-header">
<h1 class="page-title"><?php <h1 class="page-title">
<?php
/* translators: %s: search query. */ /* translators: %s: search query. */
printf( esc_html__( 'Search Results for: %s', 'pressbooks-aldine' ), '<span>' . get_search_query() . '</span>' ); printf( esc_html__( 'Search Results for: %s', 'pressbooks-aldine' ), '<span>' . get_search_query() . '</span>' );
?></h1> ?>
</h1>
</header><!-- .page-header --> </header><!-- .page-header -->
<?php <?php
/* Start the Loop */ /* Start the Loop */
while ( have_posts() ) : the_post(); while ( have_posts() ) :
the_post();
/** /**
* Run the loop for the search to output the results. * Run the loop for the search to output the results.
@ -41,7 +45,8 @@ get_header(); ?>
get_template_part( 'template-parts/content', 'none' ); get_template_part( 'template-parts/content', 'none' );
endif; ?> endif;
?>
</main><!-- #main --> </main><!-- #main -->
</section><!-- #primary --> </section><!-- #primary -->

3
single.php

@ -13,7 +13,8 @@ get_header(); ?>
<main id="main" class="site-main"> <main id="main" class="site-main">
<?php <?php
while ( have_posts() ) : the_post(); while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', get_post_type() ); get_template_part( 'template-parts/content', get_post_type() );

2
style.css

@ -2,7 +2,7 @@
Theme Name: Aldine Theme Name: Aldine
Theme URI: https://github.com/pressbooks/pressbooks-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 worlds first publisher. 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 worlds first publisher.
Version: 1.2.1 Version: 1.6.0-dev
Author: Pressbooks (Book Oven Inc.) Author: Pressbooks (Book Oven Inc.)
Author URI: https://pressbooks.org Author URI: https://pressbooks.org
Text Domain: pressbooks-aldine Text Domain: pressbooks-aldine

423
yarn.lock

@ -255,15 +255,11 @@ acorn-dynamic-import@^2.0.0:
dependencies: dependencies:
acorn "^4.0.3" acorn "^4.0.3"
acorn-jsx@^3.0.0: acorn-jsx@^4.1.1:
version "3.0.1" version "4.1.1"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-4.1.1.tgz#e8e41e48ea2fe0c896740610ab6a4ffd8add225e"
dependencies: dependencies:
acorn "^3.0.4" acorn "^5.0.3"
acorn@^3.0.4:
version "3.3.0"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
acorn@^4.0.3: acorn@^4.0.3:
version "4.0.13" version "4.0.13"
@ -273,9 +269,9 @@ acorn@^5.0.0:
version "5.2.1" version "5.2.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7"
acorn@^5.5.0: acorn@^5.0.3, acorn@^5.6.0:
version "5.5.3" version "5.7.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9" resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
adjust-sourcemap-loader@^1.1.0: adjust-sourcemap-loader@^1.1.0:
version "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" version "2.1.1"
resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" 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: ajv@^4.7.0, ajv@^4.9.1:
version "4.11.8" version "4.11.8"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" 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" co "^4.6.0"
json-stable-stringify "^1.0.1" 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" version "5.5.1"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.1.tgz#b38bb8876d9e86bee994956a04e721e88b248eb2" resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.1.tgz#b38bb8876d9e86bee994956a04e721e88b248eb2"
dependencies: dependencies:
@ -323,14 +323,14 @@ ajv@^5.0.0, ajv@^5.1.5, ajv@^5.3.0:
fast-json-stable-stringify "^2.0.0" fast-json-stable-stringify "^2.0.0"
json-schema-traverse "^0.3.0" json-schema-traverse "^0.3.0"
ajv@^5.2.3: ajv@^6.0.1, ajv@^6.5.0:
version "5.5.2" version "6.5.2"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.5.2.tgz#678495f9b82f7cca6be248dd92f59bff5e1f4360"
dependencies: dependencies:
co "^4.6.0" fast-deep-equal "^2.0.1"
fast-deep-equal "^1.0.0"
fast-json-stable-stringify "^2.0.0" 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: align-text@^0.1.1, align-text@^0.1.3:
version "0.1.4" version "0.1.4"
@ -364,9 +364,9 @@ ansi-escapes@^1.0.0, ansi-escapes@^1.1.0:
version "1.4.0" version "1.4.0"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
ansi-escapes@^2.0.0: ansi-escapes@^3.0.0:
version "2.0.0" version "3.1.0"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-2.0.0.tgz#5bae52be424878dd9783e8910e3fc2922e83c81b" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30"
ansi-html@0.0.7: ansi-html@0.0.7:
version "0.0.7" version "0.0.7"
@ -659,7 +659,7 @@ axobject-query@^0.1.0:
dependencies: dependencies:
ast-types-flow "0.0.7" 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" version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
dependencies: dependencies:
@ -1771,6 +1771,10 @@ character-reference-invalid@^1.0.0:
version "1.1.1" version "1.1.1"
resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.1.tgz#942835f750e4ec61a308e60c2ef8cc1011202efc" 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: charenc@~0.0.1:
version "0.0.2" version "0.0.2"
resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"
@ -2002,6 +2006,12 @@ combined-stream@^1.0.5, combined-stream@~1.0.5:
dependencies: dependencies:
delayed-stream "~1.0.0" delayed-stream "~1.0.0"
combined-stream@^1.0.6:
version "1.0.7"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828"
dependencies:
delayed-stream "~1.0.0"
commander@2.11.x, commander@~2.11.0: commander@2.11.x, commander@~2.11.0:
version "2.11.0" version "2.11.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563"
@ -2058,7 +2068,7 @@ concat-map@0.0.1:
version "0.0.1" version "0.0.1"
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 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" version "1.6.0"
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
dependencies: dependencies:
@ -2289,6 +2299,16 @@ cross-spawn@^5.0.1, cross-spawn@^5.1.0:
shebang-command "^1.2.0" shebang-command "^1.2.0"
which "^1.2.9" 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: crypt@~0.0.1:
version "0.0.2" version "0.0.2"
resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"
@ -2460,7 +2480,7 @@ debug@2.6.8:
dependencies: dependencies:
ms "2.0.0" ms "2.0.0"
debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.6, debug@^2.6.8, debug@~2.6.4, debug@~2.6.6, debug@~2.6.9: debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.6, debug@^2.6.8, debug@~2.6.4, debug@~2.6.6, debug@~2.6.9:
version "2.6.9" version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
dependencies: dependencies:
@ -2978,6 +2998,16 @@ error-stack-parser@^2.0.0:
dependencies: dependencies:
stackframe "^1.0.3" 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: es-abstract@^1.5.0, es-abstract@^1.7.0:
version "1.10.0" version "1.10.0"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.10.0.tgz#1ecb36c197842a00d8ee4c2dfd8646bb97d60864"
@ -3076,9 +3106,9 @@ escope@^3.6.0:
esrecurse "^4.1.0" esrecurse "^4.1.0"
estraverse "^4.1.1" estraverse "^4.1.1"
eslint-config-humanmade@^0.4.0: eslint-config-humanmade@^0.5.0:
version "0.4.1" version "0.5.0"
resolved "https://registry.yarnpkg.com/eslint-config-humanmade/-/eslint-config-humanmade-0.4.1.tgz#9fe61fa9d4ff20d309713dd48a23c5971cd3f7b9" resolved "https://registry.yarnpkg.com/eslint-config-humanmade/-/eslint-config-humanmade-0.5.0.tgz#8df1897b6a790f414b795cc13fc1ed2a43b6d0de"
eslint-config-react-app@^2.1.0: eslint-config-react-app@^2.1.0:
version "2.1.0" version "2.1.0"
@ -3150,66 +3180,78 @@ eslint-plugin-react@^7.7.0:
jsx-ast-utils "^2.0.1" jsx-ast-utils "^2.0.1"
prop-types "^15.6.0" 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" version "3.7.1"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
dependencies: dependencies:
esrecurse "^4.1.0" esrecurse "^4.1.0"
estraverse "^4.1.1" 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: eslint-visitor-keys@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
eslint@^4.18.0: eslint@^5.0.0:
version "4.19.1" version "5.1.0"
resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.1.0.tgz#2ed611f1ce163c0fb99e1e0cda5af8f662dff645"
dependencies: dependencies:
ajv "^5.3.0" ajv "^6.5.0"
babel-code-frame "^6.22.0" babel-code-frame "^6.26.0"
chalk "^2.1.0" chalk "^2.1.0"
concat-stream "^1.6.0" cross-spawn "^6.0.5"
cross-spawn "^5.1.0"
debug "^3.1.0" debug "^3.1.0"
doctrine "^2.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" eslint-visitor-keys "^1.0.0"
espree "^3.5.4" espree "^4.0.0"
esquery "^1.0.0" esquery "^1.0.1"
esutils "^2.0.2" esutils "^2.0.2"
file-entry-cache "^2.0.0" file-entry-cache "^2.0.0"
functional-red-black-tree "^1.0.1" functional-red-black-tree "^1.0.1"
glob "^7.1.2" glob "^7.1.2"
globals "^11.0.1" globals "^11.7.0"
ignore "^3.3.3" ignore "^3.3.3"
imurmurhash "^0.1.4" imurmurhash "^0.1.4"
inquirer "^3.0.6" inquirer "^5.2.0"
is-resolvable "^1.0.0" is-resolvable "^1.1.0"
js-yaml "^3.9.1" js-yaml "^3.11.0"
json-stable-stringify-without-jsonify "^1.0.1" json-stable-stringify-without-jsonify "^1.0.1"
levn "^0.3.0" levn "^0.3.0"
lodash "^4.17.4" lodash "^4.17.5"
minimatch "^3.0.2" minimatch "^3.0.4"
mkdirp "^0.5.1" mkdirp "^0.5.1"
natural-compare "^1.4.0" natural-compare "^1.4.0"
optionator "^0.8.2" optionator "^0.8.2"
path-is-inside "^1.0.2" path-is-inside "^1.0.2"
pluralize "^7.0.0" pluralize "^7.0.0"
progress "^2.0.0" progress "^2.0.0"
regexpp "^1.0.1" regexpp "^1.1.0"
require-uncached "^1.0.3" 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-ansi "^4.0.0"
strip-json-comments "~2.0.1" strip-json-comments "^2.0.1"
table "4.0.2" table "^4.0.3"
text-table "~0.2.0" text-table "^0.2.0"
espree@^3.5.4: espree@^4.0.0:
version "3.5.4" version "4.0.0"
resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" resolved "https://registry.yarnpkg.com/espree/-/espree-4.0.0.tgz#253998f20a0f82db5d866385799d912a83a36634"
dependencies: dependencies:
acorn "^5.5.0" acorn "^5.6.0"
acorn-jsx "^3.0.0" acorn-jsx "^4.1.1"
esprima@^2.6.0: esprima@^2.6.0:
version "2.7.3" version "2.7.3"
@ -3223,9 +3265,9 @@ esprima@~3.1.0:
version "3.1.3" version "3.1.3"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
esquery@^1.0.0: esquery@^1.0.1:
version "1.0.0" version "1.0.1"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
dependencies: dependencies:
estraverse "^4.0.0" estraverse "^4.0.0"
@ -3415,13 +3457,13 @@ external-editor@^1.1.0:
spawn-sync "^1.0.15" spawn-sync "^1.0.15"
tmp "^0.0.29" tmp "^0.0.29"
external-editor@^2.0.4: external-editor@^2.1.0:
version "2.0.4" version "2.2.0"
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.4.tgz#1ed9199da9cbfe2ef2f7a31b2fde8b0d12368972" resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
dependencies: dependencies:
chardet "^0.4.0"
iconv-lite "^0.4.17" iconv-lite "^0.4.17"
jschardet "^1.4.2" tmp "^0.0.33"
tmp "^0.0.31"
extglob@^0.3.1: extglob@^0.3.1:
version "0.3.2" version "0.3.2"
@ -3466,6 +3508,10 @@ fast-deep-equal@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 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: fast-glob@^2.0.2:
version "2.2.1" version "2.2.1"
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.1.tgz#686c2345be88f3741e174add0be6f2e5b6078889" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.1.tgz#686c2345be88f3741e174add0be6f2e5b6078889"
@ -3738,7 +3784,15 @@ forever-agent@~0.6.1:
version "0.6.1" version "0.6.1"
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
form-data@^2.1.1, form-data@~2.1.1: form-data@^2.3.1:
version "2.3.3"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
dependencies:
asynckit "^0.4.0"
combined-stream "^1.0.6"
mime-types "^2.1.12"
form-data@~2.1.1:
version "2.1.4" version "2.1.4"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1" resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.1.4.tgz#33c183acf193276ecaa98143a69e94bfee1750d1"
dependencies: dependencies:
@ -3746,9 +3800,9 @@ form-data@^2.1.1, form-data@~2.1.1:
combined-stream "^1.0.5" combined-stream "^1.0.5"
mime-types "^2.1.12" mime-types "^2.1.12"
formidable@^1.1.1: formidable@^1.2.0:
version "1.1.1" version "1.2.1"
resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.1.1.tgz#96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9" resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.1.tgz#70fb7ca0290ee6ff961090415f4b3df3d2082659"
forwarded@~0.1.2: forwarded@~0.1.2:
version "0.1.2" version "0.1.2"
@ -4015,10 +4069,14 @@ global-prefix@^1.0.1:
is-windows "^1.0.1" is-windows "^1.0.1"
which "^1.2.14" which "^1.2.14"
globals@^11.0.1, globals@^11.1.0: globals@^11.1.0:
version "11.2.0" version "11.2.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-11.2.0.tgz#aa2ece052a787563ba70a3dcd9dc2eb8a9a0488c" 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: globals@^9.18.0:
version "9.18.0" version "9.18.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
@ -4275,6 +4333,10 @@ has-gulplog@^0.1.0:
dependencies: dependencies:
sparkles "^1.0.0" 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: has-unicode@^2.0.0:
version "2.0.1" version "2.0.1"
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
@ -4692,21 +4754,20 @@ inquirer@^1.1.2:
strip-ansi "^3.0.0" strip-ansi "^3.0.0"
through "^2.3.6" through "^2.3.6"
inquirer@^3.0.6: inquirer@^5.2.0:
version "3.2.3" version "5.2.0"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.3.tgz#1c7b1731cf77b934ec47d22c9ac5aa8fe7fbe095" resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-5.2.0.tgz#db350c2b73daca77ff1243962e9f22f099685726"
dependencies: dependencies:
ansi-escapes "^2.0.0" ansi-escapes "^3.0.0"
chalk "^2.0.0" chalk "^2.0.0"
cli-cursor "^2.1.0" cli-cursor "^2.1.0"
cli-width "^2.0.0" cli-width "^2.0.0"
external-editor "^2.0.4" external-editor "^2.1.0"
figures "^2.0.0" figures "^2.0.0"
lodash "^4.3.0" lodash "^4.3.0"
mute-stream "0.0.7" mute-stream "0.0.7"
run-async "^2.2.0" run-async "^2.2.0"
rx-lite "^4.0.8" rxjs "^5.5.2"
rx-lite-aggregates "^4.0.8"
string-width "^2.1.0" string-width "^2.1.0"
strip-ansi "^4.0.0" strip-ansi "^4.0.0"
through "^2.3.6" through "^2.3.6"
@ -4944,12 +5005,17 @@ is-jpg@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/is-jpg/-/is-jpg-1.0.0.tgz#2959c17e73430db38264da75b90dd54f2d86da1c" resolved "https://registry.yarnpkg.com/is-jpg/-/is-jpg-1.0.0.tgz#2959c17e73430db38264da75b90dd54f2d86da1c"
is-my-ip-valid@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz#7b351b8e8edd4d3995d4d066680e664d94696824"
is-my-json-valid@^2.12.4: is-my-json-valid@^2.12.4:
version "2.17.1" version "2.19.0"
resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz#3da98914a70a22f0a8563ef1511a246c6fc55471" resolved "https://registry.yarnpkg.com/is-my-json-valid/-/is-my-json-valid-2.19.0.tgz#8fd6e40363cd06b963fa877d444bfb5eddc62175"
dependencies: dependencies:
generate-function "^2.0.0" generate-function "^2.0.0"
generate-object-property "^1.1.0" generate-object-property "^1.1.0"
is-my-ip-valid "^1.0.0"
jsonpointer "^4.0.0" jsonpointer "^4.0.0"
xtend "^4.0.0" xtend "^4.0.0"
@ -5069,11 +5135,9 @@ is-relative@^1.0.0:
dependencies: dependencies:
is-unc-path "^1.0.0" is-unc-path "^1.0.0"
is-resolvable@^1.0.0: is-resolvable@^1.1.0:
version "1.0.0" version "1.1.0"
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.0.0.tgz#8df57c61ea2e3c501408d100fb013cf8d6e0cc62" resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
dependencies:
tryit "^1.0.1"
is-retry-allowed@^1.0.0: is-retry-allowed@^1.0.0:
version "1.1.0" version "1.1.0"
@ -5237,7 +5301,14 @@ js-tokens@^3.0.0, js-tokens@^3.0.2:
version "3.0.2" version "3.0.2"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 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" version "3.10.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
dependencies: dependencies:
@ -5255,10 +5326,6 @@ jsbn@~0.1.0:
version "0.1.1" version "0.1.1"
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 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: jsesc@^1.3.0:
version "1.3.0" version "1.3.0"
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
@ -5283,6 +5350,10 @@ json-schema-traverse@^0.3.0:
version "0.3.1" version "0.3.1"
resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 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: json-schema@0.2.3:
version "0.2.3" version "0.2.3"
resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
@ -5735,6 +5806,10 @@ lodash@^4, lodash@^4.0.0, lodash@^4.12.0, lodash@^4.14.0, lodash@^4.14.1, lodash
version "4.17.4" version "4.17.4"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 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: log-symbols@^2.0.0:
version "2.1.0" version "2.1.0"
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6"
@ -5811,8 +5886,8 @@ lru-cache@^4.0.1, lru-cache@^4.1.1:
yallist "^2.1.2" yallist "^2.1.2"
macaddress@^0.2.8: macaddress@^0.2.8:
version "0.2.8" version "0.2.9"
resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.8.tgz#5904dc537c39ec6dbefeae902327135fa8511f12" resolved "https://registry.yarnpkg.com/macaddress/-/macaddress-0.2.9.tgz#3579b8b9acd5b96b4553abf0f394185a86813cb3"
make-dir@^1.0.0: make-dir@^1.0.0:
version "1.0.0" version "1.0.0"
@ -5853,8 +5928,8 @@ markdown-table@^1.1.0:
resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.1.tgz#4b3dd3a133d1518b8ef0dbc709bf2a1b4824bc8c" resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.1.tgz#4b3dd3a133d1518b8ef0dbc709bf2a1b4824bc8c"
marked@^0.3.6: marked@^0.3.6:
version "0.3.6" version "0.3.19"
resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.6.tgz#b2c6c618fccece4ef86c4fc6cb8a7cbf5aeda8d7" resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790"
masonry-layout@^4.1.0: masonry-layout@^4.1.0:
version "4.2.0" version "4.2.0"
@ -6036,7 +6111,7 @@ mime@1.4.1:
version "1.4.1" version "1.4.1"
resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6" resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
mime@^1.3.4, mime@^1.3.6, mime@^1.5.0: mime@^1.3.4, mime@^1.4.1, mime@^1.5.0:
version "1.6.0" version "1.6.0"
resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
@ -6097,8 +6172,8 @@ mississippi@^1.3.0:
through2 "^2.0.0" through2 "^2.0.0"
mixin-deep@^1.2.0: mixin-deep@^1.2.0:
version "1.3.0" version "1.3.1"
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.0.tgz#47a8732ba97799457c8c1eca28f95132d7e8150a" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
dependencies: dependencies:
for-in "^1.0.2" for-in "^1.0.2"
is-extendable "^1.0.1" is-extendable "^1.0.1"
@ -6235,6 +6310,10 @@ negotiator@0.6.1:
version "0.6.1" version "0.6.1"
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9" 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: no-case@^2.2.0:
version "2.3.2" version "2.3.2"
resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac"
@ -6631,7 +6710,7 @@ os-shim@^0.1.2:
version "0.1.3" version "0.1.3"
resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 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" version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
@ -6821,7 +6900,7 @@ path-is-inside@^1.0.1, path-is-inside@^1.0.2:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 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" version "2.0.1"
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
@ -7350,16 +7429,16 @@ preserve@^0.2.0:
version "0.2.0" version "0.2.0"
resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
pressbooks-build-tools@^0.12.0: pressbooks-build-tools@^0.13.0:
version "0.12.0" version "0.13.0"
resolved "https://registry.yarnpkg.com/pressbooks-build-tools/-/pressbooks-build-tools-0.12.0.tgz#5dd3f5893a07779e4f2d96266754a770cf2311fd" resolved "https://registry.yarnpkg.com/pressbooks-build-tools/-/pressbooks-build-tools-0.13.0.tgz#b84b793b7bd03c612adc90e565070fc594aea795"
dependencies: dependencies:
babel-eslint "^8.2.1" babel-eslint "^8.2.1"
browser-sync "^2.23.6" browser-sync "^2.23.6"
browser-sync-webpack-plugin "^2.0.1" browser-sync-webpack-plugin "^2.0.1"
cross-env "^5.1.3" cross-env "^5.1.3"
eslint "^4.18.0" eslint "^5.0.0"
eslint-config-humanmade "^0.4.0" eslint-config-humanmade "^0.5.0"
eslint-config-react-app "^2.1.0" eslint-config-react-app "^2.1.0"
eslint-loader "~2.0" eslint-loader "~2.0"
eslint-plugin-flowtype "^2.45.0" eslint-plugin-flowtype "^2.45.0"
@ -7408,6 +7487,10 @@ process-nextick-args@~1.0.6:
version "1.0.7" version "1.0.7"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3"
process-nextick-args@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
process@^0.11.0: process@^0.11.0:
version "0.11.10" version "0.11.10"
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
@ -7492,6 +7575,10 @@ punycode@^1.2.4, punycode@^1.4.1:
version "1.4.1" version "1.4.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 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: q@^1.1.2:
version "1.5.0" version "1.5.0"
resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1"
@ -7500,10 +7587,14 @@ qs@6.2.1:
version "6.2.1" version "6.2.1"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625" resolved "https://registry.yarnpkg.com/qs/-/qs-6.2.1.tgz#ce03c5ff0935bc1d9d69a9f14cbd18e568d67625"
qs@6.5.1, qs@^6.2.0, qs@^6.4.0: qs@6.5.1, qs@^6.2.0:
version "6.5.1" version "6.5.1"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
qs@^6.5.1:
version "6.5.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
qs@~6.3.0: qs@~6.3.0:
version "6.3.2" version "6.3.2"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c" resolved "https://registry.yarnpkg.com/qs/-/qs-6.3.2.tgz#e75bd5f6e268122a2a0e0bda630b2550c166502c"
@ -7651,6 +7742,18 @@ read-pkg@^3.0.0:
isarray "0.0.1" isarray "0.0.1"
string_decoder "~0.10.x" string_decoder "~0.10.x"
readable-stream@^2.3.5:
version "2.3.6"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
dependencies:
core-util-is "~1.0.0"
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.1"
readable-stream@~1.1.9: readable-stream@~1.1.9:
version "1.1.14" version "1.1.14"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
@ -7763,7 +7866,13 @@ regex-parser@^2.2.1:
version "2.2.8" version "2.2.8"
resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.8.tgz#da4c0cda5a828559094168930f455f532b6ffbac" 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" version "1.1.0"
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab"
@ -8151,16 +8260,6 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies: dependencies:
aproba "^1.1.1" 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: rx-lite@^3.1.2:
version "3.1.2" version "3.1.2"
resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102"
@ -8169,6 +8268,12 @@ rx@4.1.0, rx@^4.1.0:
version "4.1.0" version "4.1.0"
resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 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: 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" version "5.1.1"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
@ -8254,7 +8359,7 @@ semver-truncate@^1.0.0:
dependencies: dependencies:
semver "^5.3.0" 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" version "5.5.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
@ -8691,10 +8796,10 @@ sshpk@^1.7.0:
tweetnacl "~0.14.0" tweetnacl "~0.14.0"
ssri@^5.0.0: ssri@^5.0.0:
version "5.0.0" version "5.3.0"
resolved "https://registry.yarnpkg.com/ssri/-/ssri-5.0.0.tgz#13c19390b606c821f2a10d02b351c1729b94d8cf" resolved "https://registry.yarnpkg.com/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06"
dependencies: dependencies:
safe-buffer "^5.1.0" safe-buffer "^5.1.1"
stackframe@^1.0.3: stackframe@^1.0.3:
version "1.0.4" version "1.0.4"
@ -8792,6 +8897,16 @@ string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1:
is-fullwidth-code-point "^2.0.0" is-fullwidth-code-point "^2.0.0"
strip-ansi "^4.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: string.prototype.trim@~1.1.2:
version "1.1.2" version "1.1.2"
resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea"
@ -8810,6 +8925,12 @@ string_decoder@~1.0.3:
dependencies: dependencies:
safe-buffer "~5.1.0" safe-buffer "~5.1.0"
string_decoder@~1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
dependencies:
safe-buffer "~5.1.0"
stringify-entities@^1.0.1: stringify-entities@^1.0.1:
version "1.3.1" version "1.3.1"
resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.1.tgz#b150ec2d72ac4c1b5f324b51fb6b28c9cdff058c" resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-1.3.1.tgz#b150ec2d72ac4c1b5f324b51fb6b28c9cdff058c"
@ -8820,8 +8941,8 @@ stringify-entities@^1.0.1:
is-hexadecimal "^1.0.0" is-hexadecimal "^1.0.0"
stringstream@~0.0.4: stringstream@~0.0.4:
version "0.0.5" version "0.0.6"
resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.6.tgz#7880225b0d4ad10e30927d167a1d6f2fd3b33a72"
strip-ansi@^3.0.0, strip-ansi@^3.0.1: strip-ansi@^3.0.0, strip-ansi@^3.0.1:
version "3.0.1" version "3.0.1"
@ -8877,7 +8998,7 @@ strip-indent@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 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" version "2.0.1"
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
@ -9030,19 +9151,19 @@ sum-up@^1.0.1:
chalk "^1.0.0" chalk "^1.0.0"
superagent@^3.3.1: superagent@^3.3.1:
version "3.6.0" version "3.8.3"
resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.6.0.tgz#eb679651057c3462199c7b902b696c25350e1b87" resolved "https://registry.yarnpkg.com/superagent/-/superagent-3.8.3.tgz#460ea0dbdb7d5b11bc4f78deba565f86a178e128"
dependencies: dependencies:
component-emitter "^1.2.0" component-emitter "^1.2.0"
cookiejar "^2.1.0" cookiejar "^2.1.0"
debug "^2.6.0" debug "^3.1.0"
extend "^3.0.0" extend "^3.0.0"
form-data "^2.1.1" form-data "^2.3.1"
formidable "^1.1.1" formidable "^1.2.0"
methods "^1.1.1" methods "^1.1.1"
mime "^1.3.6" mime "^1.4.1"
qs "^6.4.0" qs "^6.5.1"
readable-stream "^2.0.5" readable-stream "^2.3.5"
supports-color@^2.0.0: supports-color@^2.0.0:
version "2.0.0" version "2.0.0"
@ -9088,16 +9209,9 @@ svgo@^0.7.0:
sax "~1.2.1" sax "~1.2.1"
whet.extend "~0.9.9" whet.extend "~0.9.9"
table@4.0.2: symbol-observable@1.0.1:
version "4.0.2" version "1.0.1"
resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4"
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"
table@^4.0.1: table@^4.0.1:
version "4.0.1" version "4.0.1"
@ -9110,6 +9224,17 @@ table@^4.0.1:
slice-ansi "0.0.4" slice-ansi "0.0.4"
string-width "^2.0.0" 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: tapable@^0.2.7:
version "0.2.8" version "0.2.8"
resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22" resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.8.tgz#99372a5c999bf2df160afc0d74bed4f47948cd22"
@ -9204,7 +9329,7 @@ term-size@^1.2.0:
dependencies: dependencies:
execa "^0.7.0" execa "^0.7.0"
text-table@~0.2.0: text-table@^0.2.0:
version "0.2.0" version "0.2.0"
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
@ -9280,11 +9405,11 @@ tmp@^0.0.29:
dependencies: dependencies:
os-tmpdir "~1.0.1" os-tmpdir "~1.0.1"
tmp@^0.0.31: tmp@^0.0.33:
version "0.0.31" version "0.0.33"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7" resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
dependencies: dependencies:
os-tmpdir "~1.0.1" os-tmpdir "~1.0.2"
to-absolute-glob@^0.1.1: to-absolute-glob@^0.1.1:
version "0.1.1" version "0.1.1"
@ -9343,8 +9468,8 @@ toml@^2.3.2:
resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.3.tgz#8d683d729577cb286231dfc7a8affe58d31728fb" resolved "https://registry.yarnpkg.com/toml/-/toml-2.3.3.tgz#8d683d729577cb286231dfc7a8affe58d31728fb"
tough-cookie@~2.3.0: tough-cookie@~2.3.0:
version "2.3.2" version "2.3.4"
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.2.tgz#f081f76e4c85720e6c37a5faced737150d84072a" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
dependencies: dependencies:
punycode "^1.4.1" punycode "^1.4.1"
@ -9384,10 +9509,6 @@ trough@^1.0.0:
dependencies: dependencies:
glob "^6.0.4" 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: tty-browserify@0.0.0:
version "0.0.0" version "0.0.0"
resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
@ -9640,6 +9761,12 @@ upper-case@^1.1.1:
version "1.1.3" version "1.1.3"
resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" 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: urix@^0.1.0, urix@~0.1.0:
version "0.1.0" version "0.1.0"
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"

Loading…
Cancel
Save