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. 15
      comments.php
  9. 10
      composer.json
  10. 191
      composer.lock
  11. 18
      footer.php
  12. 9
      functions.php
  13. 22
      header.php
  14. 68
      inc/actions/namespace.php
  15. 11
      inc/activation/namespace.php
  16. 8
      inc/admin/namespace.php
  17. 158
      inc/customizer/namespace.php
  18. 8
      inc/filters/namespace.php
  19. 37
      inc/helpers/namespace.php
  20. 15
      inc/intervention.php
  21. 9
      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. 18201
      package-lock.json
  72. 6
      package.json
  73. 10
      page-catalog.php
  74. 9
      page.php
  75. 24
      partials/book.php
  76. 55
      partials/contact-form.php
  77. 17
      partials/content-front-page.php
  78. 15
      partials/content-none.php
  79. 49
      partials/content-page-catalog.php
  80. 6
      partials/content-page.php
  81. 18
      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
- "/^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(-(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(\\.(0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*)?(\\+[0-9a-zA-Z-]+(\\.[0-9a-zA-Z-]+)*)?$/"
php:
- 7.0
- 7.1
- 7.2
- nightly
@ -43,12 +42,13 @@ script:
- composer test
before_deploy:
- export TRAVIS_PROJECT_SLUG="$(basename $TRAVIS_BUILD_DIR)"
- curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
- chmod +x wp-cli.phar
- sudo mv wp-cli.phar /usr/local/bin/wp
- wp package install wp-cli/dist-archive-command
- composer install --no-dev --optimize-autoloader
- cd ../
- zip -9 -ry $TRAVIS_BUILD_DIR/$TRAVIS_PROJECT_SLUG-$TRAVIS_TAG.zip $TRAVIS_PROJECT_SLUG
-x *.git* *assets/\* *node_modules/\* *tests/\* *.editorconfig* *.gitattributes*
*.github* *.gitignore* *.travis.yml* *package-lock.json* *phpcs.xml* *webpack.mix.js*
*yarn.lock*
- wp dist-archive $TRAVIS_PROJECT_SLUG $TRAVIS_BUILD_DIR/$TRAVIS_PROJECT_SLUG-$TRAVIS_TAG.zip
- cd $TRAVIS_BUILD_DIR
deploy:
provider: releases

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/)
**Tags:** publishing, catalog, pressbooks, default-theme
**Requires at least:** 4.9.4
**Tested up to:** 4.9.4
**Stable tag:** 1.2.1
**Requires at least:** 4.9.8
**Tested up to:** 4.9.8
**Stable tag:** 1.5.0
**License:** GNU General Public License v3 or later
**License URI:** LICENSE
@ -42,6 +42,47 @@ TK.
## 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
@ -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.
## Upgrade Notice
- Aldine 1.5.0 requires PHP >= 7.1.
## Credits
* Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
- Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)

9
archive.php

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

12
assets/scripts/page-section.js

@ -20,16 +20,20 @@
label: 'Variant',
values: [
{
text: aldine.page_section.standard, value: '',
text: aldine.page_section.standard,
value: '',
},
{
text: aldine.page_section.accent, value: 'accent',
text: aldine.page_section.accent,
value: 'accent',
},
{
text: aldine.page_section.bordered, value: 'bordered',
text: aldine.page_section.bordered,
value: 'bordered',
},
{
text: aldine.page_section.borderless, value: 'borderless',
text: aldine.page_section.borderless,
value: 'borderless',
},
],
value: '', // Sets the default

15
comments.php

@ -24,7 +24,8 @@ if ( post_password_required() ) {
<?php
// You can start editing here -- including this comment!
if ( have_comments() ) : ?>
if ( have_comments() ) :
?>
<h2 class="comments-title">
<?php
$comment_count = get_comments_number();
@ -49,17 +50,21 @@ if ( post_password_required() ) {
<ol class="comment-list">
<?php
wp_list_comments( [
wp_list_comments(
[
'style' => 'ol',
'short_ping' => true,
] );
]
);
?>
</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_open() ) : ?>
if ( ! comments_open() ) :
?>
<p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'pressbooks-aldine' ); ?></p>
<?php
endif;

10
composer.json

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

191
composer.lock generated

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

18
footer.php

@ -20,9 +20,11 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );
</div><!-- #content -->
<?php if ( $pb_network_contact_form ) :
<?php
if ( $pb_network_contact_form ) :
include( locate_template( 'partials/contact-form.php' ) );
endif; ?>
endif;
?>
<footer class="footer" role="contentinfo">
<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' ); ?>
<div class="social-media">
<?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' ) ); ?>">
<svg class="icon--svg">
<use xlink:href="#facebook" />
</svg>
<?php /* translators: %s network name */ ?>
<span class="screen-reader-text"><?php printf( __( '%s on Facebook', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span>
</a>
<?php } ?>
<?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' ) ); ?>">
<svg class="icon--svg">
<use xlink:href="#twitter" />
</svg>
<?php /* translators: %s network name */ ?>
<span class="screen-reader-text"><?php printf( __( '%s on Twitter', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) ); ?></span>
</a>
<?php } ?>
@ -67,12 +73,13 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );
</svg>
</a>
<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>
<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.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.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>
</ul>
</div>
<div class="footer__pressbooks__social">
@ -88,7 +95,6 @@ $pb_network_contact_form = get_option( 'pb_network_contact_form' );
</svg>
<span class="screen-reader-text"><?php _e( 'Pressbooks on Twitter', 'pressbooks-aldine' ); ?></span></a>
</div>
</section>
</div><!-- .container -->
</footer><!-- .footer -->

9
functions.php

@ -13,11 +13,13 @@
if ( ! class_exists( 'Spatie\\Color\\Hex' ) ) {
$composer = get_template_directory() . '/vendor/autoload.php';
if ( ! file_exists( $composer ) ) {
wp_die( sprintf(
wp_die(
sprintf(
'<h1>%1$s</h1><p>%2$s</p>',
__( 'Dependencies Missing', 'pressbooks-aldine' ),
__( 'You must run <code>composer install</code> from the Aldine directory.', 'pressbooks-aldine' )
) );
)
);
}
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_action( 'manage_blogs_custom_column', '\Aldine\Admin\catalog_column', 1, 3 );
add_action( 'manage_sites_custom_column', '\Aldine\Admin\catalog_column', 1, 3 );
// Remove first submenu page from Tools.
add_action( 'admin_menu', '\Aldine\Actions\remove_tools_menu' );

22
header.php

@ -42,7 +42,8 @@
</svg>
<div id="page" class="site">
<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 ( has_header_image() ) {
echo( get_header_image() );
@ -51,18 +52,23 @@
}
} else {
echo get_template_directory_uri() . '/dist/images/catalog-header.jpg';
} ?>);">
}
?>
);">
<div class="header__inside">
<div class="header__brand">
<a title="<?php echo get_bloginfo( 'name', 'display' ); ?>" href="<?php echo network_home_url(); ?>">
<?php if ( has_custom_logo() ) { ?>
<?php $custom_logo_id = get_theme_mod( 'custom_logo' );
<?php
$custom_logo_id = get_theme_mod( 'custom_logo' );
printf(
'<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_srcset( $custom_logo_id, 'large' ),
/* translators: %s name of network */
sprintf( __( 'Logo for %s', 'pressbooks-aldine' ), get_bloginfo( 'name', 'display' ) )
); ?>
);
?>
<?php } else { ?>
<svg class="header__logo--svg">
<use xlink:href="#logo-pressbooks" />
@ -72,7 +78,9 @@
</div>
<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>
<?php wp_nav_menu( [
<?php
wp_nav_menu(
[
'theme_location' => 'primary-menu',
'fallback_cb' => '\Aldine\Helpers\default_menu',
'container' => 'nav',
@ -80,7 +88,9 @@
'container_id' => 'navigation',
'menu_id' => 'nav-primary-menu',
'menu_class' => 'nav--primary',
] ); ?>
]
);
?>
</div>
</div>
</header> <!-- .header -->

68
inc/actions/namespace.php

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

11
inc/activation/namespace.php

@ -42,6 +42,7 @@ function create_default_content() {
__( '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' ),
sprintf(
/* translators: %s link to about page */
__( 'For more information about Pressbooks, %s.', 'pressbooks-aldine' ),
sprintf( '<a href="https://pressbooks.com/about">%s</a>', __( 'see here', 'pressbooks-aldine' ) )
)
@ -55,6 +56,7 @@ function create_default_content() {
sprintf(
'<p>%1$s</p><p>%2$s</p>',
sprintf(
/* translators: %1$s: link to how to page; %2$s: link to guide */
__( 'The easiest way to get started with Pressbooks is to follow our %1$s. Or, you can review our %2$s.', 'pressbooks-aldine' ),
sprintf( '<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' ) )
@ -79,7 +81,14 @@ function create_default_content() {
foreach ( $default_pages as $slug => $page ) {
$check = get_page_by_path( $slug );
if ( empty( $check ) ) {
$pages[ $slug ] = wp_insert_post( array_merge( $page, [ 'post_type' => 'page', 'post_status' => 'publish' ] ) );
$pages[ $slug ] = wp_insert_post(
array_merge(
$page, [
'post_type' => 'page',
'post_status' => 'publish',
]
)
);
} else {
$pages[ $slug ] = $check->ID;
}

8
inc/admin/namespace.php

@ -70,7 +70,11 @@ function catalog_column( $column, $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
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 } ?> />
<?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 } ?> />
<?php
}
}

158
inc/customizer/namespace.php

@ -28,30 +28,38 @@ function customize_register( \WP_Customize_Manager $wp_customize ) {
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
if ( isset( $wp_customize->selective_refresh ) ) {
$wp_customize->selective_refresh->add_partial( 'blogname', [
$wp_customize->selective_refresh->add_partial(
'blogname', [
'selector' => '.site-title a',
'render_callback' => function() {
bloginfo( 'name' );
},
] );
$wp_customize->selective_refresh->add_partial( 'blogdescription', [
]
);
$wp_customize->selective_refresh->add_partial(
'blogdescription', [
'selector' => '.site-description',
'render_callback' => function() {
bloginfo( 'description' );
},
] );
$wp_customize->selective_refresh->add_partial( 'pb_front_page_catalog_title', [
]
);
$wp_customize->selective_refresh->add_partial(
'pb_front_page_catalog_title', [
'selector' => '#latest-books-title',
'render_callback' => function() {
get_option( 'pb_front_page_catalog_title' );
},
] );
$wp_customize->selective_refresh->add_partial( 'pb_network_contact_form_title', [
]
);
$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 ( [
@ -61,12 +69,24 @@ function customize_register( \WP_Customize_Manager $wp_customize ) {
'label' => __( 'Primary Color', 'pressbooks-aldine' ),
'description' => __( 'Primary color, used for links and other primary elements.', 'pressbooks-aldine' ),
],
[
'slug' => 'primary_dark',
'hex' => '#7f0c07',
'label' => __( 'Primary Color (Hover)', 'pressbooks-aldine' ),
'description' => __( 'Variant of the primary color, used for primary element hover states.', 'pressbooks-aldine' ),
],
[
'slug' => 'accent',
'hex' => '#015d75',
'label' => __( 'Accent Color', 'pressbooks-aldine' ),
'description' => __( 'Accent color, used for flourishes and secondary elements.', 'pressbooks-aldine' ),
],
[
'slug' => 'accent_dark',
'hex' => '#013542',
'label' => __( 'Accent Color (Hover)', 'pressbooks-aldine' ),
'description' => __( 'Variant of the accent color, used for secondary element hover states.', 'pressbooks-aldine' ),
],
[
'slug' => 'primary_fg',
'hex' => '#ffffff',
@ -80,11 +100,14 @@ function customize_register( \WP_Customize_Manager $wp_customize ) {
'description' => __( 'Used for text on an accent color background.', 'pressbooks-aldine' ),
],
] as $color ) {
$wp_customize->add_setting("pb_network_color_{$color['slug']}", [
$wp_customize->add_setting(
"pb_network_color_{$color['slug']}", [
'type' => 'option',
'default' => $color['hex'],
]);
$wp_customize->add_control(new \WP_Customize_Color_Control(
]
);
$wp_customize->add_control(
new \WP_Customize_Color_Control(
$wp_customize,
"pb_network_color_{$color['slug']}",
[
@ -93,90 +116,125 @@ function customize_register( \WP_Customize_Manager $wp_customize ) {
'description' => $color['description'],
'settings' => "pb_network_color_{$color['slug']}",
]
));
)
);
}
$wp_customize->add_section('pb_network_social', [
$wp_customize->add_section(
'pb_network_social', [
'title' => __( 'Social Media', 'pressbooks-aldine' ),
'priority' => 30,
]);
$wp_customize->add_setting('pb_network_facebook', [
]
);
$wp_customize->add_setting(
'pb_network_facebook', [
'type' => 'option',
'sanitize_callback' => 'esc_url_raw',
]);
$wp_customize->add_control('pb_network_facebook', [
]
);
$wp_customize->add_control(
'pb_network_facebook', [
'label' => __( 'Facebook', 'pressbooks-aldine' ),
'section' => 'pb_network_social',
'settings' => 'pb_network_facebook',
]);
$wp_customize->add_setting('pb_network_twitter', [
]
);
$wp_customize->add_setting(
'pb_network_twitter', [
'type' => 'option',
'sanitize_callback' => 'esc_url_raw',
]);
$wp_customize->add_control('pb_network_twitter', [
]
);
$wp_customize->add_control(
'pb_network_twitter', [
'label' => __( 'Twitter', 'pressbooks-aldine' ),
'section' => 'pb_network_social',
'settings' => 'pb_network_twitter',
]);
]
);
if ( defined( 'PB_PLUGIN_VERSION' ) ) {
$wp_customize->add_section('pb_front_page_catalog', [
$wp_customize->add_section(
'pb_front_page_catalog', [
'title' => __( 'Front Page Catalog', 'pressbooks-aldine' ),
'priority' => 25,
]);
$wp_customize->add_setting('pb_front_page_catalog', [
]
);
$wp_customize->add_setting(
'pb_front_page_catalog', [
'type' => 'option',
]);
$wp_customize->add_control('pb_front_page_catalog', [
]
);
$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', [
]
);
$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', [
]
);
$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', [
$wp_customize->add_section(
'pb_network_contact_form', [
'title' => __( 'Contact Form', 'pressbooks-aldine' ),
'priority' => 25,
]);
$wp_customize->add_setting('pb_network_contact_form', [
]
);
$wp_customize->add_setting(
'pb_network_contact_form', [
'type' => 'option',
]);
$wp_customize->add_control('pb_network_contact_form', [
]
);
$wp_customize->add_control(
'pb_network_contact_form', [
'label' => __( 'Show Contact Form', 'pressbooks-aldine' ),
'section' => 'pb_network_contact_form',
'settings' => 'pb_network_contact_form',
'type' => 'checkbox',
]);
$wp_customize->add_setting('pb_network_contact_form_title', [
]
);
$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', [
]
);
$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', [
]
);
$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', [
]
);
$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 = [
'validate_color_contrast' => [
'pb_network_color_primary_fg' => [ 'pb_network_color_primary' ],
'pb_network_color_accent_fg' => [ 'pb_network_color_accent' ],
'pb_network_color_primary_fg' => [ 'pb_network_color_primary', 'pb_network_color_primary_dark' ],
'pb_network_color_accent_fg' => [ 'pb_network_color_accent', 'pb_network_color_accent_dark' ],
'pb_network_color_primary' => [ 'pb_network_color_primary_fg' ],
'pb_network_color_primary_dark' => [ 'pb_network_color_primary_fg' ],
'pb_network_color_accent' => [ 'pb_network_color_accent_fg' ],
'pb_network_color_accent_dark' => [ 'pb_network_color_accent_fg' ],
],
];

8
inc/filters/namespace.php

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

37
inc/helpers/namespace.php

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

15
inc/intervention.php

@ -11,14 +11,18 @@ intervention( 'remove-customizer-items', 'static-front-page', 'all' );
intervention( 'remove-emoji' );
intervention( 'remove-howdy', __( 'Hello,', 'pressbooks-aldine' ) );
intervention( 'remove-dashboard-items', [ 'activity', 'quick-draft' ] );
intervention( 'remove-menu-items', [
intervention(
'remove-menu-items', [
'posts',
'tools',
'tool-import',
'tool-export',
'setting-writing',
'setting-reading',
'setting-permalink',
], 'all' );
intervention( 'remove-widgets', [
], 'all'
);
intervention(
'remove-widgets', [
'pages',
'calendar',
'archives',
@ -35,5 +39,6 @@ intervention( 'remove-widgets', [
'custom-html',
'media-video',
'akismet',
], 'all' );
], 'all'
);
intervention( 'remove-toolbar-frontend', 'all' );

9
index.php

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

180
languages/ar.po

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

180
languages/ca.po

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

180
languages/cs.po

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

180
languages/cs_CZ.po

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

180
languages/da_DK.po

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

180
languages/de_CH.po

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

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
msgid "Powered by %s"
msgstr ""
msgstr "Powered by %s"
#: ../footer.php:72
msgid "Open Source"
msgstr ""
msgstr "Open Source"
#: ../footer.php:73
msgid "Open Textbooks"
msgstr ""
msgstr "Open Textbooks"
#: ../footer.php:74
msgid "Open Book Publishing"
msgstr ""
msgstr "Open Book Publishing"
#: ../footer.php75, ../inc/activation/namespace.php:27
msgid "Learn More"
@ -71,11 +71,11 @@ msgstr "Mehr erfahren"
#: ../footer.php79, ../footer.php:83
msgid "Pressbooks on Facebook"
msgstr ""
msgstr "Pressbooks auf Facebook"
#: ../footer.php85, ../footer.php:89
msgid "Pressbooks on Twitter"
msgstr ""
msgstr "Pressbooks auf Twitter"
#: ../functions.php:18
msgid "Dependencies Missing"
@ -96,7 +96,7 @@ msgstr "Logo für %s"
#: ../header.php:74
msgid "Toggle Menu"
msgstr ""
msgstr "Menü umschalten"
#: ../inc/intervention.php:12
msgid "Hello,"
@ -110,30 +110,66 @@ msgstr "Hauptmenü"
msgid "Footer Menu"
msgstr "Fusszeilen-Menü"
#: ../inc/actions/namespace.php:104
#: ../inc/actions/namespace.php:107
msgid "Network Footer Block 1"
msgstr "Block 1 im Netzwerk-Fuss"
#: ../inc/actions/namespace.php:114
#: ../inc/actions/namespace.php:117
msgid "Network Footer Block 2"
msgstr "Block 2 im Netzwerk-Block"
#: ../inc/actions/namespace.php139,
#: ../inc/actions/namespace.php142,
#: ../partials/content-accessibility-toolbar.php6,
#: ../partials/content-accessibility-toolbar.php:7
msgid "Increase Font Size"
msgstr "Schriftgrösse vergrössern"
#: ../inc/actions/namespace.php:140
#: ../inc/actions/namespace.php:143
msgid "Decrease Font Size"
msgstr "Schriftgrösse verkleinern"
#: ../inc/actions/namespace.php:223
#: ../inc/actions/namespace.php:226
msgid ""
"This page displays your network catalog, so there is no content to edit."
msgstr ""
"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
msgid "About Pressbooks"
msgstr "Über Pressbooks"
@ -217,7 +253,7 @@ msgstr ""
msgid "Catalog"
msgstr "Katalog"
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home"
msgstr "Home"
@ -250,151 +286,159 @@ msgid "This book is private, so you can&rsquo;t display it in your catalog."
msgstr ""
"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"
msgstr "Hauptfarbe"
#: ../inc/customizer/namespace.php:46
#: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements."
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"
msgstr "Akzentfarbe"
#: ../inc/customizer/namespace.php:52
#: ../inc/customizer/namespace.php:74
msgid "Accent color, used for flourishes and secondary elements."
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"
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."
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"
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."
msgstr "Wird für Text auf einem Hintergrund in Akzentfarbe verwendet."
#: ../inc/customizer/namespace.php:83
#: ../inc/customizer/namespace.php:111
msgid "Social Media"
msgstr "Soziale Medien"
#: ../inc/customizer/namespace.php:91
#: ../inc/customizer/namespace.php:119
msgid "Facebook"
msgstr "Facebook"
#: ../inc/customizer/namespace.php:100
#: ../inc/customizer/namespace.php:128
msgid "Twitter"
msgstr "Twitter"
#: ../inc/customizer/namespace.php:107
#: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog"
msgstr "Hauptseiten-Katalog"
#: ../inc/customizer/namespace.php:114
#: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog"
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"
msgstr "Titel des Hauptseiten-Katalogs"
#: ../inc/customizer/namespace.php:131
#: ../inc/customizer/namespace.php:160
msgid "Contact Form"
msgstr "Kontakt Formular"
#: ../inc/customizer/namespace.php:138
#: ../inc/customizer/namespace.php:167
msgid "Show Contact Form"
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"
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"
msgstr "Fortgesetzt"
#: ../inc/filters/namespace.php:84
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
#: ../inc/helpers/namespace.php:171
msgid "Contact"
msgstr "Kontakt"
#: ../inc/helpers/namespace.php:175
#: ../inc/helpers/namespace.php:178
msgid "Sign In"
msgstr "Anmelden"
#: ../inc/helpers/namespace.php:181
#: ../inc/helpers/namespace.php:184
msgid "Sign Up"
msgstr "Registrieren"
#: ../inc/helpers/namespace.php:189
#: ../inc/helpers/namespace.php:192
msgid "Admin"
msgstr "Admin"
#: ../inc/helpers/namespace.php:197
#: ../inc/helpers/namespace.php:200
msgid "My Books"
msgstr "Meine Bücher"
#: ../inc/helpers/namespace.php:203
#: ../inc/helpers/namespace.php:206
msgid "Sign Out"
msgstr "Abmelden"
#: ../inc/helpers/namespace.php:256
#: ../inc/helpers/namespace.php:260
msgid "Name is required."
msgstr "Name notwendig"
#: ../inc/helpers/namespace.php:260
#: ../inc/helpers/namespace.php:264
msgid "Email is required."
msgstr "E-Mail notwendig"
#: ../inc/helpers/namespace.php:264
#: ../inc/helpers/namespace.php:268
msgid "Email is invalid."
msgstr "E-Mail ungültig"
#: ../inc/helpers/namespace.php:268
#: ../inc/helpers/namespace.php:272
msgid "Institution is required."
msgstr "Institution benötigt"
#: ../inc/helpers/namespace.php:272
#: ../inc/helpers/namespace.php:276
msgid "Message is required."
msgstr "Nachricht benötigt"
#: ../inc/helpers/namespace.php:278
#: ../inc/helpers/namespace.php:282
msgid "Contact Form Submission from %s"
msgstr "Kontaktformular-Eingabe von %s"
#: ../inc/helpers/namespace.php:289
#: ../inc/helpers/namespace.php:293
msgid "Your message was sent!"
msgstr "Ihre Nachricht wurde versendet!"
#: ../inc/helpers/namespace.php:292
#: ../inc/helpers/namespace.php:296
msgid "Your message could not be sent."
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"
msgstr "Über dieses Buch"
#: ../partials/contact-form.php:11
msgid "Contact Us"
msgstr "Kontaktieren Sie uns"
#: ../partials/contact-form.php:29
#: ../partials/contact-form.php:30
msgid "Your name (required)"
msgstr "Ihr Name (benötigt)"
#: ../partials/contact-form.php:37
#: ../partials/contact-form.php:38
msgid "Your email address (required)"
msgstr "Ihre E-Mail (benötigt)"
#: ../partials/contact-form.php:45
#: ../partials/contact-form.php:46
msgid "Your institution (required)"
msgstr "Ihre Institution (benötigt)"
#: ../partials/contact-form.php:53
#: ../partials/contact-form.php:54
msgid "Your message (required)"
msgstr "Ihre Nachricht (benötigt)"
#: ../partials/contact-form.php:57
#: ../partials/contact-form.php:58
msgid "Send"
msgstr "Senden"
#: ../partials/content-front-page.php:18
msgid "Our Latest Titles"
msgstr "Unsere neusten Titel"
#: ../partials/content-front-page.php:63
#: ../partials/content-front-page.php:67
msgid "View Complete Catalog"
msgstr "Den ganzen Katalog ansehen"
@ -488,10 +524,6 @@ msgstr "Alle Lizenzen"
msgid "Sort by"
msgstr "Sortieren nach"
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr "Titel"
#: ../partials/content-page-catalog.php:50
msgid "Subject"
msgstr "Thema"

180
languages/el.po

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

180
languages/en_CA.po

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

180
languages/en_GB.po

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

180
languages/es_ES.po

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

180
languages/et.po

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

180
languages/eu.po

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

BIN
languages/fr_FR.mo

Binary file not shown.

185
languages/fr_FR.po

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

BIN
languages/gl_ES.mo

Binary file not shown.

199
languages/gl_ES.po

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

BIN
languages/he.mo

Binary file not shown.

305
languages/he.po

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

BIN
languages/hu_HU.mo

Binary file not shown.

350
languages/hu_HU.po

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

BIN
languages/it_IT.mo

Binary file not shown.

377
languages/it_IT.po

@ -1,8 +1,12 @@
# Copyright (C) 2018 pressbooks-aldine
# 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 ""
msgstr ""
"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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,11 +21,11 @@ msgstr ""
#: ../404.php:17
msgid "Oops! That page can&rsquo;t be found."
msgstr ""
msgstr "Oops! Non trovo questa pagina."
#: ../404.php:21
msgid "It looks like nothing was found at this location."
msgstr ""
msgstr "Sembra che non ci sia nulla in questo sito."
#: ../comments.php:34
msgid "One thought on &ldquo;%1$s&rdquo;"
@ -36,7 +40,7 @@ msgstr[1] ""
#: ../comments.php:63
msgid "Comments are closed."
msgstr ""
msgstr "Commenti negati"
#: ../footer.php40, ../footer.php:44
msgid "%s on Facebook"
@ -52,31 +56,31 @@ msgstr ""
#: ../footer.php:72
msgid "Open Source"
msgstr ""
msgstr "Open Source"
#: ../footer.php:73
msgid "Open Textbooks"
msgstr ""
msgstr "Apri Textbooks"
#: ../footer.php:74
msgid "Open Book Publishing"
msgstr ""
msgstr "Apri Book Publishing"
#: ../footer.php75, ../inc/activation/namespace.php:27
msgid "Learn More"
msgstr ""
msgstr "Per saperne di più"
#: ../footer.php79, ../footer.php:83
msgid "Pressbooks on Facebook"
msgstr ""
msgstr "Pressbooks su Facebook"
#: ../footer.php85, ../footer.php:89
msgid "Pressbooks on Twitter"
msgstr ""
msgstr "Pressbooks su Twitter"
#: ../functions.php:18
msgid "Dependencies Missing"
msgstr ""
msgstr "Dipendenze mancanti"
#: ../functions.php:19
msgid "You must run <code>composer install</code> from the Aldine directory."
@ -84,7 +88,7 @@ msgstr ""
#: ../header.php:44
msgid "Skip to content"
msgstr ""
msgstr "Salta questo contenuto"
#: ../header.php:64
msgid "Logo for %s"
@ -92,57 +96,97 @@ msgstr ""
#: ../header.php:74
msgid "Toggle Menu"
msgstr ""
msgstr "Menù Toggle"
#: ../inc/intervention.php:12
msgid "Hello,"
msgstr ""
msgstr "Ciao,"
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111
msgid "Primary Menu"
msgstr ""
msgstr "Menu principale"
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132
msgid "Footer Menu"
msgstr ""
msgstr "Menù a pié di pagina"
#: ../inc/actions/namespace.php:104
#: ../inc/actions/namespace.php:107
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"
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.php:7
msgid "Increase Font Size"
msgstr ""
msgstr "Aumenta dimensione carattere"
#: ../inc/actions/namespace.php:140
#: ../inc/actions/namespace.php:143
msgid "Decrease Font Size"
msgstr ""
msgstr "Riduci dimensione carattere"
#: ../inc/actions/namespace.php:223
#: ../inc/actions/namespace.php:226
msgid ""
"This page displays your network catalog, so there is no content to edit."
msgstr ""
"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
msgid "About Pressbooks"
msgstr ""
msgstr "Informazioni su 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 è un software per scrivere libri facile da usare, che permette di"
" creare un libro in qualsiasi formato di cui hai bisogno."
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137,
#: ../inc/activation/namespace.php:143
msgid "About"
msgstr ""
msgstr "Informazioni su"
#: ../inc/activation/namespace.php:39
msgid ""
@ -150,18 +194,21 @@ msgid ""
"publish textbooks, scholarly monographs, syllabi, fiction and non-fiction "
"books, white papers, and more in multiple formats including:"
msgstr ""
"Pressbooks è un semplice software per la produzione di libri. Puoi usare "
"Pressbooks per pubblicare libri di testo, monografie accademiche, syllabi, "
"romanzi, saggi, white paper e altro ancora in molti formati, inclusi:"
#: ../inc/activation/namespace.php:40
msgid "MOBI (for Kindle ebooks)"
msgstr ""
msgstr "MOBI (per ebook Kindle)"
#: ../inc/activation/namespace.php:41
msgid "EPUB (for all other ebookstores)"
msgstr ""
msgstr "EPUB (per tutti gli altri ebookstore)"
#: ../inc/activation/namespace.php:42
msgid "designed PDF (for print-on-demand and digital distribution)"
msgstr ""
msgstr "designed PDF (per pubblicazione su richiesta e diffusione digitale)"
#: ../inc/activation/namespace.php:45
msgid "For more information about Pressbooks, %s."
@ -169,12 +216,12 @@ msgstr ""
#: ../inc/activation/namespace.php:46
msgid "see here"
msgstr ""
msgstr "Vedi qui"
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167,
#: ../inc/activation/namespace.php:173
msgid "Help"
msgstr ""
msgstr "Aiuto"
#: ../inc/activation/namespace.php:58
msgid ""
@ -184,248 +231,256 @@ msgstr ""
#: ../inc/activation/namespace.php:59
msgid "4 Step Guide to Making a Book on Pressbooks"
msgstr ""
msgstr "Guida su come Creare un Libro su Pressbooks in 4 Passi"
#: ../inc/activation/namespace.php:60
msgid "Guide to Using Pressbooks"
msgstr ""
msgstr "Guida all'utilizzo di Pressbooks"
#: ../inc/activation/namespace.php:62
msgid ""
"If you require further assistance, please contact your network manager."
msgstr ""
"Per richiedere ulteriore aiuto contattare il nostro manager di rete, per "
"favore."
#: ../inc/activation/namespace.php67, ../inc/activation/namespace.php116,
#: ../inc/activation/namespace.php122, ../inc/activation/namespace.php152,
#: ../inc/activation/namespace.php158, ../page-catalog.php:4
msgid "Catalog"
msgstr ""
msgstr "Catalogo"
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:165
msgid "Home"
msgstr ""
msgstr "Home"
#: ../inc/admin/namespace.php:30
msgid "Catalog updated."
msgstr ""
msgstr "Catalogo aggiornato."
#: ../inc/admin/namespace.php:31
msgid "Sorry, but your catalog was not updated. Please try again."
msgstr ""
"Ci dispiace, ma il tuo catalogo non è stato aggiornato. Riprova, per favore."
#: ../inc/admin/namespace.php:32
msgid "Dismiss this notice."
msgstr ""
msgstr "Ignora questa notizia."
#: ../inc/admin/namespace.php:61
msgid "In Catalog"
msgstr ""
msgstr "In catalogo"
#: ../inc/admin/namespace.php:72
msgctxt "pressbooks-aldine"
msgid "Show in Catalog"
msgstr ""
msgstr "Mostra nel catalogo"
#: ../inc/admin/namespace.php:73
msgctxt "pressbooks-aldine"
msgid "This book is private, so you can&rsquo;t display it in your catalog."
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"
msgstr ""
msgstr "Colore primario"
#: ../inc/customizer/namespace.php:46
#: ../inc/customizer/namespace.php:62
msgid "Primary color, used for links and other primary elements."
msgstr "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 ""
"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"
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."
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 ""
"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"
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."
msgstr ""
msgstr "Usato per un testo su uno sfondo primario."
#: ../inc/customizer/namespace.php:63
#: ../inc/customizer/namespace.php:91
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."
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"
msgstr ""
msgstr "Social Media"
#: ../inc/customizer/namespace.php:91
#: ../inc/customizer/namespace.php:119
msgid "Facebook"
msgstr ""
msgstr "Facebook"
#: ../inc/customizer/namespace.php:100
#: ../inc/customizer/namespace.php:128
msgid "Twitter"
msgstr ""
msgstr "Twitter"
#: ../inc/customizer/namespace.php:107
#: ../inc/customizer/namespace.php:135
msgid "Front Page Catalog"
msgstr ""
msgstr "Catalogo della Prima Pagina"
#: ../inc/customizer/namespace.php:114
#: ../inc/customizer/namespace.php:142
msgid "Show Front Page Catalog"
msgstr ""
msgstr "Mostra il Catalogo della Prima Pagina"
#: ../inc/customizer/namespace.php150, ../partials/content-front-page.php:19
msgid "Our Latest Titles"
msgstr "I Nostri Ultimi Titoli"
#: ../inc/customizer/namespace.php:124
#: ../inc/customizer/namespace.php:153
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"
msgstr ""
msgstr "Modulo di Contatto"
#: ../inc/customizer/namespace.php:138
#: ../inc/customizer/namespace.php:167
msgid "Show Contact Form"
msgstr ""
#: ../inc/customizer/namespace.php:148
msgid "Contact Form Title"
msgstr ""
#: ../inc/filters/namespace.php:60
msgid "Continued"
msgstr ""
msgstr "Mostra il Modulo di Contatto"
#: ../inc/filters/namespace.php:84
msgid "Page Section"
msgstr ""
#: ../inc/filters/namespace.php:90
msgid "Page Section (Accent)"
msgstr ""
#: ../inc/customizer/namespace.php175, ../partials/contact-form.php:12
msgid "Contact Us"
msgstr "Come contattarci"
#: ../inc/filters/namespace.php:96
msgid "Page Section (Bordered)"
msgstr ""
#: ../inc/customizer/namespace.php:178
msgid "Contact Form Title"
msgstr "Titolo del Modulo di Contatto"
#: ../inc/filters/namespace.php:102
msgid "Page Section (Borderless)"
msgstr ""
#: ../inc/customizer/namespace.php:188
msgid "Contact Email"
msgstr "Indirizzo Email"
#: ../inc/filters/namespace.php:108
msgid "Call to Action"
msgstr ""
#: ../inc/filters/namespace.php:61
msgid "Continued"
msgstr "Continuato"
#: ../inc/helpers/namespace.php:168
#: ../inc/helpers/namespace.php:171
msgid "Contact"
msgstr ""
msgstr "Contatto"
#: ../inc/helpers/namespace.php:175
#: ../inc/helpers/namespace.php:178
msgid "Sign In"
msgstr ""
msgstr "Accedi"
#: ../inc/helpers/namespace.php:181
#: ../inc/helpers/namespace.php:184
msgid "Sign Up"
msgstr ""
msgstr "Iscriviti"
#: ../inc/helpers/namespace.php:189
#: ../inc/helpers/namespace.php:192
msgid "Admin"
msgstr ""
msgstr "Amministratore"
#: ../inc/helpers/namespace.php:197
#: ../inc/helpers/namespace.php:200
msgid "My Books"
msgstr ""
msgstr "I Miei Libri"
#: ../inc/helpers/namespace.php:203
#: ../inc/helpers/namespace.php:206
msgid "Sign Out"
msgstr ""
msgstr "Disconnetti"
#: ../inc/helpers/namespace.php:256
#: ../inc/helpers/namespace.php:260
msgid "Name is required."
msgstr ""
msgstr "È richiesto un Nome."
#: ../inc/helpers/namespace.php:260
#: ../inc/helpers/namespace.php:264
msgid "Email is required."
msgstr ""
msgstr "È richiesta un'Email."
#: ../inc/helpers/namespace.php:264
#: ../inc/helpers/namespace.php:268
msgid "Email is invalid."
msgstr ""
msgstr "L'Email non è valida."
#: ../inc/helpers/namespace.php:268
#: ../inc/helpers/namespace.php:272
msgid "Institution is required."
msgstr ""
msgstr "È richiesta un'organizzazione."
#: ../inc/helpers/namespace.php:272
#: ../inc/helpers/namespace.php:276
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"
msgstr ""
#: ../inc/helpers/namespace.php:289
#: ../inc/helpers/namespace.php:293
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."
msgstr ""
msgstr "Il tuo messaggio non può essere inviato."
#: ../page-catalog.php:55
msgid "No Books Found"
msgstr ""
msgstr "Nessun libro trovato."
#: ../page-catalog.php:58
msgid "No books have been added to the catalog."
msgstr ""
msgstr "Nessun libro è stato aggiunto al catalogo."
#: ../partials/book.php:27
msgid "About this book"
msgstr ""
msgstr "Riguardo questo libro"
#: ../partials/contact-form.php:11
msgid "Contact Us"
msgstr ""
#: ../partials/contact-form.php:29
#: ../partials/contact-form.php:30
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)"
msgstr ""
msgstr "Il tuo indirizzo email (richiesto)"
#: ../partials/contact-form.php:45
#: ../partials/contact-form.php:46
msgid "Your institution (required)"
msgstr ""
msgstr "La tua organizzazione (richiesta)"
#: ../partials/contact-form.php:53
#: ../partials/contact-form.php:54
msgid "Your message (required)"
msgstr ""
msgstr "Il tuo messaggio (richiesto)"
#: ../partials/contact-form.php:57
#: ../partials/contact-form.php:58
msgid "Send"
msgstr ""
msgstr "Invia"
#: ../partials/content-front-page.php:18
msgid "Our Latest Titles"
msgstr ""
#: ../partials/content-front-page.php:63
#: ../partials/content-front-page.php:67
msgid "View Complete Catalog"
msgstr ""
msgstr "Vedi Catalogo Completo"
#: ../partials/content-none.php:14
msgid "Nothing Found"
msgstr ""
msgstr "Nessun Risultato"
#: ../partials/content-none.php:25
msgid "Ready to publish your first post? <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 "
"different keywords."
msgstr ""
"Ci dispiace, ma nulla corrisponde ai tuoi criteri di ricerca. Riprova con "
"altre parole chiave, per favore."
#: ../partials/content-none.php:44
msgid ""
@ -445,47 +502,43 @@ msgstr ""
#: ../partials/content-page-catalog.php:17
msgid "Filter by Subject"
msgstr ""
msgstr "Filtra per Argomento"
#: ../partials/content-page-catalog.php:19
msgid "All Subjects"
msgstr ""
msgstr "Tutti gli Argomenti"
#: ../partials/content-page-catalog.php:35
msgid "Filter by License"
msgstr ""
msgstr "Filtra per Licensa"
#: ../partials/content-page-catalog.php:37
msgid "All Licenses"
msgstr ""
msgstr "Tutte le License"
#: ../partials/content-page-catalog.php:46
msgid "Sort by"
msgstr ""
#: ../partials/content-page-catalog.php:49
msgid "Title"
msgstr ""
msgstr "Ordina per"
#: ../partials/content-page-catalog.php:50
msgid "Subject"
msgstr ""
msgstr "Argomento"
#: ../partials/content-page-catalog.php:51
msgid "Latest"
msgstr ""
msgstr "Più recenti"
#: ../partials/content-page-catalog.php:58
msgid "Clear Filters"
msgstr ""
msgstr "Rimuovi il Filtro"
#: ../partials/content-page-catalog.php:59
msgid "Submit"
msgstr ""
msgstr "Invia"
#: ../partials/content-page.php22, ../partials/content.php:45
msgid "Pages:"
msgstr ""
msgstr "Pagine:"
#: ../partials/content-page.php:35
msgid "Edit <span class=\"screen-reader-text\">%s</span>"
@ -497,7 +550,7 @@ msgstr ""
#: ../partials/paged-navigation.php:2
msgid "Navigation"
msgstr ""
msgstr "Navigazione"
#: ../search.php:21
msgid "Search Results for: %s"
@ -506,9 +559,9 @@ msgstr ""
#: ../searchform.php:3
msgctxt "label"
msgid "Search Catalog"
msgstr ""
msgstr "Cerca Catalogo"
#: ../searchform.php:6
msgctxt "submit button"
msgid "Search"
msgstr ""
msgstr "Cerca"

180
languages/ja.po

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

180
languages/ka_GE.po

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

180
languages/kk@Cyrl.po

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

180
languages/km_KH.po

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

180
languages/ko.po

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

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

180
languages/nl_NL.po

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

180
languages/no.po

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

180
languages/pl.po

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

180
languages/pressbooks-aldine.pot

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

180
languages/pt_BR.po

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

180
languages/pt_PT.po

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

180
languages/ro.po

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

180
languages/ru_RU.po

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

180
languages/sk_SK.po

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

180
languages/sv_SE.po

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

180
languages/ta_IN.po

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

180
languages/ta_LK.po

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

180
languages/tr_TR.po

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

180
languages/uk.po

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

180
languages/zh.po

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

180
languages/zh_CN.po

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

180
languages/zh_TW.po

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

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

10
page-catalog.php

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

9
page.php

@ -17,9 +17,11 @@ get_header(); ?>
<div id="primary" class="content-area">
<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' );
@ -27,7 +29,8 @@ get_header(); ?>
else :
while ( have_posts() ) : the_post();
while ( have_posts() ) :
the_post();
get_template_part( 'partials/content', 'page' );

24
partials/book.php

@ -1,23 +1,35 @@
<?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'] ) : '';
?>
<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'] ); ?>"
<?php if ( ! empty( $subject ) ) { ?> data-subject="<?php echo $subject ?>"<?php } ?>
<?php
if ( ! empty( $subject ) ) {
?>
data-subject="<?php echo $subject ?>"<?php } ?>
>
<p class="book__title">
<a href="<?php echo $book['link']; ?>"><?php echo maybe_truncate_string( $book['metadata']['name'] ); ?></a>
</p>
<?php /* <?php if (isset( $book['metadata']['author'] ) ) { ?>
<?php
/* <?php if (isset( $book['metadata']['author'] ) ) { ?>
<p class="book__author">
<?php _e( 'By', 'pressbooks-aldine' ); ?> <?php foreach ( $book['metadata']['author'] as $author ) {
echo $author['name'];
} ?>
</p>
<?php } ?> */ ?>
<?php } ?> */
?>
<?php if ( ! empty( $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>

55
partials/contact-form.php

@ -11,6 +11,7 @@
$pb_network_contact_form_title = get_option( 'pb_network_contact_form_title' );
$contact_form_title = ( ! empty( $pb_network_contact_form_title ) ) ? $pb_network_contact_form_title : __( 'Contact Us', 'pressbooks-aldine' );
$contact_form_response = \Aldine\Helpers\handle_contact_form_submission();
$honeypot = 'firstname' . rand();
?>
@ -22,34 +23,72 @@ $contact_form_response = \Aldine\Helpers\handle_contact_form_submission();
<?php endif; ?>
<?php wp_nonce_field( 'pb_root_contact_form', 'pb_root_contact_form_nonce' ); ?>
<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">
<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"
<?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' ) :
echo $contact_form_response['values']['visitor_name'];
endif; ?>" required>
endif;
?>
" required>
<label for="contact-name">
<?php _e( 'Your name (required)', 'pressbooks-aldine' ); ?>
</label>
</p>
<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"
<?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' ) :
echo $contact_form_response['values']['visitor_email'];
endif; ?>" required>
endif;
?>
" required>
<label for="contact-email">
<?php _e( 'Your email address (required)', 'pressbooks-aldine' ); ?>
</label>
</p>
<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"
<?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' ) :
echo $contact_form_response['values']['visitor_institution'];
endif; ?>" required>
endif;
?>
" required>
<label for="contact-institution">
<?php _e( 'Your institution (required)', 'pressbooks-aldine' ); ?>
</label>
</p>
<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"
<?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' ) :
echo $contact_form_response['values']['message'];
endif; ?></textarea>
endif;
?>
</textarea>
<label for="contact-message">
<?php _e( 'Your message (required)', 'pressbooks-aldine' ); ?>
</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'] ) ) : ?>
<div id="latest-books" class="latest-books">
<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">
<?php foreach ( $catalog_data['books'] as $book ) :
<?php
foreach ( $catalog_data['books'] as $book ) :
include( locate_template( 'partials/book.php' ) );
endforeach; ?>
endforeach;
?>
</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>
<p class="catalog-link">
<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">
<?php
if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
if ( is_home() && current_user_can( 'publish_posts' ) ) :
?>
<p><?php
<p>
<?php
printf(
wp_kses(
/* translators: 1: link to WP admin new post page. */
@ -31,7 +33,8 @@
),
esc_url( admin_url( 'post-new.php' ) )
);
?></p>
?>
</p>
<?php elseif ( is_search() ) : ?>
@ -39,12 +42,14 @@
<?php
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>
<?php
get_search_form();
endif; ?>
endif;
?>
</div><!-- .page-content -->
</section><!-- .no-results -->

49
partials/content-page-catalog.php

@ -18,11 +18,15 @@
<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>
<div class="subject-groups">
<?php foreach ( $subjects as $key => $val ) :
if ( array_key_exists( $key, $available_subjects ) ) : ?>
<?php
foreach ( $subjects as $key => $val ) :
if ( array_key_exists( $key, $available_subjects ) ) :
?>
<h3><span class="label"><?php echo $val['label']; ?></span></h3>
<?php foreach ( $val['children'] as $k => $v ) :
if ( in_array( $k, $available_subjects[ $key ], true ) ) : ?>
<?php
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 ); ?>>
<label for="<?php echo $k; ?>"><span class="label"><?php echo $v; ?></span> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<?php endif; ?>
@ -35,12 +39,16 @@
<h2><?php _e( 'Filter by License', 'pressbooks-aldine' ); ?></h2>
<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>
<?php foreach ( $licenses as $key => $value ) :
if ( in_array( $key, $available_licenses, true ) ) : ?>
<?php
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 ); ?>>
<label for="<?php echo $key; ?>"><?php echo $value; ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<?php endif;
endforeach; ?>
<?php
endif;
endforeach;
?>
</fieldset>
<fieldset class="sorts">
<h2><?php _e( 'Sort by', 'pressbooks-aldine' ); ?></h2>
@ -50,7 +58,8 @@
'subject' => __( 'Subject', '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 ); ?>>
<label for="<?php echo $key ?>"><?php echo $value; ?> <svg class="checked"><use xlink:href="#checkmark" /></svg></label>
<?php } ?>
@ -59,26 +68,36 @@
<button type="submit"><?php _e( 'Submit', 'pressbooks-aldine' ); ?></button>
</form>
<ul class="books">
<?php foreach ( $catalog_data['books'] as $book ) :
<?php
foreach ( $catalog_data['books'] as $book ) :
include( locate_template( 'partials/book.php' ) );
endforeach; ?>
endforeach;
?>
</ul>
<?php if ( $catalog_data['pages'] > 1 ) : ?>
<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">
<use xlink:href="#arrow-left" />
</svg></a><?php endif; ?>
<div class="pages">
<?php for ( $i = 1; $i <= $catalog_data['pages']; $i++ ) :
if ( $i === $current_page ) : ?>
<?php
for ( $i = 1; $i <= $catalog_data['pages']; $i++ ) :
if ( $i === $current_page ) :
?>
<span class="current"><?php echo $i; ?></span>
<?php else : ?>
<a href="<?php echo network_home_url( "/catalog/page/$i/" ); ?>"><?php echo $i; ?></a>
<?php endif; ?>
<?php endfor; ?>
</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">
<use xlink:href="#arrow-right" />
</svg></a><?php endif; ?>

6
partials/content-page.php

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

18
partials/content.php

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

40
phpcs.ruleset.xml

@ -1,41 +1,13 @@
<?xml version="1.0"?>
<ruleset>
<!-- Scan only PHP files -->
<arg name="extensions" value="php"/>
<!-- Use Pressbooks Coding Standards -->
<rule ref="vendor/pressbooks/coding-standards" />
<!-- Show colors in console -->
<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 -->
<!-- Disable Side Effects and MissingNamespace rules for bootstrapping files: -->
<rule ref="PSR1.Files.SideEffects">
<exclude-pattern>functions.php</exclude-pattern>
<exclude-pattern>/functions.php</exclude-pattern>
</rule>
<!-- Disable Namespaced Functions for functions.php -->
<rule ref="HM.Functions.NamespacedFunctions">
<exclude-pattern>functions.php</exclude-pattern>
<rule ref="HM.Functions.NamespacedFunctions.MissingNamespace">
<exclude-pattern>/functions.php</exclude-pattern>
</rule>
</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/)
Tags: publishing, catalog, pressbooks, default-theme
Requires at least: 4.9.4
Tested up to: 4.9.4
Stable tag: 1.2.1
Requires at least: 4.9.8
Tested up to: 4.9.8
Stable tag: 1.5.0
License: GNU General Public License v3 or later
License URI: LICENSE
@ -37,6 +37,42 @@ Aldine is the default theme for the home page of [Pressbooks](https://pressbooks
TK.
== 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 ===
@ -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.
== Upgrade Notice ==
- Aldine 1.5.0 requires PHP >= 7.1.
== Credits ==
* Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)
- Based on [Underscores](https://underscores.me/), (C) 2012-2017 Automattic, Inc., [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)

15
search.php

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

3
single.php

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

2
style.css

@ -2,7 +2,7 @@
Theme Name: Aldine
Theme URI: https://github.com/pressbooks/pressbooks-aldine/
Description: Aldine is the default theme for the home page of Pressbooks networks. It is named for the Aldine Press, founded by Aldus Manutius in 1494, who is regarded by many as the worlds first publisher.
Version: 1.2.1
Version: 1.6.0-dev
Author: Pressbooks (Book Oven Inc.)
Author URI: https://pressbooks.org
Text Domain: pressbooks-aldine

423
yarn.lock

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

Loading…
Cancel
Save