Browse Source
# Conflicts: # dist/mix-manifest.json # dist/scripts/aldine.js # package.json # webpack.mix.jspull/46/head
123 changed files with 33856 additions and 9042 deletions
@ -0,0 +1,11 @@ |
|||||||
|
[main] |
||||||
|
host = https://www.transifex.com |
||||||
|
|
||||||
|
[aldine.pressbooks-aldine] |
||||||
|
file_filter = languages/<lang>.po |
||||||
|
minimum_perc = 0 |
||||||
|
source_file = languages/pressbooks-aldine.pot |
||||||
|
source_lang = en |
||||||
|
type = PO |
||||||
|
lang_map = de:de_DE, es:es_ES, fr:fr_FR, gl:gl_ES, nb:nb_NO, it:it_IT, ka:ka_GE, ru:ru_RU, ta:ta_LK |
||||||
|
|
||||||
@ -0,0 +1,45 @@ |
|||||||
|
( function () { |
||||||
|
tinymce.create( 'tinymce.plugins.aldine_call_to_action', { |
||||||
|
init: function ( editor, url ) { |
||||||
|
editor.addButton( 'aldine_call_to_action', { |
||||||
|
title: aldine.call_to_action.title, |
||||||
|
icon: 'icon dashicons-flag', |
||||||
|
onclick: function () { |
||||||
|
editor.windowManager.open( { |
||||||
|
title: aldine.call_to_action.title, |
||||||
|
body: [ |
||||||
|
{ |
||||||
|
type: 'textbox', |
||||||
|
name: 'text', |
||||||
|
label: aldine.call_to_action.text, |
||||||
|
value: aldine.call_to_action.title, |
||||||
|
}, |
||||||
|
{ |
||||||
|
type: 'textbox', |
||||||
|
name: 'link', |
||||||
|
label: aldine.call_to_action.link, |
||||||
|
value: '#', |
||||||
|
}, |
||||||
|
], |
||||||
|
onsubmit: function ( e ) { |
||||||
|
editor.insertContent( |
||||||
|
'[aldine_call_to_action text="' + |
||||||
|
e.data.text + |
||||||
|
'" link="' + |
||||||
|
e.data.link + |
||||||
|
'"]' |
||||||
|
); |
||||||
|
}, |
||||||
|
} ); |
||||||
|
}, |
||||||
|
} ); |
||||||
|
}, |
||||||
|
createControl: function ( n, cm ) { |
||||||
|
return null; |
||||||
|
}, |
||||||
|
} ); |
||||||
|
tinymce.PluginManager.add( |
||||||
|
'aldine_call_to_action', |
||||||
|
tinymce.plugins.aldine_call_to_action |
||||||
|
); |
||||||
|
} )(); |
||||||
@ -0,0 +1,59 @@ |
|||||||
|
( function () { |
||||||
|
tinymce.create( 'tinymce.plugins.aldine_page_section', { |
||||||
|
init: function ( editor, url ) { |
||||||
|
editor.addButton( 'aldine_page_section', { |
||||||
|
title: aldine.page_section.title, |
||||||
|
icon: 'icon dashicons-layout', |
||||||
|
onclick: function () { |
||||||
|
editor.windowManager.open( { |
||||||
|
title: aldine.page_section.title, |
||||||
|
body: [ |
||||||
|
{ |
||||||
|
type: 'textbox', |
||||||
|
name: 'title', |
||||||
|
label: aldine.page_section.title_label, |
||||||
|
value: aldine.page_section.title, |
||||||
|
}, |
||||||
|
{ |
||||||
|
type: 'listbox', |
||||||
|
name: 'variant', |
||||||
|
label: 'Variant', |
||||||
|
values: [ |
||||||
|
{ |
||||||
|
text: aldine.page_section.standard, value: '', |
||||||
|
}, |
||||||
|
{ |
||||||
|
text: aldine.page_section.accent, value: 'accent', |
||||||
|
}, |
||||||
|
{ |
||||||
|
text: aldine.page_section.bordered, value: 'bordered', |
||||||
|
}, |
||||||
|
{ |
||||||
|
text: aldine.page_section.borderless, value: 'borderless', |
||||||
|
}, |
||||||
|
], |
||||||
|
value: '', // Sets the default
|
||||||
|
}, |
||||||
|
], |
||||||
|
onsubmit: function ( e ) { |
||||||
|
editor.insertContent( |
||||||
|
'[aldine_page_section title="' + |
||||||
|
e.data.title + |
||||||
|
'" variant="' + |
||||||
|
e.data.variant + |
||||||
|
'"]<p>Insert your page section content here.</p>[/aldine_page_section]' |
||||||
|
); |
||||||
|
}, |
||||||
|
} ); |
||||||
|
}, |
||||||
|
} ); |
||||||
|
}, |
||||||
|
createControl: function ( n, cm ) { |
||||||
|
return null; |
||||||
|
}, |
||||||
|
} ); |
||||||
|
tinymce.PluginManager.add( |
||||||
|
'aldine_page_section', |
||||||
|
tinymce.plugins.aldine_page_section |
||||||
|
); |
||||||
|
} )(); |
||||||
@ -1 +1,4 @@ |
|||||||
// TODO |
// TODO |
||||||
|
:root { |
||||||
|
--reading-width: 50em; |
||||||
|
} |
||||||
|
|||||||
@ -1 +1,4 @@ |
|||||||
// TODO |
// TODO |
||||||
|
.footer__network { |
||||||
|
--primary: --accent-fg; |
||||||
|
} |
||||||
|
|||||||
@ -1 +1,19 @@ |
|||||||
// TODO |
body { |
||||||
|
display: flex; |
||||||
|
min-height: 100vh; |
||||||
|
flex-direction: column; |
||||||
|
|
||||||
|
#page { |
||||||
|
flex: 1; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
} |
||||||
|
|
||||||
|
#content { |
||||||
|
flex-grow: 1; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.page.home:not(.has-sections) article { |
||||||
|
margin-top: 0; |
||||||
|
} |
||||||
|
|||||||
@ -0,0 +1,6 @@ |
|||||||
|
#!/bin/bash |
||||||
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
||||||
|
PARENT="$(dirname $DIR)" |
||||||
|
tx push -s |
||||||
|
tx pull -a |
||||||
|
for file in $PARENT/languages/*.po ; do msgfmt $file -o `echo $file | sed 's/\(.*\.\)po/\1mo/'` ; done |
||||||
@ -1,12 +1,10 @@ |
|||||||
{ |
{ |
||||||
"/scripts/aldine.js": "/scripts/aldine.js?id=1f58027f7de9942caf57", |
"/scripts/aldine.js": "/scripts/aldine.js?id=8b344174cd71bb7afd6b", |
||||||
"/styles/aldine.css": "/styles/aldine.css?id=64d45897bcfc07773489", |
"/styles/aldine.css": "/styles/aldine.css?id=24f3730caf58fbb43e07", |
||||||
"/styles/editor.css": "/styles/editor.css?id=0037fd3d0c494f2ea50c", |
"/styles/editor.css": "/styles/editor.css?id=e96b3d10ea63fa07d09b", |
||||||
"/styles/blocks/page-section/editor.css": |
"/styles/blocks/page-section/editor.css": "/styles/blocks/page-section/editor.css?id=d41d8cd98f00b204e980", |
||||||
"/styles/blocks/page-section/editor.css?id=d41d8cd98f00b204e980", |
|
||||||
"/scripts/customizer.js": "/scripts/customizer.js?id=1b0d3cfc1d85f460af53", |
"/scripts/customizer.js": "/scripts/customizer.js?id=1b0d3cfc1d85f460af53", |
||||||
"/scripts/catalog-admin.js": |
"/scripts/catalog-admin.js": "/scripts/catalog-admin.js?id=d25f1240496bd3607338", |
||||||
"/scripts/catalog-admin.js?id=d25f1240496bd3607338", |
"/scripts/page-section.js": "/scripts/page-section.js?id=2f9e970e43107c0ba14a", |
||||||
"/scripts/blocks/page-section/block.js": |
"/scripts/blocks/page-section/block.js": "/scripts/blocks/page-section/block.js?id=0d61a9b8d8de8775309e" |
||||||
"/scripts/blocks/page-section/block.js?id=0d61a9b8d8de8775309e" |
|
||||||
} |
} |
||||||
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@ |
|||||||
|
!function(t){var n={};function e(l){if(n[l])return n[l].exports;var i=n[l]={i:l,l:!1,exports:{}};return t[l].call(i.exports,i,i.exports,e),i.l=!0,i.exports}e.m=t,e.c=n,e.d=function(t,n,l){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:l})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,n){return Object.prototype.hasOwnProperty.call(t,n)},e.p="",e(e.s=1)}({1:function(t,n,e){t.exports=e("eL/z")},"eL/z":function(t,n){tinymce.create("tinymce.plugins.aldine_call_to_action",{init:function(t,n){t.addButton("aldine_call_to_action",{title:aldine.call_to_action.title,icon:"icon dashicons-flag",onclick:function(){t.windowManager.open({title:aldine.call_to_action.title,body:[{type:"textbox",name:"text",label:aldine.call_to_action.text,value:aldine.call_to_action.title},{type:"textbox",name:"link",label:aldine.call_to_action.link,value:"#"}],onsubmit:function(n){t.insertContent('[aldine_call_to_action text="'+n.data.text+'" link="'+n.data.link+'"]')}})}})},createControl:function(t,n){return null}}),tinymce.PluginManager.add("aldine_call_to_action",tinymce.plugins.aldine_call_to_action)}}); |
||||||
@ -0,0 +1 @@ |
|||||||
|
!function(e){var t={};function n(a){if(t[a])return t[a].exports;var i=t[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:a})},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=4)}({4:function(e,t,n){e.exports=n("BNyP")},BNyP:function(e,t){tinymce.create("tinymce.plugins.aldine_page_section",{init:function(e,t){e.addButton("aldine_page_section",{title:aldine.page_section.title,icon:"icon dashicons-layout",onclick:function(){e.windowManager.open({title:aldine.page_section.title,body:[{type:"textbox",name:"title",label:aldine.page_section.title_label,value:aldine.page_section.title},{type:"listbox",name:"variant",label:"Variant",values:[{text:aldine.page_section.standard,value:""},{text:aldine.page_section.accent,value:"accent"},{text:aldine.page_section.bordered,value:"bordered"},{text:aldine.page_section.borderless,value:"borderless"}],value:""}],onsubmit:function(t){e.insertContent('[aldine_page_section title="'+t.data.title+'" variant="'+t.data.variant+'"]<p>Insert your page section content here.</p>[/aldine_page_section]')}})}})},createControl:function(e,t){return null}}),tinymce.PluginManager.add("aldine_page_section",tinymce.plugins.aldine_page_section)}}); |
||||||
@ -0,0 +1 @@ |
|||||||
|
!function(t){var e={};function n(a){if(e[a])return e[a].exports;var i=e[a]={i:a,l:!1,exports:{}};return t[a].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:a})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=3)}({3:function(t,e,n){t.exports=n("GR5A")},GR5A:function(t,e){tinymce.create("tinymce.plugins.aldine_page_section",{init:function(t,e){t.addButton("aldine_page_section",{title:"Page Section",icon:"layout",onclick:function(){t.windowManager.open({title:"Page Section",body:[{type:"textbox",name:"title",label:"Title",value:"Page Section"},{type:"listbox",name:"variant",label:"Variant",values:[{text:"Standard",value:""},{text:"Accent",value:"accent"},{text:"Bordered",value:"bordered"},{text:"Borderless",value:"borderless"}],value:""}],onsubmit:function(e){t.insertContent('[aldine_page_section title="'+e.data.title+'" variant="'+e.data.variant+'"][/aldine_page_section]')}})}})},createControl:function(t,e){return null}}),tinymce.create("tinymce.plugins.aldine_call_to_action",{init:function(t,e){t.addButton("aldine_call_to_action",{title:"Call to Action",icon:"link",onclick:function(){t.windowManager.open({title:"Call to Action",body:[{type:"textbox",name:"text",label:"Text",value:"Call to Action"},{type:"textbox",name:"url",label:"URL",value:"#"}],onsubmit:function(e){t.insertContent('[aldine_call_to_action text="'+e.data.text+'" url="'+e.data.url+'"]')}})}})},createControl:function(t,e){return null}}),tinymce.PluginManager.add("aldine_call_to_action",tinymce.plugins.aldine_call_to_action)}}); |
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -0,0 +1,518 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Arabic (https://www.transifex.com/pressbooks/teams/9194/ar/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ar\n" |
||||||
|
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
msgstr[2] "" |
||||||
|
msgstr[3] "" |
||||||
|
msgstr[4] "" |
||||||
|
msgstr[5] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Catalan (https://www.transifex.com/pressbooks/teams/9194/ca/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ca\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,515 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Czech (https://www.transifex.com/pressbooks/teams/9194/cs/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: cs\n" |
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
msgstr[2] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,515 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/pressbooks/teams/9194/cs_CZ/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: cs_CZ\n" |
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
msgstr[2] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Danish (Denmark) (https://www.transifex.com/pressbooks/teams/9194/da_DK/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: da_DK\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: German (Switzerland) (https://www.transifex.com/pressbooks/teams/9194/de_CH/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: de_CH\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,539 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
# Translators: |
||||||
|
# Thomas Dumm <t.dumm@delivros.ch>, 2018 |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Last-Translator: Thomas Dumm <t.dumm@delivros.ch>, 2018\n" |
||||||
|
"Language-Team: German (https://www.transifex.com/pressbooks/teams/9194/de/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: de\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "Hoppla! Diese Seite existiert nicht." |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "An dieser Stelle wurde nichts gefunden." |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "Ein Überlegung zu “%1$s”" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "%1$s Überlegung zu \"%2$s\"" |
||||||
|
msgstr[1] "%1$sÜberlegungen zu \"%2$s\"" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "Kommentare sind nicht möglich" |
||||||
|
|
||||||
|
#: ../footer.php40, ../footer.php:44 |
||||||
|
msgid "%s on Facebook" |
||||||
|
msgstr "%s auf Facebook" |
||||||
|
|
||||||
|
#: ../footer.php48, ../footer.php:52 |
||||||
|
msgid "%s on Twitter" |
||||||
|
msgstr "%s auf Twitter" |
||||||
|
|
||||||
|
#: ../footer.php:70 |
||||||
|
msgid "Powered by %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php:72 |
||||||
|
msgid "Open Source" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "Mehr erfahren" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../functions.php:18 |
||||||
|
msgid "Dependencies Missing" |
||||||
|
msgstr "Benötigte Files fehlen." |
||||||
|
|
||||||
|
#: ../functions.php:19 |
||||||
|
msgid "You must run <code>composer install</code> from the Aldine directory." |
||||||
|
msgstr "" |
||||||
|
"Sie müssen <code>composer install </code> im Aldine Verzeichnis ausführen." |
||||||
|
|
||||||
|
#: ../header.php:44 |
||||||
|
msgid "Skip to content" |
||||||
|
msgstr "Zum Kommentar springen" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "Logo für %s" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "Hallo," |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "Hauptmenü" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "Fusszeilen-Menü" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "Block 1 im Netzwerk-Fuss" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "Block 2 im Netzwerk-Block" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../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 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "Schriftgrösse verkleinern" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
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/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "Über 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 ist eine einfach zu bedienende Software zum Erstellen von " |
||||||
|
"Büchern, mit der Sie ein Buch in allen gewünschten Formaten erstellen " |
||||||
|
"können." |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "Über" |
||||||
|
|
||||||
|
#: ../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 ist eine einfache Buchproduktionssoftware. Sie können Pressbooks " |
||||||
|
"verwenden, um Lehrbücher, wissenschaftliche Monographien, Lehrpläne, " |
||||||
|
"Belletristik- und Sachbücher, White-Papers und anderes in verschiedenen " |
||||||
|
"Formaten zu veröffentlichen, darunter:" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "MOBI (für Kindle eBooks)" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "EPUB (für alle anderen eBook-Stores)" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "gelayoutete PDFs (für den Druck und die digitale Nutzung)" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "Für weitere Informationen zu Pressbooks, %s." |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "schauen Sie hier" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "Hilfe" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
"Der einfachste Weg um mit Pressbooks vertraut zu werden, ist über unser " |
||||||
|
"%1$s. Oder Sie können unsere %2$sanschauen." |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:59 |
||||||
|
msgid "4 Step Guide to Making a Book on Pressbooks" |
||||||
|
msgstr "4-Schritte-Anleitung zum Erstellen eines Buches über Pressbooks" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "Anleitung zur Nutzung von Pressbooks" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
"Wenn Sie weitere Unterstützung benötigen, wenden Sie sich bitte an Ihren " |
||||||
|
"Netzwerk-Manager." |
||||||
|
|
||||||
|
#: ../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 "Katalog" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "Home" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "Katalog aktualisiert" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
"Entschuldigung, aber Ihr Katalog wurde nicht aktualisiert. Bitte versuche es" |
||||||
|
" erneut." |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "Diese Nachricht ausblenden" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "Im Katalog" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "Katalog anzeigen" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’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 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "Hauptfarbe" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
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 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "Akzentfarbe" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
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 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "Primärfarbe für den Vordergrund" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "Wird für Text auf einem primären Hintergrund verwendet." |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "Akzentfarbe für den Vordergrund" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
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 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "Soziale Medien" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "Facebook" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "Twitter" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "Hauptseiten-Katalog" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "Hauptseiten-Katalog anzeigen" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "Titel des Hauptseiten-Katalogs" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "Kontakt Formular" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
msgid "Show Contact Form" |
||||||
|
msgstr "Kontakt Formular anzeigen" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:148 |
||||||
|
msgid "Contact Form Title" |
||||||
|
msgstr "Titel des Kontakt Formulars" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:60 |
||||||
|
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 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "Kontakt" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "Anmelden" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "Registrieren" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "Admin" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "Meine Bücher" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "Abmelden" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "Name notwendig" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "E-Mail notwendig" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "E-Mail ungültig" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "Institution benötigt" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "Nachricht benötigt" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "Kontaktformular-Eingabe von %s" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "Ihre Nachricht wurde versendet!" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "Ihre Nachricht konnte nicht versendet werden!" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "Es wurden keine Bücher gefunden" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "Es wurden keine Bücher zum Katalog hinzugefügt." |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
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 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "Ihr Name (benötigt)" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "Ihre E-Mail (benötigt)" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "Ihre Institution (benötigt)" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "Ihre Nachricht (benötigt)" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "Senden" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "Unsere neusten Titel" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "Den ganzen Katalog ansehen" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "Nichts gefunden" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:25 |
||||||
|
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>." |
||||||
|
msgstr "" |
||||||
|
"Bereit Ihren ersten Beitrag zu erstellen? <a href=\"%1$s\">Fangen Sie hier " |
||||||
|
"an</a>." |
||||||
|
|
||||||
|
#: ../partials/content-none.php:38 |
||||||
|
msgid "" |
||||||
|
"Sorry, but nothing matched your search terms. Please try again with some " |
||||||
|
"different keywords." |
||||||
|
msgstr "" |
||||||
|
"Entschuldigung, aber nichts passt zu Ihren Suchbegriffen. Bitte versuchen " |
||||||
|
"Sie es erneut mit anderen Suchbegriffen." |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
"Es scheint, dass wir nicht finden können, wonach Sie suchen. Vielleicht kann" |
||||||
|
" das Suchen helfen." |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "Nach Thema filtern" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "Alle Themen" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "Nach Lizenz filtern" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "Alle Lizenzen" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
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" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "Neuste" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "Filter zurücksetzen" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "Einreichen" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "Seiten:" |
||||||
|
|
||||||
|
#: ../partials/content-page.php:35 |
||||||
|
msgid "Edit <span class=\"screen-reader-text\">%s</span>" |
||||||
|
msgstr "<span class=\"screen-reader-text\">%s</span>bearbeiten" |
||||||
|
|
||||||
|
#: ../partials/content.php:34 |
||||||
|
msgid "Continue reading<span class=\"screen-reader-text\"> \"%s\"</span>" |
||||||
|
msgstr "Weiterlesen <span class=\"screen-reader-text\">\"%s\"</span>" |
||||||
|
|
||||||
|
#: ../partials/paged-navigation.php:2 |
||||||
|
msgid "Navigation" |
||||||
|
msgstr "Navigation" |
||||||
|
|
||||||
|
#: ../search.php:21 |
||||||
|
msgid "Search Results for: %s" |
||||||
|
msgstr "Suchergebnisse für: %s" |
||||||
|
|
||||||
|
#: ../searchform.php:3 |
||||||
|
msgctxt "label" |
||||||
|
msgid "Search Catalog" |
||||||
|
msgstr "Katalog durchsuchen" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "Suchen" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Greek (https://www.transifex.com/pressbooks/teams/9194/el/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: el\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: English (Canada) (https://www.transifex.com/pressbooks/teams/9194/en_CA/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: en_CA\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: English (United Kingdom) (https://www.transifex.com/pressbooks/teams/9194/en_GB/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: en_GB\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Spanish (https://www.transifex.com/pressbooks/teams/9194/es/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: es\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Estonian (https://www.transifex.com/pressbooks/teams/9194/et/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: et\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Basque (https://www.transifex.com/pressbooks/teams/9194/eu/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: eu\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\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" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: fr\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\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" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: gl\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\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" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\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" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: hu_HU\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\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" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: it\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,513 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Japanese (https://www.transifex.com/pressbooks/teams/9194/ja/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ja\n" |
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,513 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Georgian (https://www.transifex.com/pressbooks/teams/9194/ka/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ka\n" |
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,513 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Kazakh (Cyrillic) (https://www.transifex.com/pressbooks/teams/9194/kk%40Cyrl/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: kk@Cyrl\n" |
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,513 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Khmer (Cambodia) (https://www.transifex.com/pressbooks/teams/9194/km_KH/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: km_KH\n" |
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,513 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Korean (https://www.transifex.com/pressbooks/teams/9194/ko/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ko\n" |
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Norwegian Bokmål (https://www.transifex.com/pressbooks/teams/9194/nb/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: nb\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/pressbooks/teams/9194/nl_NL/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: nl_NL\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Norwegian (https://www.transifex.com/pressbooks/teams/9194/no/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: no\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,516 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Polish (https://www.transifex.com/pressbooks/teams/9194/pl/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: pl\n" |
||||||
|
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
msgstr[2] "" |
||||||
|
msgstr[3] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/pressbooks/teams/9194/pt_BR/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: pt_BR\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/pressbooks/teams/9194/pt_PT/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: pt_PT\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,515 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Romanian (https://www.transifex.com/pressbooks/teams/9194/ro/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ro\n" |
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
msgstr[2] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,516 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Russian (https://www.transifex.com/pressbooks/teams/9194/ru/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ru\n" |
||||||
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
msgstr[2] "" |
||||||
|
msgstr[3] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,515 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Slovak (Slovakia) (https://www.transifex.com/pressbooks/teams/9194/sk_SK/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: sk_SK\n" |
||||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
msgstr[2] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Swedish (Sweden) (https://www.transifex.com/pressbooks/teams/9194/sv_SE/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: sv_SE\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Binary file not shown.
@ -0,0 +1,514 @@ |
|||||||
|
# Copyright (C) 2018 pressbooks-aldine |
||||||
|
# This file is distributed under the same license as the pressbooks-aldine package. |
||||||
|
msgid "" |
||||||
|
msgstr "" |
||||||
|
"Project-Id-Version: pressbooks-aldine\n" |
||||||
|
"Language-Team: Tamil (India) (https://www.transifex.com/pressbooks/teams/9194/ta_IN/)\n" |
||||||
|
"MIME-Version: 1.0\n" |
||||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||||
|
"Content-Transfer-Encoding: 8bit\n" |
||||||
|
"Language: ta_IN\n" |
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||||
|
"X-Poedit-Basepath: ..\n" |
||||||
|
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" |
||||||
|
"X-Poedit-SearchPath-0: .\n" |
||||||
|
"X-Poedit-SearchPathExcluded-0: *.js\n" |
||||||
|
"X-Poedit-SourceCharset: UTF-8\n" |
||||||
|
|
||||||
|
#: ../404.php:17 |
||||||
|
msgid "Oops! That page can’t be found." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../404.php:21 |
||||||
|
msgid "It looks like nothing was found at this location." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:34 |
||||||
|
msgid "One thought on “%1$s”" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../comments.php:40 |
||||||
|
msgctxt "comments title" |
||||||
|
msgid "%1$s thought on “%2$s”" |
||||||
|
msgid_plural "%1$s thoughts on “%2$s”" |
||||||
|
msgstr[0] "" |
||||||
|
msgstr[1] "" |
||||||
|
|
||||||
|
#: ../comments.php:63 |
||||||
|
msgid "Comments are closed." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../footer.php79, ../footer.php:83 |
||||||
|
msgid "Pressbooks on Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../footer.php85, ../footer.php:89 |
||||||
|
msgid "Pressbooks on Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../header.php:64 |
||||||
|
msgid "Logo for %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../header.php:74 |
||||||
|
msgid "Toggle Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/intervention.php:12 |
||||||
|
msgid "Hello," |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php48, ../inc/activation/namespace.php:111 |
||||||
|
msgid "Primary Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php49, ../inc/activation/namespace.php:132 |
||||||
|
msgid "Footer Menu" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:104 |
||||||
|
msgid "Network Footer Block 1" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:114 |
||||||
|
msgid "Network Footer Block 2" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php139, |
||||||
|
#: ../partials/content-accessibility-toolbar.php6, |
||||||
|
#: ../partials/content-accessibility-toolbar.php:7 |
||||||
|
msgid "Increase Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:140 |
||||||
|
msgid "Decrease Font Size" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/actions/namespace.php:223 |
||||||
|
msgid "" |
||||||
|
"This page displays your network catalog, so there is no content to edit." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:25 |
||||||
|
msgid "About Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php34, ../inc/activation/namespace.php137, |
||||||
|
#: ../inc/activation/namespace.php:143 |
||||||
|
msgid "About" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:40 |
||||||
|
msgid "MOBI (for Kindle ebooks)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:41 |
||||||
|
msgid "EPUB (for all other ebookstores)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:42 |
||||||
|
msgid "designed PDF (for print-on-demand and digital distribution)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:45 |
||||||
|
msgid "For more information about Pressbooks, %s." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:46 |
||||||
|
msgid "see here" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php52, ../inc/activation/namespace.php167, |
||||||
|
#: ../inc/activation/namespace.php:173 |
||||||
|
msgid "Help" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:60 |
||||||
|
msgid "Guide to Using Pressbooks" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php:62 |
||||||
|
msgid "" |
||||||
|
"If you require further assistance, please contact your network manager." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../inc/activation/namespace.php71, ../inc/helpers/namespace.php:162 |
||||||
|
msgid "Home" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:30 |
||||||
|
msgid "Catalog updated." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:31 |
||||||
|
msgid "Sorry, but your catalog was not updated. Please try again." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:32 |
||||||
|
msgid "Dismiss this notice." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:61 |
||||||
|
msgid "In Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:72 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "Show in Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/admin/namespace.php:73 |
||||||
|
msgctxt "pressbooks-aldine" |
||||||
|
msgid "This book is private, so you can’t display it in your catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:45 |
||||||
|
msgid "Primary Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:46 |
||||||
|
msgid "Primary color, used for links and other primary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:51 |
||||||
|
msgid "Accent Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:52 |
||||||
|
msgid "Accent color, used for flourishes and secondary elements." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:57 |
||||||
|
msgid "Primary Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:58 |
||||||
|
msgid "Used for text on a primary background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:63 |
||||||
|
msgid "Accent Foreground Color" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:64 |
||||||
|
msgid "Used for text on an accent color background." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:83 |
||||||
|
msgid "Social Media" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:91 |
||||||
|
msgid "Facebook" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:100 |
||||||
|
msgid "Twitter" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:107 |
||||||
|
msgid "Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:114 |
||||||
|
msgid "Show Front Page Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:124 |
||||||
|
msgid "Front Page Catalog Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:131 |
||||||
|
msgid "Contact Form" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/customizer/namespace.php:138 |
||||||
|
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)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:96 |
||||||
|
msgid "Page Section (Bordered)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:102 |
||||||
|
msgid "Page Section (Borderless)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/filters/namespace.php:108 |
||||||
|
msgid "Call to Action" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:168 |
||||||
|
msgid "Contact" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:175 |
||||||
|
msgid "Sign In" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:181 |
||||||
|
msgid "Sign Up" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:189 |
||||||
|
msgid "Admin" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:197 |
||||||
|
msgid "My Books" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:203 |
||||||
|
msgid "Sign Out" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:256 |
||||||
|
msgid "Name is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:260 |
||||||
|
msgid "Email is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:264 |
||||||
|
msgid "Email is invalid." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:268 |
||||||
|
msgid "Institution is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:272 |
||||||
|
msgid "Message is required." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:278 |
||||||
|
msgid "Contact Form Submission from %s" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:289 |
||||||
|
msgid "Your message was sent!" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../inc/helpers/namespace.php:292 |
||||||
|
msgid "Your message could not be sent." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:55 |
||||||
|
msgid "No Books Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../page-catalog.php:58 |
||||||
|
msgid "No books have been added to the catalog." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/book.php:27 |
||||||
|
msgid "About this book" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:11 |
||||||
|
msgid "Contact Us" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:29 |
||||||
|
msgid "Your name (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:37 |
||||||
|
msgid "Your email address (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:45 |
||||||
|
msgid "Your institution (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:53 |
||||||
|
msgid "Your message (required)" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/contact-form.php:57 |
||||||
|
msgid "Send" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:18 |
||||||
|
msgid "Our Latest Titles" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-front-page.php:63 |
||||||
|
msgid "View Complete Catalog" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:14 |
||||||
|
msgid "Nothing Found" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../partials/content-none.php:44 |
||||||
|
msgid "" |
||||||
|
"It seems we can’t find what you’re looking for. Perhaps " |
||||||
|
"searching can help." |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:17 |
||||||
|
msgid "Filter by Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:19 |
||||||
|
msgid "All Subjects" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:35 |
||||||
|
msgid "Filter by License" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:37 |
||||||
|
msgid "All Licenses" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:46 |
||||||
|
msgid "Sort by" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:49 |
||||||
|
msgid "Title" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:50 |
||||||
|
msgid "Subject" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:51 |
||||||
|
msgid "Latest" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:58 |
||||||
|
msgid "Clear Filters" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page-catalog.php:59 |
||||||
|
msgid "Submit" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../partials/content-page.php22, ../partials/content.php:45 |
||||||
|
msgid "Pages:" |
||||||
|
msgstr "" |
||||||
|
|
||||||
|
#: ../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 "" |
||||||
|
|
||||||
|
#: ../searchform.php:6 |
||||||
|
msgctxt "submit button" |
||||||
|
msgid "Search" |
||||||
|
msgstr "" |
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue