diff -Nru sigil-0.9.4+dfsg/ChangeLog.txt sigil-0.9.5+dfsg/ChangeLog.txt --- sigil-0.9.4+dfsg/ChangeLog.txt 2016-03-10 16:39:46.000000000 +0000 +++ sigil-0.9.5+dfsg/ChangeLog.txt 2016-03-25 11:10:46.000000000 +0000 @@ -1,3 +1,18 @@ +Sigil-0.9.5 + Bug Fixes + - Fix regression when ImportHTML in gathering HTML based DC. metadata + - Fix regression - remove incorrect use of opf:scheme from dc:creator and dc:contributor under epub2 + - Fix regression - the guide reference tag is always a void tag + - Fix issues with hunspell spell checking under Windows when non-ascii paths to dictionaries + - Fix issues with overridding the prefs directory on Windows with non-ascii paths + - Fix broken manual "Check" button on W3C stylesheet validation's generated html form. + - Fix media-type recognition for .m4a and .m4v file extenstions in main Sigil and plugin code + - Treat ruby and rt as inline tags when pretty-printing in Sigils and for plugins + + New Features + - Allow user to choose what level of CSS gets used in the "Validate Stylesheets + With W3C" tool via user preference (General). + Sigil-0.9.4 Bug Fixes - Prevent the use of zero length key fields when obfuscating fonts diff -Nru sigil-0.9.4+dfsg/CMakeLists.txt sigil-0.9.5+dfsg/CMakeLists.txt --- sigil-0.9.4+dfsg/CMakeLists.txt 2016-03-03 10:09:36.000000000 +0000 +++ sigil-0.9.5+dfsg/CMakeLists.txt 2016-03-22 20:18:02.000000000 +0000 @@ -20,7 +20,7 @@ set( SIGIL_MAJOR_VERSION 0 ) set( SIGIL_MINOR_VERSION 9 ) -set( SIGIL_REVISION_VERSION 4 ) +set( SIGIL_REVISION_VERSION 5 ) set( SIGIL_FULL_VERSION ${SIGIL_MAJOR_VERSION}.${SIGIL_MINOR_VERSION}.${SIGIL_REVISION_VERSION} ) if( UNIX AND NOT APPLE ) diff -Nru sigil-0.9.4+dfsg/debian/changelog sigil-0.9.5+dfsg/debian/changelog --- sigil-0.9.4+dfsg/debian/changelog 2016-03-17 15:30:08.000000000 +0000 +++ sigil-0.9.5+dfsg/debian/changelog 2016-03-27 14:24:13.000000000 +0000 @@ -1,12 +1,12 @@ -sigil (0.9.4+dfsg-0ubuntu1) xenial; urgency=medium +sigil (0.9.5+dfsg-0ubuntu1) xenial; urgency=medium * Upload to ubuntu. - -- Mattia Rizzolo Thu, 17 Mar 2016 15:29:18 +0000 + -- Mattia Rizzolo Sun, 27 Mar 2016 14:24:08 +0000 -sigil (0.9.4+dfsg-1) UNRELEASED; urgency=medium +sigil (0.9.5+dfsg-1) UNRELEASED; urgency=medium - * [b6cd680] Imported Upstream version 0.9.4+dfsg. + * [7ed6c2e] Imported Upstream version 0.9.5+dfsg * debian/control: + [ae08fdf] stop recommending a specific python3 version. Closes: #812602 + [132205e] use https in Vcs-Git. @@ -14,7 +14,7 @@ * [561c379] debian/copyright: update years. * [7967fbb] debian/watch: use the tarball manually uploaded by upstream. - -- Mattia Rizzolo Thu, 17 Mar 2016 15:24:50 +0000 + -- Mattia Rizzolo Sun, 27 Mar 2016 14:20:10 +0000 sigil (0.9.2+dfsg+dfsg-2) unstable; urgency=medium diff -Nru sigil-0.9.4+dfsg/internal/gumbo/error.c sigil-0.9.5+dfsg/internal/gumbo/error.c --- sigil-0.9.4+dfsg/internal/gumbo/error.c 2016-01-24 17:32:06.000000000 +0000 +++ sigil-0.9.5+dfsg/internal/gumbo/error.c 2016-03-23 14:50:04.000000000 +0000 @@ -70,7 +70,6 @@ va_end(args); } output->length += bytes_written; - va_end(args); return bytes_written; } diff -Nru sigil-0.9.4+dfsg/src/BookManipulation/FolderKeeper.cpp sigil-0.9.5+dfsg/src/BookManipulation/FolderKeeper.cpp --- sigil-0.9.4+dfsg/src/BookManipulation/FolderKeeper.cpp 2016-01-24 17:32:06.000000000 +0000 +++ sigil-0.9.5+dfsg/src/BookManipulation/FolderKeeper.cpp 2016-03-23 13:07:38.000000000 +0000 @@ -73,9 +73,9 @@ const QStringList SVG_MIMETYPES = QStringList() << "image/svg+xml"; const QStringList TEXT_MIMETYPES = QStringList() << "application/xhtml+xml" << "application/x-dtbook+xml"; const QStringList STYLE_MIMETYPES = QStringList() << "text/css"; -const QStringList AUDIO_MIMETYPES = QStringList() << "audio/mpeg" << "audio/mp4" << "audio/ogg"; -const QStringList VIDEO_MIMETYPES = QStringList() << "video/mp4" << "video/mp4" << "video/mp4" - << "video/ogg" << "video/webm" << "text/vtt" << "application/ttml+xml" ; +const QStringList AUDIO_MIMETYPES = QStringList() << "audio/mpeg" << "audio/mp3" << "audio/ogg" << "audio/mp4"; +const QStringList VIDEO_MIMETYPES = QStringList() << "video/mp4" << "video/ogg" << "video/webm" << + "text/vtt" << "application/ttml+xml" ; const QStringList MISC_XML_MIMETYPES = QStringList() << "application/oebps-page-map+xml" << "application/smil+xml"; static const QString CONTAINER_XML = "\n" @@ -523,7 +523,9 @@ m_ExtToMType[ "jpg" ] = "image/jpeg"; m_ExtToMType[ "js" ] = "text/javascript"; m_ExtToMType[ "mp3" ] = "audio/mpeg"; + m_ExtToMType[ "m4a" ] = "audio/mp4"; m_ExtToMType[ "mp4" ] = "video/mp4"; + m_ExtToMType[ "m4v" ] = "video/mp4"; m_ExtToMType[ "ncx" ] = "application/x-dtbncx+xml"; m_ExtToMType[ "oga" ] = "audio/ogg"; m_ExtToMType[ "ogg" ] = "audio/ogg"; diff -Nru sigil-0.9.4+dfsg/src/BookManipulation/HTMLMetadata.cpp sigil-0.9.5+dfsg/src/BookManipulation/HTMLMetadata.cpp --- sigil-0.9.4+dfsg/src/BookManipulation/HTMLMetadata.cpp 2016-02-12 11:59:56.000000000 +0000 +++ sigil-0.9.5+dfsg/src/BookManipulation/HTMLMetadata.cpp 2016-03-16 09:43:42.000000000 +0000 @@ -125,7 +125,18 @@ } + // Converts HTML sourced Dublin Core metadata to OPF style metadata +// +// Sample of HTML Based DC Metadata: +// +// +// +// +// +// +// + MetaEntry HTMLMetadata::HtmlToOpfDC(QString mname, QString mvalue, const QHash & matts) { // Dublin Core from html file with the original 15 element namespace or @@ -147,12 +158,10 @@ dc_event = "publication"; } - QString role = (name == "dc:creator") || (name == "dc:contributor") ? refinement : QString(); + QString role = (name == "creator") || (name == "contributor") ? refinement : QString(); + QString scheme = matts.value("scheme"); - if (scheme.isEmpty()) { - scheme = matts.value("opf:scheme"); - } - if ((name == "dc:identifier") && (scheme.isEmpty())) { + if ((name == "identifier") && (scheme.isEmpty())) { scheme = refinement; } if (!scheme.isEmpty()) { @@ -162,7 +171,7 @@ } MetaEntry me; - me.m_name = name; + me.m_name = "dc:" + name; me.m_content = mvalue; if (!scheme.isEmpty()) { me.m_atts[ "opf:scheme" ] = scheme; diff -Nru sigil-0.9.4+dfsg/src/Dialogs/MetaEditor.cpp sigil-0.9.5+dfsg/src/Dialogs/MetaEditor.cpp --- sigil-0.9.4+dfsg/src/Dialogs/MetaEditor.cpp 2016-03-09 22:00:26.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Dialogs/MetaEditor.cpp 2016-03-21 09:44:40.000000000 +0000 @@ -216,22 +216,22 @@ QString content = "[No data]"; code = "dc:identifier"; insertRow(code, content); - insertChild(QString("opf:scheme"), QString("urn:isbn")); + insertChild(QString("opf:scheme"), QString("ISBN")); } else if (code == "dc:identifier-issn") { QString content = "[No Data]"; code = "dc:identifier"; insertRow(code, content); - insertChild(QString("opf:scheme"), QString("urn:issn")); + insertChild(QString("opf:scheme"), QString("ISSN")); } else if (code == "dc:identifier-doi") { QString content = "[No data]"; code = "dc:identifier"; insertRow(code, content); - insertChild(QString("opf:scheme"), QString("urn:doi")); + insertChild(QString("opf:scheme"), QString("DOI")); } else if (code == "dc:identifier-uuid") { QString content = "[No data]"; code = "dc:identifier"; insertRow(code, content); - insertChild(QString("opf:scheme"), QString("urn:uuid")); + insertChild(QString("opf:scheme"), QString("UUID")); } else if (code == "dc:identifier-custom") { QString content = "[No data]"; code = "dc:identifier"; @@ -248,7 +248,6 @@ code = "dc:creator"; insertRow(code); insertChild(QString("opf:role"),QString("aut")); - insertChild(QString("opf:scheme"),QString("marc:relators")); } else { insertRow(code); } @@ -335,11 +334,7 @@ } } foreach(QString code, codes) { - if (code.startsWith("dir:")) { - QStringList parts = code.split(':'); - QString content = parts.at(1); - insertChild(code, content); - } else if (code == "opf:scheme") { + if (code == "opf:scheme") { insertChild(code); } else if (code == "xml:lang") { QStringList langcodes; @@ -363,9 +358,6 @@ role = rolecodes.at(0); } insertChild(code, role); - code = "opf:scheme"; - QString scheme = "marc:relators"; - insertChild(code, scheme); } else { insertChild(code); } @@ -673,7 +665,7 @@ tr("XML Language") << "xml:lang" << tr("Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements.") << tr("File as") << "opf:file-as" << tr("Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names.") << tr("Role") << "opf:role" << tr("Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary.") << - tr("Scheme") << "opf:scheme" << tr("This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property.") << + tr("Scheme") << "opf:scheme" << tr("This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID.") << tr("Event") << "opf:event" << tr("This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification.") << tr("Custom Attribute") << "[No data]" << tr("An empty metadata attribute you can modify."); diff -Nru sigil-0.9.4+dfsg/src/Dialogs/PreferenceWidgets/GeneralSettingsWidget.cpp sigil-0.9.5+dfsg/src/Dialogs/PreferenceWidgets/GeneralSettingsWidget.cpp --- sigil-0.9.4+dfsg/src/Dialogs/PreferenceWidgets/GeneralSettingsWidget.cpp 2016-01-24 21:43:02.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Dialogs/PreferenceWidgets/GeneralSettingsWidget.cpp 2016-03-22 20:17:36.000000000 +0000 @@ -47,6 +47,22 @@ new_clean_on_level |= CLEANON_SAVE; } + QString css_epub2_spec = "css21"; + + if (ui.Epub2css20->isChecked()) { + css_epub2_spec = "css2"; + } else if (ui.Epub2css30->isChecked()) { + css_epub2_spec = "css3"; + } + + QString css_epub3_spec = "css3"; + + if (ui.Epub3css20->isChecked()) { + css_epub3_spec = "css2"; + } else if (ui.Epub3css21->isChecked()) { + css_epub3_spec = "css21"; + } + int new_remote_on_level = 0; if (ui.AllowRemote->isChecked()) { @@ -56,6 +72,8 @@ SettingsStore settings; settings.setCleanOn(new_clean_on_level); settings.setDefaultVersion(new_epub_version); + settings.setCssEpub2ValidationSpec(css_epub2_spec); + settings.setCssEpub3ValidationSpec(css_epub3_spec); settings.setRemoteOn(new_remote_on_level); return PreferencesWidget::ResultAction_None; } @@ -66,6 +84,14 @@ QString version = settings.defaultVersion(); ui.EpubVersion2->setChecked(version == "2.0"); ui.EpubVersion3->setChecked(version == "3.0"); + QString css_epub2_spec = settings.cssEpub2ValidationSpec(); + ui.Epub2css20->setChecked(css_epub2_spec == "css2"); + ui.Epub2css21->setChecked(css_epub2_spec == "css21"); + ui.Epub2css30->setChecked(css_epub2_spec == "css3"); + QString css_epub3_spec = settings.cssEpub3ValidationSpec(); + ui.Epub3css20->setChecked(css_epub3_spec == "css2"); + ui.Epub3css21->setChecked(css_epub3_spec == "css21"); + ui.Epub3css30->setChecked(css_epub3_spec == "css3"); int cleanOn = settings.cleanOn(); ui.MendOnOpen->setChecked(cleanOn & CLEANON_OPEN); ui.MendOnSave->setChecked(cleanOn & CLEANON_SAVE); diff -Nru sigil-0.9.4+dfsg/src/Form_Files/PGeneralSettingsWidget.ui sigil-0.9.5+dfsg/src/Form_Files/PGeneralSettingsWidget.ui --- sigil-0.9.4+dfsg/src/Form_Files/PGeneralSettingsWidget.ui 2016-01-27 11:43:18.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Form_Files/PGeneralSettingsWidget.ui 2016-03-22 20:17:36.000000000 +0000 @@ -7,25 +7,13 @@ 0 0 400 - 300 + 413 General Settings - - 6 - - - 0 - - - 0 - - - 0 - @@ -107,7 +95,10 @@ Control Access by Epubs to non-multimedia remote resources. - + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + @@ -125,14 +116,128 @@ + + + + 0 + 0 + + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + EPUB2 W3C Stylesheet Validation Level: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + CSS Level 2 + + + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + CSS Level 2.1 + + + true + + + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + CSS Level 3 + + + false + + + + + + + + + + + 0 + 0 + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + EPUB3 W3C Stylesheet Validation Level: + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter + + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + CSS Level 2 + + + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + CSS Level 2.1 + + + false + + + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + + CSS Level 3 + + + true + + + + + + + Qt::Vertical - 40 - 20 + 20 + 40 diff -Nru sigil-0.9.4+dfsg/src/Misc/GumboInterface.cpp sigil-0.9.5+dfsg/src/Misc/GumboInterface.cpp --- sigil-0.9.4+dfsg/src/Misc/GumboInterface.cpp 2016-02-23 21:04:54.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Misc/GumboInterface.cpp 2016-03-23 13:23:22.000000000 +0000 @@ -36,7 +36,7 @@ static std::unordered_set nonbreaking_inline = { "a","abbr","acronym","b","bdo","big","br","button","cite","code","del", "dfn","em","font","i","image","img","input","ins","kbd","label","map", - "nobr","object","q","s","samp","select","small","span","strike","strong", + "nobr","object","q","ruby","rt","s","samp","select","small","span","strike","strong", "sub","sup","textarea","tt","u","var","wbr", "mbp:nu" }; diff -Nru sigil-0.9.4+dfsg/src/Misc/SettingsStore.cpp sigil-0.9.5+dfsg/src/Misc/SettingsStore.cpp --- sigil-0.9.4+dfsg/src/Misc/SettingsStore.cpp 2016-01-24 21:35:02.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Misc/SettingsStore.cpp 2016-03-16 09:47:48.000000000 +0000 @@ -56,6 +56,9 @@ static QString KEY_PLUGIN_LAST_FOLDER = SETTINGS_GROUP + "/" + "plugin_add_last_folder"; static QString KEY_PLUGIN_USE_BUNDLED_INTERP = SETTINGS_GROUP + "/" + "plugin_use_bundled_interp"; +static QString KEY_CSS_EPUB2_VALIDATION_SPEC = SETTINGS_GROUP + "/" + "css_epub2_validation_spec"; +static QString KEY_CSS_EPUB3_VALIDATION_SPEC = SETTINGS_GROUP + "/" + "css_epub3_validation_spec"; + static QString KEY_BOOK_VIEW_FONT_FAMILY_STANDARD = SETTINGS_GROUP + "/" + "book_view_font_family_standard"; static QString KEY_BOOK_VIEW_FONT_FAMILY_SERIF = SETTINGS_GROUP + "/" + "book_view_font_family_serif"; static QString KEY_BOOK_VIEW_FONT_FAMILY_SANS_SERIF = SETTINGS_GROUP + "/" + "book_view_font_family_sans_serif"; @@ -240,6 +243,18 @@ return static_cast(value(KEY_PLUGIN_USE_BUNDLED_INTERP, true).toBool()); } +QString SettingsStore::cssEpub2ValidationSpec() +{ + clearSettingsGroup(); + return value(KEY_CSS_EPUB2_VALIDATION_SPEC, "css21").toString(); +} + +QString SettingsStore::cssEpub3ValidationSpec() +{ + clearSettingsGroup(); + return value(KEY_CSS_EPUB3_VALIDATION_SPEC, "css30").toString(); +} + SettingsStore::BookViewAppearance SettingsStore::bookViewAppearance() { clearSettingsGroup(); @@ -424,6 +439,18 @@ setValue(KEY_PLUGIN_USE_BUNDLED_INTERP, use); } +void SettingsStore::setCssEpub2ValidationSpec(const QString &spec) +{ + clearSettingsGroup(); + setValue(KEY_CSS_EPUB2_VALIDATION_SPEC, spec); +} + +void SettingsStore::setCssEpub3ValidationSpec(const QString &spec) +{ + clearSettingsGroup(); + setValue(KEY_CSS_EPUB3_VALIDATION_SPEC, spec); +} + void SettingsStore::setBookViewAppearance(const SettingsStore::BookViewAppearance &book_view_appearance) { clearSettingsGroup(); diff -Nru sigil-0.9.4+dfsg/src/Misc/SettingsStore.h sigil-0.9.5+dfsg/src/Misc/SettingsStore.h --- sigil-0.9.4+dfsg/src/Misc/SettingsStore.h 2016-01-24 21:36:32.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Misc/SettingsStore.h 2016-03-16 09:47:48.000000000 +0000 @@ -95,6 +95,11 @@ QString pluginLastFolder(); bool useBundledInterp(); + /** + * Get version specification for W3C validation + */ + QString cssEpub2ValidationSpec(); + QString cssEpub3ValidationSpec(); /** * Whether automatic Spellcheck is enabled or not @@ -252,6 +257,12 @@ void setUseBundledInterp(bool use); /** + * Set which css version to specify to the W3C Validator + */ + void setCssEpub2ValidationSpec(const QString &spec); + void setCssEpub3ValidationSpec(const QString &spec); + + /** * Set whether automatic Spellcheck is enabled * * @param name The name of the dictionary. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/plugin_launchers/python/pluginhunspell.py sigil-0.9.5+dfsg/src/Resource_Files/plugin_launchers/python/pluginhunspell.py --- sigil-0.9.4+dfsg/src/Resource_Files/plugin_launchers/python/pluginhunspell.py 2016-01-24 17:32:06.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/plugin_launchers/python/pluginhunspell.py 2016-03-21 09:51:16.000000000 +0000 @@ -62,6 +62,11 @@ def loadDictionary(self, affpath, dpath): + if sys.platform.startswith('win'): + # Win32 bug needs a longpath prefix to trick hunspell into always using _wfopen instead of fopen. + # Only matters if library paths contain non-ascii characters. + affpath = '\\\\?\\' + affpath + dpath = '\\\\?\\' + dpath if type(affpath) == text_type: affpath = affpath.encode('utf-8') if type(dpath) == text_type: diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/plugin_launchers/python/sigil_bs4/element.py sigil-0.9.5+dfsg/src/Resource_Files/plugin_launchers/python/sigil_bs4/element.py --- sigil-0.9.4+dfsg/src/Resource_Files/plugin_launchers/python/sigil_bs4/element.py 2016-01-24 17:32:06.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/plugin_launchers/python/sigil_bs4/element.py 2016-03-23 13:25:38.000000000 +0000 @@ -27,8 +27,8 @@ NON_BREAKING_INLINE_TAGS = ("a","abbr","acronym","b","bdo","big","br", "button","cite","code","del","dfn","em","font","i","image","img", - "input","ins","kbd","label","map","nobr","object","q","s","samp", - "select","small","span","strike","strong","sub","sup","textarea", + "input","ins","kbd","label","map","nobr","object","q","ruby","rt","s", + "samp","select","small","span","strike","strong","sub","sup","textarea", "tt","u","var","wbr","mbp:nu") PRESERVE_WHITESPACE_TAGS = ("pre","textarea","script","style") diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/plugin_launchers/python/wrapper.py sigil-0.9.5+dfsg/src/Resource_Files/plugin_launchers/python/wrapper.py --- sigil-0.9.4+dfsg/src/Resource_Files/plugin_launchers/python/wrapper.py 2016-03-13 15:15:34.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/plugin_launchers/python/wrapper.py 2016-03-23 13:14:04.000000000 +0000 @@ -35,7 +35,7 @@ from unipath import pathof import unicodedata -_launcher_version=20160313 +_launcher_version=20160325 _PKG_VER = re.compile(r'''<\s*package[^>]*version\s*=\s*["']([^'"]*)['"][^>]*>''',re.IGNORECASE) @@ -57,10 +57,13 @@ '.xhtml': 'application/xhtml+xml', '.html' : 'application/xhtml+xml', '.otf' : 'application/vnd.ms-opentype', + #'.otf' : 'application/x-font-opentype', '.ttf' : 'application/x-font-ttf', '.woff' : 'application/font-woff', '.mp3' : 'audio/mpeg', + '.m4a' : 'audio/mp4', '.mp4' : 'video/mp4', + '.m4v' : 'video/mp4', '.css' : 'text/css', '.ncx' : 'application/x-dtbncx+xml', '.xml' : 'application/oebs-page-map+xml', @@ -68,9 +71,8 @@ '.smil' : 'application/smil+xml', '.pls' : 'application/pls-xml', '.js' : 'text/javascript', - '.epub' : 'application/epub+zip', #'.js' : 'application/javascript', - #'.otf' : 'application/x-font-opentype', + '.epub' : 'application/epub+zip', } mime_base_map = { @@ -92,6 +94,7 @@ 'application/oebps-package+xml' : '', 'application/oebs-page-map+xml' : 'Misc', 'application/smil+xml' : 'Misc', + 'text/javascript' : 'Misc', 'application/pls-xml' : 'Misc', } diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/python3lib/xmlprocessor.py sigil-0.9.5+dfsg/src/Resource_Files/python3lib/xmlprocessor.py --- sigil-0.9.4+dfsg/src/Resource_Files/python3lib/xmlprocessor.py 2016-03-09 14:37:54.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/python3lib/xmlprocessor.py 2016-03-25 11:07:06.000000000 +0000 @@ -20,7 +20,7 @@ def get_void_tags(mtype): voidtags = [] if mtype == "application/oebps-package+xml": - voidtags = ["item", "itemref", "mediatype", "mediaType", "meta"] + voidtags = ["item", "itemref", "mediatype", "mediaType", "meta", "reference"] elif mtype == "application/x-dtbncx+xml": voidtags = ["meta", "reference", "content"] elif mtype == "application/smil+xml": diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/base.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/base.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/base.ts 2016-03-09 22:03:50.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/base.ts 2016-03-22 20:19:50.000000000 +0000 @@ -890,17 +890,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. @@ -1964,88 +1964,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11693,604 +11761,608 @@ - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ca.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ca.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ca.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ca.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. El Sigil enviarà el full d'estil al <a href='http://jigsaw.w3.org/css-validator/'>Servei de validació del W3C </a>. - + This page should disappear once loaded after 3 seconds. La pàgina hauria de desaparèixer 3 segons després d'haver-se carregat. - + If your browser does not have javascript enabled, click on the button below. Si el navegador no té activat el javascript, feu clic al botó de sota. @@ -1979,88 +1979,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11855,604 +11923,608 @@ Valor - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_cs.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_cs.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_cs.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_cs.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil pošle data vašeho stylového listu <a href='http://jigsaw.w3.org/css-validator/'>schvalovací službě W3C</a>. - + This page should disappear once loaded after 3 seconds. Tato strana by měla, hned jak se nahraje, po třech sekundách zmizet. - + If your browser does not have javascript enabled, click on the button below. Pokud váš prohlížeč javascript nemá povolen, klepněte na tlačítko níže. @@ -1978,91 +1978,159 @@ Obecná nastavení - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. Vyberte, která verze EPUB se v Sigilu použije při výtváření nového nebo prázdného dokumentu EPUB. - + Create New or Empty Epubs as: Vytvořit nový nebo prázdný EPUB jako: - + Epub Version 2. Verze EPUB 2. - + Version 2 Verze 2 - + Epub Version 3. Verze EPUB 3. - + Version 3 Verze 3 - + Choose when your HTML code is automatically mended. Vyberte, kdy je kód HTML automaticky opraven. - + Mend XHTML Source Code On: Spravit zdrojový kód XHTML: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. Spravit při otevření souboru EPUB nebo HTML a při přepnutí z Pohledu na knihu do Pohledu na kód. - + Open Otevřít - + Mend when saving an Epub. Spravit při uložení EPUB. - + Save Uložit - + Determine if Epubs are allowed to access non-multimedia remote resources. Určit, zda je EPUB povoleno přistupovat k nemultimediálním vzdáleným zdrojům. - + Control Access by Epubs to non-multimedia remote resources. Ovládat přístup pomocí EPUB k nemultimediálním vzdáleným zdrojům. - + Check to allow Epubs to access non-multimedia remote resources. Zaškrtnout k povolení EPUB přistupovat k nemultimediálním vzdáleným zdrojům. - + Epubs may access all remote resources types. EPUB mohou přistupovat ke všem typům vzdálených zdrojů. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + Jakou úroveň CSS stanovit pro nástroj na schvalování stylového listu W3C (EPUB 2) + + + + EPUB2 W3C Stylesheet Validation Level: + Úroveň schvalování stylového listu W3C EPUB 2: + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + Schvalovač stylového listu W3C bude používat úroveň CSS 2 pro EPUB 2 + + + + + CSS Level 2 + Úroveň CSS 2 + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + Schvalovač stylového listu W3C bude používat úroveň CSS 2.1 pro EPUB 2 + + + + + CSS Level 2.1 + Úroveň CSS 2.1 + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + Schvalovač stylového listu W3C bude používat úroveň CSS 3 pro EPUB 2 + + + + + CSS Level 3 + Úroveň CSS 3 + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + Jakou úroveň CSS stanovit pro nástroj na schvalování stylového listu W3C (EPUB 3) + + + + EPUB3 W3C Stylesheet Validation Level: + Úroveň schvalování stylového listu W3C EPUB 3: + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + Schvalovač stylového listu W3C bude používat úroveň CSS 2 pro EPUB 3 + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + Schvalovač stylového listu W3C bude používat úroveň CSS 2.1 pro EPUB 3 + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + Schvalovač stylového listu W3C bude používat úroveň CSS 3 pro EPUB 3 + GuideItems @@ -2966,12 +3034,12 @@ Chapter - + Kapitola A major structural division of a piece of writing. - + Hlavní stavební rozdělení spisu. @@ -2996,12 +3064,12 @@ Contributors - + Přispěvatelé A list of contributors to the work. - + Seznam přispěvatelů práce. @@ -11868,604 +11936,608 @@ Hodnota - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_da_DK.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_da_DK.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_da_DK.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_da_DK.ts 2016-03-25 20:56:46.000000000 +0000 @@ -901,17 +901,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil vil sende dine typografiarksdata til <a href='http://jigsaw.w3.org/css-validator/'>W3C-valideringstjenesten</a>. - + This page should disappear once loaded after 3 seconds. Denne side bør forsvinde, 3 sekunder efter siden er indlæst. - + If your browser does not have javascript enabled, click on the button below. Hvis din browser ikke har JavaScript aktiveret, skal du klikke på knappen nedenfor. @@ -1973,88 +1973,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11843,604 +11911,608 @@ Værdi - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_de.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_de.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_de.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_de.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil sendet Ihre Stylesheet-Daten an den <a href='http://jigsaw.w3.org/css-validator/'>W3C Validierungsservice</a>. - + This page should disappear once loaded after 3 seconds. Diese Seite sollte nach dem Laden innerhalb von 3 Sekunden verschwinden. - + If your browser does not have javascript enabled, click on the button below. Wenn Ihr Browser kein JavaScript aktiviert hat, klicken Sie auf die Schaltfläche unten. @@ -1976,51 +1976,51 @@ Allgemeine Einstellungen - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. Legt fest, welche ePub-Version neue ePubs haben sollen. - + Create New or Empty Epubs as: Neue oder leere ePubs erstellen als: - + Epub Version 2. ePub-Version 2. - + Version 2 Version 2 - + Epub Version 3. ePub-Version 3. - + Version 3 Version 3 - + Choose when your HTML code is automatically mended. Legt fest, wann der HTML-Code automatisch bereinigt werden soll. - + Mend XHTML Source Code On: XHTML-Quellcode bereinigen beim: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. Bereinigt Quellcode, wenn eine EPUB- oder @@ -2028,40 +2028,108 @@ zur Quelltext-Ansicht. - + Open Öffnen - + Mend when saving an Epub. Bereinigen beim Speichern. - + Save Speichern - + Determine if Epubs are allowed to access non-multimedia remote resources. Legt fest, ob ePubs auf Nicht-Multimedia-Internet-Ressourcen zugreifen dürfen. - + Control Access by Epubs to non-multimedia remote resources. Zugriff von ePubs auf Nicht-Multimedia-Internet-Ressourcen - + Check to allow Epubs to access non-multimedia remote resources. Aktivieren Sie diese Option, um ePubs den Zugriff auf Nicht-Multimedia-Internet-Ressourcen zu gewähren. - + Epubs may access all remote resources types. Epubs können auf alle Internet-Ressourcen zugreifen. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + Die zu verwendende CSS Level-Version für EPUB2-Stylesheet-Validierung. + + + + EPUB2 W3C Stylesheet Validation Level: + EPUB2-W3C-Stylesheet-Validierung: + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + Das Stylesheet wird mit CSS Level 2 für EPUB2 validiert. + + + + + CSS Level 2 + CSS Level 2 + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + Das Stylesheet wird mit CSS Level 2.1 für EPUB2 validiert. + + + + + CSS Level 2.1 + CSS Level 2.1 + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + Das Stylesheet wird mit CSS Level 3 für EPUB2 validiert. + + + + + CSS Level 3 + CSS Level 3 + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + Die zu verwendende CSS Level-Version für EPUB3-Stylesheet-Validierung. + + + + EPUB3 W3C Stylesheet Validation Level: + EPUB3-W3C-Stylesheet-Validierung: + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + Das Stylesheet wird mit CSS Level 2 für EPUB3 validiert. + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + Das Stylesheet wird mit CSS Level 2.1 für EPUB3 validiert. + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + Das Stylesheet wird mit CSS Level 3 für EPUB3 validiert. + GuideItems @@ -8925,12 +8993,12 @@ Metadata Editor cancelled. - + Metadaten-Editor wurde abgebrochen. Metadata edited. - + Metadaten wurden bearbeitet. @@ -9437,7 +9505,7 @@ Book producer - + Buchproduzent @@ -9447,7 +9515,7 @@ Bookjacket designer - + Schutzumschlag-Designer @@ -11855,604 +11923,608 @@ Wert - - + + Author Autor - - + + Represents a primary author of the book or publication - - + + Subject Thema - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. Thema, das im Dokument behandelt wird. Bei Bedarf können mehrere "Thema"-Elemente benutzt werden. - - + + Description Beschreibung - - + + Description of the publication's content. Zusammenfassung des Inhalts des Dokuments. - - + + Publisher Herausgeber - - + + An entity responsible for making the publication available. Name der veröffentlichenden Instanz, typischerweise der Verleger oder Herausgeber. - - + + Date: Publication Datum: Veröffentlichung - - + + The date of publication. Das Datum der Veröffentlichung. - - + + Date: Creation Datum: Erstellung - - + + The date of creation. Das Datum der Erstellung. - + Date: Issued Datum: Ausstellung - - - + + + The date of modification. Das Datum der letzten Änderung. - - + + Date: Modification Datum: Änderung - - + + Type Typ - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). Der Medien-Typ des Dokuments. (Als Wert sollte der MIME-Medientyp eingetragen sein.) - - + + Source Quelle - + Identifies the related resource(s) from which this EPUB Publication is derived. Die Quelle, von der das ePub-Dokument abgeleitet ist. - - + + Language Sprache - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation Bezug - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. Beziehung zwischen dem Dokument zu einem zugehörigen Editionsprojekt oder der Quelle. - - + + Coverage Geltungsbereich - - + + The extent or scope of the content of the publication's content. Das räumliche oder zeitliche Thema der Ressource, die räumliche Anwendbarkeit der Ressource oder der Rechtsraum, für den die Ressource gilt. - - + + Rights Rechte - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. Angaben zum Urheberrecht des Dokuments. Rechteinformationen umfassen oft Intellectual Property Rights (Rechte des geistigen Eigentums), Urheberrecht und verschiedene andere Eigentumsrechte . Wenn das Rechte-Element fehlt, kann daraus nicht auf Rechtsfreiheit geschlossen werden. - - + + Creator Urheber - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor Mitwirkender - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection Zugehörige Sammlung - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title Titel: - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI Bezeichner: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN Bezeichner: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN Bezeichner: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID Bezeichner: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element Benutzerdefiniertes Element - + An empty metadata element you can modify. - - + + Id Attribute ID-Attribut - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language XML-Sprache - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl Textrichtung: RNL - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr Textrichtung: LNR - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main Titeltyp: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle Titeltyp: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short Titeltyp: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection Titeltyp: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition Titeltyp: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded Titeltyp: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script Alternatives Alphabet - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language Alternative Sprache - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set Sammlungstyp: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series Sammlungstyp: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence Anzeigereihenfolge - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as Sortierung - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position Gruppenposition - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type Bezeichnertyp - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority Metadatenstelle - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role Rolle - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme Schema - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination Seitenzahlquelle - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property Benutzerdefinierte Eigenschaft - + An empty metadata property or attribute you can modify. Eine leere Metadaten-Eigenschaft oder ein Attribut, das geändert werden kann. - + The main title of the epub publication. Only one title may exist. Der Haupttitel des Buches. Nur ein Titel ist zulässig. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. Der Typ bzw. das Genre des Dokuments. - + A reference to a resource from which the present publication is derived. Die Quelle, von der das Dokument abgeleitet ist. - + A language used in the publication. Choose a RFC5646 value. Die Sprache des Buchs als RFC5646-Wert. - - - - + + + + Identifier Bezeichner - + Digital Object Identifier Digital Object Identifier - + International Standard Book Number International Standard Book Number - + International Standard Serial Number International Standard Serial Number - + Universally Unique Identifier Universally Unique Identifier - + Identifier: Custom Bezeichner: benutzerdefiniert - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify Ein leeres Metadaten-Element, das geändert werden kann. - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event Ereignis - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute Benutzerdefiniertes Attribut - + An empty metadata attribute you can modify. Ein leeres Metadaten-Attribut, das geändert werden kann. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_el_GR.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_el_GR.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_el_GR.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_el_GR.ts 2016-03-25 20:56:46.000000000 +0000 @@ -890,17 +890,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. @@ -1958,88 +1958,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11815,604 +11883,608 @@ Τιμή - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_en.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_en.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_en.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_en.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. If your browser does not have javascript enabled, click on the button below. @@ -1977,91 +1977,159 @@ General Settings - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: Create New or Empty Epubs as: - + Epub Version 2. Epub Version 2. - + Version 2 Version 2 - + Epub Version 3. Epub Version 3. - + Version 3 Version 3 - + Choose when your HTML code is automatically mended. Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open Open - + Mend when saving an Epub. Mend when saving an Epub. - + Save Save - + Determine if Epubs are allowed to access non-multimedia remote resources. Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + EPUB2 W3C Stylesheet Validation Level: + EPUB2 W3C Stylesheet Validation Level: + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + CSS Level 2 + CSS Level 2 + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + CSS Level 2.1 + CSS Level 2.1 + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + CSS Level 3 + CSS Level 3 + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + EPUB3 W3C Stylesheet Validation Level: + EPUB3 W3C Stylesheet Validation Level: + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + W3C stylesheet validator will use CSS level 3 for EPUB3 + GuideItems @@ -11863,604 +11931,608 @@ Value - - + + Author Author - - + + Represents a primary author of the book or publication Represents a primary author of the book or publication - - + + Subject Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description Description - - + + Description of the publication's content. Description of the publication's content. - - + + Publisher Publisher - - + + An entity responsible for making the publication available. An entity responsible for making the publication available. - - + + Date: Publication Date: Publication - - + + The date of publication. The date of publication. - - + + Date: Creation Date: Creation - - + + The date of creation. The date of creation. - + Date: Issued Date: Issued - - - + + + The date of modification. The date of modification. - - + + Date: Modification Date: Modification - - + + Type Type - + Used to indicate that the given EPUB Publication is of a specialized type.. Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source Source - + Identifies the related resource(s) from which this EPUB Publication is derived. Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language Language - + Specifies the language of the publication. Select from the dropdown menu Specifies the language of the publication. Select from the dropdown menu - - + + Relation Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage Coverage - - + + The extent or scope of the content of the publication's content. The extent or scope of the content of the publication's content. - - + + Rights Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element Custom Element - + An empty metadata element you can modify. An empty metadata element you can modify. - - + + Id Attribute Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language Alternate Language - + Language code for the language used in the associated alternate-script property value. Language code for the language used in the associated alternate-script property value. - + Collection Type: set Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. Identifies the party or authority responsible for an instance of package metadata. - - + + Role Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property Custom Property - + An empty metadata property or attribute you can modify. An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier Identifier - + Digital Object Identifier Digital Object Identifier - + International Standard Book Number International Standard Book Number - + International Standard Serial Number International Standard Serial Number - + Universally Unique Identifier Universally Unique Identifier - + Identifier: Custom Identifier: Custom - + A custom identifier based on a specified scheme A custom identifier based on a specified scheme - + An empty metadata element for you to modify An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + Event Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute Custom Attribute - + An empty metadata attribute you can modify. An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_es.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_es.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_es.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_es.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil enviará la hoja de estilos al <a href='http://jigsaw.w3.org/css-validator/'>Servicio de validación de W3C</a>. - + This page should disappear once loaded after 3 seconds. Esta página desaparecerá 3 segundos después de cargarse. - + If your browser does not have javascript enabled, click on the button below. Si su navegador no tiene activado javascript, pulse en el botón de abajo. @@ -1977,89 +1977,157 @@ Opciones generales - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. Elija una versión de Epub para usar al crear un Epub nuevo o vacío en Sigil. - + Create New or Empty Epubs as: Crear epubs nuevos o vacíos como: - + Epub Version 2. Epub versión 2. - + Version 2 Versión 2 - + Epub Version 3. Epub versión 3. - + Version 3 Versión 3 - + Choose when your HTML code is automatically mended. Elija cuándo se corregirá automáticamente el código HTML. - + Mend XHTML Source Code On: Corregir código XHTML al: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. Corregir al abrir un archivo Epub o HTML, y al cambiar de vista de libro a vista de código. - + Open Abrir - + Mend when saving an Epub. Corregir al guardar un Epub. - + Save Guardar - + Determine if Epubs are allowed to access non-multimedia remote resources. Determinar si los Epubs tienen permitido el acceso a recursos remotos que no sean multimedia. - + Control Access by Epubs to non-multimedia remote resources. Controlar el acceso a recursos remotos no multimedia de los Epubs - + Check to allow Epubs to access non-multimedia remote resources. Marcar para permitir a los Epubs acceder a recursos remotos no multimedia. - + Epubs may access all remote resources types. Los Epubs pueden acceder a todos los tipos de recursos remotos. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11859,604 +11927,608 @@ Valor - - + + Author Autor - - + + Represents a primary author of the book or publication Representa un autor primario del libro o publicación - - + + Subject Materia - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. Una frase o palabra clave arbitraria que describe el tema o asunto en cuestión. Use múltiples elementos «Materia» si es necesario. - - + + Description Descripción - - + + Description of the publication's content. Descripción del contenido de la publicación. - - + + Publisher Editorial - - + + An entity responsible for making the publication available. La entidad responsable de hacer que la publicación se encuentre disponible. - - + + Date: Publication Fecha: Publicación - - + + The date of publication. La fecha de publicación. - - + + Date: Creation Fecha: Creación - - + + The date of creation. La fecha de creación. - + Date: Issued Fecha: Distribución - - - + + + The date of modification. La fecha de modificación. - - + + Date: Modification Fecha: Modificación - - + + Type Tipo - + Used to indicate that the given EPUB Publication is of a specialized type.. Usado para indicar que la publicación EPUB es de un tipo especializado. - - + + Format Formato - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). El tipo de medio o el tamaño de la publicación. Una buena práctica es usar un valorde un vocabulario controlado (p. ej., tipos de medios MIME). - - + + Source Fuente - + Identifies the related resource(s) from which this EPUB Publication is derived. Identifica el/los recurso/s relacionado/s de donde se deriva esta publicación EPUB. - - + + Language Idioma - + Specifies the language of the publication. Select from the dropdown menu Especifica el idioma de la publicación. Selecciónelo desde el menú desplegable - - + + Relation Relación - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. Una referencia a un recurso relacionado. Se recomienda identificar el recurso referido por medio de una serie de letras o números que se ajusten a un sistema de identificación formal. - - + + Coverage Cobertura - - + + The extent or scope of the content of the publication's content. La magnitud o el alcance del contenido de la publicación. - - + + Rights Derechos - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. Información sobre los derechos legales que afectan al uso del recurso. La información sobre los derechos normalmente abarca los derechos de propiedad intelectual (IPR), copyright y varios derechos relacionados con la propiedad. Si no consta el elemento «Derechos» no se deben hacer asunciones sobre ningún tipo de derecho relativo a la publicación. - - + + Creator Creador - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Representa el nombre de una persona, organización, etc. responsable de la creación del contenido de una publicación EPUB. La propiedad de participación puede añadirse al elemento para indicar la función que ha realizado un creador en la creación del contenido. - - + + Contributor Colaborador - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Representa el nombe de una persona, organización, etc. que ha tenido un papel secundario en la creación del contenido de una publicación EPUB. - + Belongs to Collection Pertenece a la Colección - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. Identifica el nombre de una colección a la que pertenece la publicación EPUB. Una publicación EPUB puede pertenecer a más de una colección. - - + + Title Título - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. Un título de la publicación. Una publicación sólo puede tener un título principal, pero puede tener varios títulos de otros tipos. Los tipos de título pueden ser: principal, subtítulo, corto, colección, edición y expandido. - + Identifier: DOI Identificador: DOI - + Digital Object Identifier associated with the given EPUB publication. Identificador de objeto digital asociado con la publicación EPUB. - + Identifier: ISBN Identificador: ISBN - + International Standard Book Number associated with the given EPUB publication. Número estándar internacional de libros asociado con la publicación EPUB. - + Identifier: ISSN Identificador: ISSN - + International Standard Serial Number associated with the given EPUB publication. Número estándar internacional de publicaciones seriadas asociado con la publicación EPUB. - + Identifier: UUID Identificador: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. Un identificador único universal generado para esta publicación EPUB. - - + + Custom Element Elemento personalizado - + An empty metadata element you can modify. Un elemento de metadatos vacío que se puede modificar. - - + + Id Attribute Atributo id - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. Identificador único opcional, normalmente corto, usado como un atributo en el documento de paquete (opf). - - + + XML Language Idioma XML - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. Atributo opcional de especificación de idioma. Usa los mismos códigos que dc:language. No debe usarse en los elementos de metadatos dc:language, dc:date o dc:identifier. - + Text Direction: rtl Dirección del texto: derecha a izquierda - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Atributo opcional para la dirección del texto de este elemento de metadatos: derecha a izquierda (rtl). No debe usarse en los elementos de metadatos dc:language, dc:date o dc:identifier. - + Text Direction: ltr Dirección del texto: izquierda a derecha - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Atributo opcional para la dirección del texto de este elemento de metadatos. Izquierda a derecha (ltr). No debe usarse en los elementos de metadatos dc:language, dc:date o dc:identifier. - + Title Type: main Tipo de título: principal - + Indicates the associated title is the main title of the publication. Only one main title should exist. Indica que el título asociado es el título principal de la publicación. Sólo debe existir un título principal. - + Title Type: subtitle Tipo de título: subtítulo - + Indicates that the associated title is a subtitle of the publication if one exists.. Indica que el título asociado es un subtítulo de la publicación. - + Title Type: short Tipo de título: corto - + Indicates that the associated title is a shortened title of the publication if one exists. Indica que el título asociado es un título abreviado de la publicación. - + Title Type: collection Tipo de título: colección - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. Indica que el título asociado es el título de una colección a la que pertenece esta publicación. - + Title Type: edition Tipo de título: edición - + Indicates that the associated title is an edition title for this publications if one exists. Indica que el título asociado es un título de edición para esta publicación. - + Title Type: expanded Tipo de título: expandido - + Indicates that the associated title is an expanded title for this publication if one exists. Indica que el título asociado es un título expandido para esta publicación - + Alternate Script Escritura alternativa - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. Proporciona una expresión alternativa para la el valor de la propiedad asociada en un idioma y escritura identificados por un atributo de idioma alternativo. - + Alternate Language Idioma alternativo - + Language code for the language used in the associated alternate-script property value. Código de idioma para el idioma usado en el valor de la propiedad alternate-script asociada. - + Collection Type: set Tipo de colección: conjunto - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. Propiedad usada con belongs-to-collection. Indica la forma o naturaleza de una colección. El valor «conjunto» debe usarse para una colección finita de obras que juntas constituyen una única unidad intelectual, normalmente publicadas a la vez y pueden comprarse como una unidad. - + Collection Type: series Tipo de colección: serie - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. Propiedad usada con belongs-to-collection. Indica la forma o naturaleza de una colección. El valor «serie» debe usarse para una secuencia de obras relacionadas que formalmente se identifican como un grupo, normalmente sin final predefinido y con las obras publicadas individualmente a lo largo del tiempo. - + Display Sequence Secuencia de visualización - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). Indica la posición numérica en la que debe mostrarse la propiedad actual en relación a otras propiedades de metadatos idénticas (por ejemplo, para indicar en qué orden mostrar varios títulos o varios autores). - - + + File as Ordenar como - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. Proporciona la forma normalizada para ordenación de la propiedad asociada. Normalmente usado con nombres de autor, creador y colaborador. - + Group Position Posición de grupo - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). Indica la posición numérica en la que se ubica la publicación EPUB en relación con otras obras que pertenecen al mismo grupo (ya sean también publicaciones EPUB o no). - + Identifier Type Tipo de identificador - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. Indica la forma o naturaleza de un identificador. Cuando el valor de identifier-type se toma de una lista de códigos u otra enumeración formal, el atributo de esquema debe usarse para identificar la fuente. - + Meta Authority Autoridad de metadatos - + Identifies the party or authority responsible for an instance of package metadata. Identifica la entidad o autoridad responsable de los metadatos del paquete. - - + + Role Participación - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. Describe la naturaleza del trabajo realizado por un creador o colaborador (por ejemplo, que la persona es el autor o editor de una obra). Normalmente usado con el esquema marc:relators y un vocabulario controlado. - - + + Scheme Esquema - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. Este atributo normalmente se añade a dc:identifier, dc:source, dc:creator o dc:contributor para indicar el sistema de vocabulario controlado que se usa (por ejemplo, marc:relators para especificar valores válidos de la propiedad de participación). - + Source of Pagination Origen de la paginación - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. Indica un aspecto único de un recurso fuente adaptado que se ha mantenido en la presentación de la publicación EPUB. Esta especificación define el valor de paginación para indicar que el elemento de origen referenciado es el origen de las propiedades de salto de página definidas en el contenido. Este valor debería establecerse siempre que se incluya una paginación y la versión impresa de origen sea conocida. Valores válidos: pagination. - + Custom Property Propiedad personalizada - + An empty metadata property or attribute you can modify. Una propiedad de metadatos vacía que se puede modificar. - + The main title of the epub publication. Only one title may exist. El título principal de la publicación epub. Sólo puede haber uno. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. Representa el nombre de una persona, organización, etc. responsable de la creación del contenido de una publicación EPUB. Los atributos opf:role, opf:scheme y opf:file-as pueden añadirse al elemento para indicar la función que ha realizado un creador en la creación del contenido. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' Representa el nombe de una persona, organización, etc. que ha tenido un papel secundario en la creación del contenido de una publicación EPUB. - + The nature or genre of the content of the resource. La naturaleza o tipo del contenido del recurso. - + A reference to a resource from which the present publication is derived. Una referencia a un recurso del cual se deriva la presente publicación. - + A language used in the publication. Choose a RFC5646 value. Un idioma utilizado en la publicación. Seleccionar un valor RFC5646. - - - - + + + + Identifier Identificador - + Digital Object Identifier Identificador de objeto digital - + International Standard Book Number Número estándar internacional de libros - + International Standard Serial Number Número estándar internacional de publicaciones periódicas - + Universally Unique Identifier Identificador único universal - + Identifier: Custom Identificador: Personalizado - + A custom identifier based on a specified scheme Un identificador personalizado basado en un esquema específico - + An empty metadata element for you to modify Un elemento de metadatos vacío para modificar - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. Atributo opcional de especificación de idioma. Usa los mismos códigos que dc:language. No debe usarse en los elementos de metadatos dc:language, dc:date o dc:identifier. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event Acontecimiento - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. Este atributo es usualmente agregado a elementos dc:date para especificar el tipo de fecha: publicación, creación o modificación. - + Custom Attribute Atributo personalizado - + An empty metadata attribute you can modify. Un atributo de metadatos vacío que se puede modificar. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_fi.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_fi.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_fi.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_fi.ts 2016-03-25 20:56:46.000000000 +0000 @@ -904,17 +904,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil lähettää tyyliohjeesi <a href='http://jigsaw.w3.org/css-validator/'>W3C:n CSS-tarkistimelle</a>. - + This page should disappear once loaded after 3 seconds. Tämän sivun pitäisi hävitä lataamisen jälkeen kolmessa sekunnissa. - + If your browser does not have javascript enabled, click on the button below. Jos JavaScript-koodin suoritus ei ole sallittuna selaimessasi, napsauta alla olevaa painiketta. @@ -1979,88 +1979,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11856,604 +11924,608 @@ Arvo - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_fr.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_fr.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_fr.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_fr.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil enverra les données de votre feuille de style à <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. Après 3 secondes cette page, une fois chargé, devrait disparaître. - + If your browser does not have javascript enabled, click on the button below. Si la fonction javascript de votre navigateur n'est pas active, cliquer sur le bouton ci-dessous. @@ -1978,88 +1978,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11844,604 +11912,608 @@ Valeur - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_he.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_he.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_he.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_he.ts 2016-03-25 20:56:46.000000000 +0000 @@ -894,17 +894,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. @@ -1963,88 +1963,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11781,604 +11849,608 @@ ערך - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_hu_HU.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_hu_HU.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_hu_HU.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_hu_HU.ts 2016-03-25 20:56:46.000000000 +0000 @@ -889,17 +889,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. A Sigil a stíluslap adatokat elküldi a <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a> szolgáltatásnak. - + This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. @@ -1957,88 +1957,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11784,604 +11852,608 @@ Érték - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_id_ID.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_id_ID.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_id_ID.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_id_ID.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil akan mengirim fata stylesheet ke <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. Halaman ini akan menghilang setelah muncul selama 3 detik. - + If your browser does not have javascript enabled, click on the button below. Jika javascript pada peramban tidak aktif, klik tombol di bawah ini. @@ -1977,88 +1977,156 @@ Pengaturan Umum - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. Pilih versi Epub mana yang digunakan ketika membuat Epub baru atau kosong di Sigil. - + Create New or Empty Epubs as: Ciptakan Epub Baru atau Kosong sebagai: - + Epub Version 2. Epub Versi 2. - + Version 2 Versi 2 - + Epub Version 3. Epub Versi 3. - + Version 3 Versi 3 - + Choose when your HTML code is automatically mended. Tentukan saat kode HTML diperbaiki secara otomatis. - + Mend XHTML Source Code On: Perbaiki Kode Sumber XHTML pada: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. Perbaiki ketika membuka Epub atau file HTML dan ketika beralih dari Tampilan Buku ke Tampilan Kode. - + Open Buka - + Mend when saving an Epub. Perbaiki ketika menyimpan Epub. - + Save Simpan - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11854,604 +11922,608 @@ Nilai - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_it.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_it.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_it.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_it.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil invierà i dati dei fogli di stile al <a href='http://jigsaw.w3.org/css-validator/'>Servizio di Convalida del W3C</a>. - + This page should disappear once loaded after 3 seconds. Questa pagina dovrebbe scomparire 3 secondi dopo essere stata caricata. - + If your browser does not have javascript enabled, click on the button below. Se il tuo browser non ha javascript abilitato, fare clic sul pulsante qui sotto. @@ -1978,91 +1978,159 @@ Impostazioni Generali - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. Scegli quale versione di Epub usare nella creazione di nuovi Epub in Sigil. - + Create New or Empty Epubs as: Crea nuovo Epub con nome: - + Epub Version 2. Epub Versione 2. - + Version 2 Versione 2 - + Epub Version 3. Epub Versione 3. - + Version 3 Versione 3 - + Choose when your HTML code is automatically mended. Scegli quando il proprio codice HTML debba essere automaticamente riparato. - + Mend XHTML Source Code On: Effettua riparazione codice sorgente XHTML su: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. Ripara all'apertura di un EPUB o di un file HTML, quando si passa dalla Vista Libro alla Vista Codice. - + Open Apri - + Mend when saving an Epub. Effettua riparazione durante il salvataggio di un Epub. - + Save Salva - + Determine if Epubs are allowed to access non-multimedia remote resources. Determina se agli Epub sia consentito accedere a risorse remote non-multimediali. - + Control Access by Epubs to non-multimedia remote resources. Controllo accesso da parte degli Epub a risorse remote non-multimediali. - + Check to allow Epubs to access non-multimedia remote resources. Spunta per permettere agli epub di accedere a risorse remote non multimediali. - + Epubs may access all remote resources types. Gli Epub possono accedere a tutti i tipi di risorse remote. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11851,604 +11919,608 @@ Valore - - + + Author Autore - - + + Represents a primary author of the book or publication Rappresenta il principale autore del libro o della pubblicazione - - + + Subject Soggetto - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. Una frase arbitraria o una parola chiave sta descrivendo il soggetto in questione. Utilizzare più elementi 'soggetto' se necessario. - - + + Description Descrizione - - + + Description of the publication's content. Descrizione del contenuto della pubblicazione. - - + + Publisher Editore - - + + An entity responsible for making the publication available. Un'entità responsabile di rendere la pubblicazione disponibile. - - + + Date: Publication Data: Pubblicazione - - + + The date of publication. La data di pubblicazione. - - + + Date: Creation Data: Creazione - - + + The date of creation. La data di creazione - + Date: Issued Data: Emesso - - - + + + The date of modification. La data di modifica - - + + Date: Modification Data: Modifica - - + + Type Tipo - + Used to indicate that the given EPUB Publication is of a specialized type.. Usato per indicare che la pubblicazioneo EPUB indicata è di un tipo specializzato.. - - + + Format Formato - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). Il tipo di supporto o le dimensioni della pubblicazione. Il metodo migliore è quello di utilizzare un valore da un vocabolario controllato (es. tipi di media MIME). - - + + Source Fonte - + Identifies the related resource(s) from which this EPUB Publication is derived. Identifica le risorse relative, da cui deriva questa pubblicazione EPUB. - - + + Language Lingua - + Specifies the language of the publication. Select from the dropdown menu Specifica la lingua della pubblicazione. Selezionare dal menu a discesa - - + + Relation Relazione - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. Un riferimento alla risorsa correlata. La procedura consigliata è quella di identificare la risorsa di riferimento per mezzo di una stringa o un numero conforme a un sistema di identificazione formale. - - + + Coverage Copertura - - + + The extent or scope of the content of the publication's content. L'estensione o scopo del contenuto del contenuto della pubblicazione. - - + + Rights Diritti - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. Informazione sui diritti esercitati sulla pubblicazione. Le informazioni sui diritti spesso comprendono i diritti di proprietà intellettuale (IPR), Copyright e vari diritti di proprietà. Se l'elemento Rights è assente, nessuna ipotesi può essere fatta su eventuali diritti detenuti o per la pubblicazione. - - + + Creator Creatore - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Rappresenta il nome di una persona, organizzazione, ecc responsabile della creazione del contenuto di una pubblicazione EPUB. La proprietà del ruolo può essere collegata all'elemento per indicare la funzione che il creatore ha svolto nella creazione del contenuto. - - + + Contributor Contributore - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Rappresenta il nome di una persona, organizzazione, ecc, che ha giocato un ruolo secondario nella creazione del contenuto di una pubblicazione EPUB. La proprietà del ruolo può essere collegata all'elemento per indicare la funzione che il creatore ha svolto nella creazione del contenuto. - + Belongs to Collection Appartiene alla Collezione - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. Identifica il nome di una collezione a cui la pubblicazione EPUB appartiene. Una pubblicazione EPUB può appartenere a una o più raccolte. - - + + Title Titolo - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. Un titolo della pubblicazione. Una pubblicazione può avere un solo titolo principale, ma può avere numerosi altri tipi di titolo. Questi tipi includono principale, sottotitolo, breve, raccolta, edizione ed esteso. - + Identifier: DOI Identificatore: DOI - + Digital Object Identifier associated with the given EPUB publication. Digital Object Identifier associato alla pubblicazione di questo EPUB. - + Identifier: ISBN Identificatore: ISBN - + International Standard Book Number associated with the given EPUB publication. International Standard Book Number associato con la pubblicazione EPUB . - + Identifier: ISSN Identificatore: ISSN - + International Standard Serial Number associated with the given EPUB publication. International Standard Book Number associato con la pubblicazione EPUB . - + Identifier: UUID Identificatore: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. Un Universally Unique Idenitifier generato per questa publicazione EPUB. - - + + Custom Element Elemento Personalizzato - + An empty metadata element you can modify. Un elemento metadato vuoto che è possibile modificare. - - + + Id Attribute Attributo id - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. Opzionale, in genere breve, stringa di identificazione univoco utilizzato come attributo nel documento di Package (opf). - - + + XML Language Linguaggio XML - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. Attributo opzionale specifico della lingua . Utilizza gli stessi codici dc:language. Da non usare con gli elementi di metadati dc:language, dc:date, o dc:identifier. - + Text Direction: rtl Direzi&one del testo rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Attributo opzionale per questa voce di metadati indicante la direzione del testo. destra-a-sinistra (rtl).. Da non usare con gli elementi di metadati dc:language, dc:date, o dc:identifier. - + Text Direction: ltr Direzi&one del testo ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Attributo opzionale per questa voce di metadati indicante la direzione del testo. sinistra-a-destra (ltr).. Da non usare con gli elementi di metadati dc:language, dc:date, o dc:identifier. - + Title Type: main Tipo di Titolo: principale - + Indicates the associated title is the main title of the publication. Only one main title should exist. Indica che il titolo associato è il titolo principale della pubblicazione. Può essercene solo uno. - + Title Type: subtitle Tipo di Titolo: sottotitolo - + Indicates that the associated title is a subtitle of the publication if one exists.. Indica che il titolo associato è un sottotitolo della pubblicazione, se ne esiste uno.. - + Title Type: short Tipo di Titolo: breve - + Indicates that the associated title is a shortened title of the publication if one exists. Indica che il titolo associato è un titolo abbreviato della pubblicazione, se ne esiste uno. - + Title Type: collection Tipo di Titolo: collezione - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. Indica che il titolo associato è il titolo di una Tcollection che comprende questa pubblicazione se ne esiste uno. - + Title Type: edition Tipo di Titolo: edizione - + Indicates that the associated title is an edition title for this publications if one exists. Indica che il titolo associato è un titolo di edizione per queste pubblicazioni, se ne esiste uno. - + Title Type: expanded Tipo di Titolo: espanso - + Indicates that the associated title is an expanded title for this publication if one exists. Indica che il titolo associato è un titolo esteso per questa pubblicazione, se ne esiste uno. - + Alternate Script Script Alternativo - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. Fornisce una espressione alternativa del valore della proprietà associata in una lingua e scrittura identificata da un attributo lingua-alternativa. - + Alternate Language Lingua Alternativa - + Language code for the language used in the associated alternate-script property value. Codice di lingua per la lingua utilizzata nel valore della proprietà associata alternate-script. - + Collection Type: set Tipo di Collezione: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. Proprietà usata con appartiene-a-una-raccolta. Indica la forma o la natura di una collezione. Il valore 'set' deve essere utilizzato per una raccolta finita di opere che insieme costituiscono una singola unità intellettuale; tipicamente rilasciati insieme ed in grado di essere venduti come unità.. - + Collection Type: series Tipo di Collezione: serie - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. Proprietà usata con appartiene-a-una-raccolta. Indica la forma o la natura di una collezione. Il valore 'serie' deve essere utilizzato per una sequenza di opere in relazione che sono formalmente indicate come un gruppo; tipicamente a tempo indeterminato con opere emessi singolarmente nel corso del tempo. - + Display Sequence Sequenza di Visualizzazione - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). Indica la posizione numerica in cui visualizzare la proprietà corrente rispetto a proprietà di metadati identiche (ad esempio, per indicare l'ordine in cui mostrare titoli od autori multipli). - - + + File as File come - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. Fornisce la forma normalizzata della proprietà associata per l'ordinamento. Tipicamente utilizzato con i nomi di autore, creatore, e collaboratore. - + Group Position Posizione del Gruppo - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). Indica la posizione numerica in cui la pubblicazione EPUB è ordinata rispetto ad altre opere appartenenti allo stesso gruppo (sia se sono tutte Publicazioni EPUB o meno). - + Identifier Type Tipo di Identificatore - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. Indica la forma o la natura di un identificatore. Quando il valore identificatore-tipo è tratto da una lista di codici od altra enumerazione formale, l'attributo dello schema deve essere utilizzato per identificare la fonte. - + Meta Authority Autorità dei Metadati - + Identifies the party or authority responsible for an instance of package metadata. Identifica la parte o l'autorità responsabile per un'istanza di confezionamento dei metadati. - - + + Role Ruolo - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. Descrive la natura del lavoro svolto da un creatore o collaboratore (ad esempio, se la persona è l'autore o l'editore di un lavoro). Tipicamente utilizzato con lo schema marc:relators per un vocabolario controllato. - - + + Scheme Schema - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. Questo attributo è tipicamente aggiunto a dc:identifier, dc:source: dc:creator, o dc:contributor per indicare il sistema di vocabolario controllato impiegato. (Ad esempio marc:relators per specificare i valori validi per la proprietà del ruolo. - + Source of Pagination Sorgente di Paginazione - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. Indica un aspetto unico di una risorsa di origine adattata che è stato mantenuto nel dato Rendition della pubblicazione EPUB. Questa specifica definisce il valore di paginazione per indicare che l'elemento sorgente di riferimento è la fonte delle proprietà di interruzione di pagina definite nel contenuto. Tale valore deve essere impostato quando è incluso la paginazione e la sorgente di stampa è nota. Valori validi: paginazione. - + Custom Property Proprietà Personalizzata - + An empty metadata property or attribute you can modify. Una proprietà od un attributo metadato vuoto che è possibile modificare. - + The main title of the epub publication. Only one title may exist. Il titolo principale della pubblicazione epub. Può essercene solo uno. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. Rappresenta il nome di una persona, organizzazione, ecc responsabile della creazione del contenuto di una pubblicazione EPUB. Gli attributi opf:role, opf:scheme and opf:file-as possono essere collegati all'elemento per indicare la funzione che il creatore ha svolto nella creazione del contenuto. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' Rappresenta il nome di una persona, organizzazione, ecc, che ha giocato un ruolo secondario nella creazione del contenuto di una pubblicazione EPUB - + The nature or genre of the content of the resource. La natura o genere del contenuto della risorsa. - + A reference to a resource from which the present publication is derived. Un riferimento a una risorsa da cui deriva la presente pubblicazione. - + A language used in the publication. Choose a RFC5646 value. Una lingua usata nella pubblicazione. Scegliere un valore RFC5646. - - - - + + + + Identifier Identificatore - + Digital Object Identifier Identificativo di Oggetto Digitale - DOI - + International Standard Book Number International Standard Book Number - ISBN - + International Standard Serial Number International Standard Serial Number - ISSN - + Universally Unique Identifier Identificatore Unico Universale (UUI) - + Identifier: Custom Identificatore: Personalizzato - + A custom identifier based on a specified scheme Un identificatore personalizzato basato su di uno schema specifico - + An empty metadata element for you to modify Un elemento metadato vuoto che è possibile modificare. - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. Attributo opzionale specifico della lingua . Utilizza gli stessi codici dc:language. Da non usare con gli elementi di metadati dc:language, dc:date, o dc:identifier. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event Evento - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. Questo attributo è tipicamente aggiunto agli elementi dc:date per specificare il tipo di data: pubblicazione, creazione o modifica. - + Custom Attribute Attributo personalizzato - + An empty metadata attribute you can modify. Un attributo metadato vuoto che è possibile modificare. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ja.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ja.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ja.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ja.ts 2016-03-25 20:56:46.000000000 +0000 @@ -896,17 +896,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. このページは読み込まれて3秒後に表示されなくなります。 - + If your browser does not have javascript enabled, click on the button below. @@ -1968,88 +1968,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11830,604 +11898,608 @@ - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ko.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ko.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ko.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ko.ts 2016-03-25 20:56:46.000000000 +0000 @@ -222,7 +222,7 @@ Default font size to be used for Book View and Preview if no font-size specified in your CSS - + CSS로 글자크기를 지정하지 않았을 때 책 보기 편집 화면에 보이는 기본 글자 크기. @@ -893,17 +893,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. @@ -1963,88 +1963,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -2151,7 +2219,7 @@ Index - + 색인 @@ -2656,7 +2724,7 @@ Index entries loaded from file. - + 색인 항목 불러오기 @@ -2752,7 +2820,7 @@ The Index entries may have been modified. Do you want to save your changes? - + 색인 항목이 수정합니다. 수정된 내용을 저장하시겠습니까? @@ -3117,7 +3185,7 @@ Index - + 색인 @@ -7663,7 +7731,7 @@ &Index Editor... - 차례 편집기...(&I) + 색인 편집기...(&I) @@ -8341,7 +8409,7 @@ &Add To Index Editor - + 색인 편집기에 추가 @@ -8371,7 +8439,7 @@ Generate a new Index HTML file. - + 새로운 색인 HTML 파일 생성 @@ -8749,7 +8817,7 @@ You cannot mark an index at this position or without selecting text. - + 색인 항목을 선택하지 않았거나 색인을 추가할 수 없는 위치입니다. @@ -8759,7 +8827,7 @@ You cannot mark an index at this position. - + 색인을 추가할 수 없는 위치입니다. @@ -11781,604 +11849,608 @@ - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. @@ -12876,7 +12948,7 @@ Preview - + 미리보기 diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_nl.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_nl.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_nl.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_nl.ts 2016-03-25 20:56:46.000000000 +0000 @@ -907,17 +907,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil zendt uw stijlbladgegevens naar de <a href='http://jigsaw.w3.org/css-validator/'>CSS-validatiedienst van W3C</a>. - + This page should disappear once loaded after 3 seconds. Deze pagina zou binnen drie seconden moeten verdwijnen. - + If your browser does not have javascript enabled, click on the button below. Als javascript in uw browser is uitgeschakeld, druk dan op onderstaande knop. @@ -1984,88 +1984,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11861,604 +11929,608 @@ Waarde - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_pl.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_pl.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_pl.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_pl.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil będzie wysyłał dane Arkusza Stylów do <a href='http://jigsaw.w3.org/css-validator/'> Serwisu Sprawdzania W3C</a>. - + This page should disappear once loaded after 3 seconds. Ta strona powinna zniknąć po wczytaniu w ciągu 3 sekund. - + If your browser does not have javascript enabled, click on the button below. Jeżeli twoja przeglądarka ma wyłączoną obsługę javascript, kliknij na przycisk poniżej. @@ -1978,91 +1978,159 @@ Ustawienia Ogólne - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. Wybierz której wersji Epub chcesz używać w Sigilu przy tworzeniu nowych lub pustych plików Epub. - + Create New or Empty Epubs as: Utwórz Nowy lub Pusty Epub jako: - + Epub Version 2. Epub w Wersji 2. - + Version 2 Wersję 2 - + Epub Version 3. Epub w Wersji 3. - + Version 3 Wersję 3 - + Choose when your HTML code is automatically mended. Wybierz, kiedy twój kod HTML ma być automatycznie naprawiany. - + Mend XHTML Source Code On: Naprawa Kodu Źródłowego XHTML przy: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. Napraw w czasie Otwierania pliku Epub lub HTML, oraz podczas przełączania z Widoku Książki do Widoku Kodu. - + Open Otwieraniu - + Mend when saving an Epub. Naprawa w czasie zapisu pliku Epub. - + Save Zapisywaniu - + Determine if Epubs are allowed to access non-multimedia remote resources. Ustal, czy Epub ma dostęp do zdalnych zasobów, innych niż multimedialne. - + Control Access by Epubs to non-multimedia remote resources. Kontrola dostępu Publikacji do zdalnych zasobów, które nie są multimediami. - + Check to allow Epubs to access non-multimedia remote resources. Zaznacz, by zezwolić na zdalny dostęp do zasobów nie będących multimediami. - + Epubs may access all remote resources types. Epub może uzyskać dostęp do wszystkich typów zdalnych zasobów. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -9689,7 +9757,7 @@ Use for a person or organization responsible for the creation of metal slug, or molds made of other materials, used to produce the text and images in printed matter. - Użyj dla osoby lub organizacji odpowiedzialnych za tworzenie brył metalu lub form wykonanych z innych materiałów, używanych do produkcji tekstu i obrazów w drukowanych. + Użyj dla osoby lub organizacji odpowiedzialnych za tworzenie brył metalu lub form wykonanych z innych materiałów, używanych do produkcji tekstu i obrazów drukowanych. @@ -10959,12 +11027,12 @@ Use for a person or organization responsible for the production of plates, usually for the production of printed images and/or text. - Użyj dla osoby odpowiedzialnej za organizację lub produkcję płyty, zwykle do wytwarzania drukowanych obrazów i / lub tekstu. + Użyj dla osoby odpowiedzialnej za organizację lub produkcję płyty, zwykle do wytwarzania drukowanych obrazów i/lub tekstu. Praeses - Praeses + Prowadzący @@ -11014,7 +11082,7 @@ Process contact - Znajomość procesu + Znający procedury @@ -11862,604 +11930,608 @@ Wartość - - + + Author Autor - - + + Represents a primary author of the book or publication Reprezentuje podstawowego autora książki lub publikacji - - + + Subject Temat - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. Dowolne frazy lub słowa opisujące temat w pytaniu. Użyj wielu elementów „temat” gdy ich nie ma. - - + + Description Opis - - + + Description of the publication's content. Opis zawartości publikacji. - - + + Publisher Wydawca - - + + An entity responsible for making the publication available. Podmiot odpowiedzialny za udostępnienie publikacji. - - + + Date: Publication Data: Publikacji - - + + The date of publication. Data publikacji. - - + + Date: Creation Data: Utworzenia - - + + The date of creation. Data powstania dzieła. - + Date: Issued Data: Wydania - - - + + + The date of modification. Data modyfikacji. - - + + Date: Modification Data: Modyfikacji - - + + Type Typ - + Used to indicate that the given EPUB Publication is of a specialized type.. Używana do wskazania, że dana Publikacja EPUB jest typu specjalistycznego... - - + + Format Formatuj - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). Typ nośnika lub wymiary publikacji. Najlepiej jest użyć wartości z kontrolowanego słownictwa (np. typy MIME mediów). - - + + Source Źródło - + Identifies the related resource(s) from which this EPUB Publication is derived. Identyfikuje zasób(y) związane z którego pochodzi ta publikacja EPUB. - - + + Language Język - + Specifies the language of the publication. Select from the dropdown menu Określa język publikacji. Wybierz z listy rozwijalnej - - + + Relation Relacja - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. Odniesienie do powiązanego zasobu. Zalecana praktyką jest identyfikować odwołanie do zasobu poprzez ciąg znaków lub liczb zgodnych z formalnym systemem identyfikacyjnym. - - + + Coverage Reportaż - - + + The extent or scope of the content of the publication's content. Zakres lub dziedzina treści publikacji. - - + + Rights Prawa autorskie - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. Informacje na temat posiadanych praw na publikację. Informacja na temat tego prawa często obejmuje Prawo Własności Intelektualnej (IPR), Prawa Autorskie, i różne Prawa Własności. Jeśli takiego prawa nie ma, nie ma założenia, że można wykorzystać wszelkie posiadane prawa w lub do publikacji. - - + + Creator Autor - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Reprezentuje nazwę osoby, organizacji, itp. odpowiedzialnych za tworzenie zawartości Publikacji EPUB itp. Właściwość roli może być dołączona do elementu wskazującego funkcję, jaką Autor odegrał w tworzeniu treści. - - + + Contributor Współautor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. Reprezentuje nazwę osoby, organizacji, itp odpowiedzialnej za tworzenie treści publikacji EPUB. Właściwość roli może być dołączona do elementu wskazującego funkcję, jaką Autor odegrał w tworzeniu treści. - + Belongs to Collection Należy do Zbioru - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. Identyfikuje nazwę zbioru, do której należy dana publikacja EPUB. Publikacja EPUB może należeć do jednego lub większej ilości zbiorów. - - + + Title Tytuł - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. Tytuł publikacji. Publikacja może mieć tylko jeden główny tytuł, ale może mieć też wiele innych typów tytułów. Obejmuje on [tytuł]; główny, podtytuł, skrócony, zbiór, wydanie, oraz rozszerzony typ tytułów. - + Identifier: DOI Identyfikator: DOI - + Digital Object Identifier associated with the given EPUB publication. Cyfrowy identyfikator obiektu (Digital Object Identifier) związany z daną publikacją EPUB. - + Identifier: ISBN Identyfikator: ISBN - + International Standard Book Number associated with the given EPUB publication. Międzynarodowy znormalizowany numer książki (International Standard Book Number) związany z daną publikacją EPUB. - + Identifier: ISSN Identyfikator: ISSN - + International Standard Serial Number associated with the given EPUB publication. Międzynarodowy standardowy numer seryjny (International Standard Serial Number) związany z daną publikacją EPUB. - + Identifier: UUID Identyfikator: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. Uniwersalny unikatowy identyfikator (Universally Unique Idenitifier) generowany dla tej publikacji EPUB. - - + + Custom Element Element Niestandardowy - + An empty metadata element you can modify. Pusty element metadanych można go zmodyfikować. - - + + Id Attribute Id Atrybutu - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. Opcjonalne, zwykle krótki, unikatowy identyfikator ciągu używany jako atrybut w dokumencie pakietu (ofe). - - + + XML Language Język XML - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. Opcjonalnie, język określania atrybutu. Wykorzystuje te same kody, dc:language. Nie stosować z dc:langauge, dc:date, lub dc:identifier identyfikatorami metadanych. - + Text Direction: rtl Kierunek Tekstu: pdl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Opcjonalny atrybut kierunku tekstu dla tego elementu metadanych. od prawej do lewej (PDL). Nie stosować z dc:language, dc:date, lub dc:identifier identyfikatorami metadanych. - + Text Direction: ltr Kierunek Tekstu: ldp - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. Opcjonalny atrybut kierunku tekstu dla tego elementu metadanych. od lewej do prawej (LDP). Nie stosować z dc:language, dc:date, lub dc:identifier identyfikatorami metadanych. - + Title Type: main Typ Tytułu: główny - + Indicates the associated title is the main title of the publication. Only one main title should exist. Wskazuje, że związany tytuł jest głównym tytułem publikacji. Powinien istnieć tylko jeden główny tytuł. - + Title Type: subtitle Typ Tytułu: podtytuł - + Indicates that the associated title is a subtitle of the publication if one exists.. Wskazuje, że związany tytuł jest podtytułem publikacji. O ile taki istnieje. - + Title Type: short Typ Tytułu: skrócony - + Indicates that the associated title is a shortened title of the publication if one exists. Wskazuje, że związany tytuł jest skróconym tytułem publikacji. O ile taki istnieje... - + Title Type: collection Typ Tytułu: zbiór - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. Wskazuje, że związany tytuł to tytuł zbioru (kolekcji), która zawiera tą publikację, o ile taki istnieje. - + Title Type: edition Typ Tytułu: edycja - + Indicates that the associated title is an edition title for this publications if one exists. Wskazuje, że nazwa związana jest z nazwą tytułu edycji publikacji, o ile taki istnieje. - + Title Type: expanded Typ Tytułu: rozszerzony - + Indicates that the associated title is an expanded title for this publication if one exists. Wskazuje, że nazwa związana jest z rozszerzonym tytułem tej publikacji, o ile taki istnieje. - + Alternate Script Alternatywny Scenariusz - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. Stanowi właściwość alternatywnej ekspresji związanej z wartością w innym języku, i skryptu zidentyfikowanego jako zastępcę - atrybutu języka. - + Alternate Language Alternatywny Język - + Language code for the language used in the associated alternate-script property value. Kod języka, dla języka używanego w powiązanej wartości, właściwości alternatywnego scenariusza. - + Collection Type: set Typ Zbioru: zamknięty - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. Właściwość stosować należy do zbioru (kolekcji). Wskazuje formę lub charakter zbioru. Wartość „zamknięty” powinna być wykorzystywana do skończonego zbioru utworów, które razem tworzą jedną całość intelektualną; zazwyczaj wystawianą razem ale może być sprzedawana jako jednostka. - + Collection Type: series Typ Zbioru: seria - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. Właściwość należy do zbioru. Wskazuje formę lub charakter zbioru. Wartości „serii” powinny być wykorzystywane do sekwencji powiązanych prac, które formalnie są identyfikowane jako Grupa; zazwyczaj rozpoczynane-kończone prace wykonywane są indywidualnie w czasie. - + Display Sequence Kolejność Wyświetlania - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). Wskazuje pozycję numeryczną by wyświetlić bieżące właściwości względem identycznych metadanych właściwości (np., aby wskazać kolejność, w której pokazać wiele tytułów lub wielu autorów). - - + + File as Plik jako - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. Zapewnia znormalizowaną formę powiązanej właściwości do sortowania. Zwykle używa się nazw autorów, twórców i płatników. - + Group Position Pozycja Grupy - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). Wskazuje pozycję numeryczną, w której publikacja EPUB jest uporządkowany w stosunku do innych dzieł należących do tej samej grupy (czy wszystkie Publikacje EPUB, czy nie). - + Identifier Type Identyfikator Typu - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. Wskazuje na formę lub rodzaj identyfikatora. Wartość Identyfikatora Typu jest pobierana z listy kodów lub innych formalnych wyliczeń, atrybut schematu powinien służyć do identyfikacji źródła. - + Meta Authority Metadane Instytucji - + Identifies the party or authority responsible for an instance of package metadata. Identyfikuje imprezę lub organ odpowiedzialny za wystąpienie metadanych pakietu. - - + + Role Rola - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. Opisuje charakter pracy wykonanej przez twórcę lub współautorów (np., że osoba jest Autorem lub Redaktorem pracy). Zazwyczaj używany w układzie „marc:relators” dla kontroli słownictwa. - - + + Scheme Układ - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. Atrybut ten jest zazwyczaj dodawany do dc:identifier, dc:source: dc:creator, lub dc:contributor aby wskazać zastosowany system kontrolowania słownictwa. (np. marc:relators aby określić prawidłowe wartości dla właściwości Roli). - + Source of Pagination Źródło Stronicowania - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. Wskazuje, unikalną cechę dostosowania zasobów źródła, która została utrzymana w danym wydaniu publikacji EPUB. Ta specyfikacja definiuje wartości numeracji stron, aby wskazać, że odwołanie do źródła elementu jest źródłem właściwości podziału strony określonej w treści. Ta wartość powinna być ustawiona, gdy podział na strony jest włączony i znany w źródle wydruku. Prawidłowo values: pagination. - + Custom Property Właściwości Niestandardowe - + An empty metadata property or attribute you can modify. Puste atrybuty lub właściwości metadanych można modyfikować. - + The main title of the epub publication. Only one title may exist. Główny tytuł publikacji epub. Może istnieć tylko jeden tytuł. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. Reprezentuje nazwę osoby, organizacji, itp odpowiedzialnej za stworzenie treści publikacji EPUB. Atrybuty opf:role, opf:scheme i opf:file-as mogą być przywiązane do elementu, aby wskazać funkcję jaką odegrał Autor w tworzeniu treści. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' Reprezentuje nazwę osoby, organizacji, itp. „który grał drugorzędną rolę w tworzeniu treści publikacji EPUB” - + The nature or genre of the content of the resource. Rodzaj lub gatunek zawartości zasobu. - + A reference to a resource from which the present publication is derived. Odniesienie do zasobu, z którego wywodzi się obecna publikacja. - + A language used in the publication. Choose a RFC5646 value. Język używany w publikacji. Wybierz wartość RFC5646. - - - - + + + + Identifier Identyfikator - + Digital Object Identifier Identyfikator Dokumentu Elektronicznego - + International Standard Book Number Międzynarodowy Znormalizowany Numer Książki - + International Standard Serial Number Międzynarodowy Znormalizowany Numer Seryjny - + Universally Unique Identifier Uniwersalny Unikalny Identyfikator - + Identifier: Custom Identyfikator: Niestandardowy - + A custom identifier based on a specified scheme Niestandardowy identyfikator na podstawie określonego układu - + An empty metadata element for you to modify Pusty element metadanych można zmodyfikować - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. Opcjonalne, określając atrybut języka. Używa tych samych kodów jako dc:language. Nie do użytku z elementami metadanych dc:language, dc:date, lub dc:identifier. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event Wydarzenie - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. Ten atrybut jest zazwyczaj dodawany do elementów dc:date, aby określić typ danych: publikacja, utworzenie, lub modyfikacja. - + Custom Attribute Atrybut Niestandardowy - + An empty metadata attribute you can modify. Pusty atrybut metadanych można zmodyfikować. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_pt_BR.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_pt_BR.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_pt_BR.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_pt_BR.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil enviará as informações de sua folha de estilos para o <a href='http://jigsaw.w3.org/css-validator/'> Serviço de Validação da W3C</a>. - + This page should disappear once loaded after 3 seconds. Esta página irá desaparecer 3 segundos depois de carregada. - + If your browser does not have javascript enabled, click on the button below. Se seu navegador não estiver com o javascript ativado, clique no botão abaixo. @@ -1974,88 +1974,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11828,604 +11896,608 @@ Valor - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ru.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ru.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_ru.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_ru.ts 2016-03-25 20:56:46.000000000 +0000 @@ -903,17 +903,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil пошлет ваши данные CSS в <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. Эта страница должна исчезнуть, после загрузки, через 3 секунды. - + If your browser does not have javascript enabled, click on the button below. Если в вашем браузере отключен javascript, нажмите кнопку ниже. @@ -1977,88 +1977,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11851,604 +11919,608 @@ Значение - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_sk.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_sk.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_sk.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_sk.ts 2016-03-25 20:56:46.000000000 +0000 @@ -890,17 +890,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. @@ -1959,88 +1959,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11714,604 +11782,608 @@ Hodnota - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_sr.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_sr.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_sr.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_sr.ts 2016-03-25 20:56:46.000000000 +0000 @@ -898,17 +898,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil ће слати ваше податке стила на <a href='http://jigsaw.w3.org/css-validator/'>W3C валидациони сервис</a>. - + This page should disappear once loaded after 3 seconds. Ова страница би требала нестати када се учита после 3 секунде. - + If your browser does not have javascript enabled, click on the button below. Ако ваш прегледач нема јаваскрипт омогућен, кликните на дугме испод. @@ -1967,88 +1967,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11804,604 +11872,608 @@ Вредност - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_tr_TR.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_tr_TR.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_tr_TR.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_tr_TR.ts 2016-03-25 20:56:46.000000000 +0000 @@ -889,17 +889,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. - + This page should disappear once loaded after 3 seconds. - + If your browser does not have javascript enabled, click on the button below. @@ -1958,88 +1958,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11714,604 +11782,608 @@ Değer - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_zh_CN.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_zh_CN.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_zh_CN.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_zh_CN.ts 2016-03-25 20:56:46.000000000 +0000 @@ -904,17 +904,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil将发送您的样式表数据到 <a href='http://jigsaw.w3.org/css-validator/'>W3C验证服务</a>。 - + This page should disappear once loaded after 3 seconds. 加载这个页面后3秒后消失。 - + If your browser does not have javascript enabled, click on the button below. 如果您的浏览器没有启用javascript,点击下面的按钮。 @@ -1980,88 +1980,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11857,604 +11925,608 @@ - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_zh_TW.ts sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_zh_TW.ts --- sigil-0.9.4+dfsg/src/Resource_Files/ts/sigil_zh_TW.ts 2016-03-12 18:45:52.000000000 +0000 +++ sigil-0.9.5+dfsg/src/Resource_Files/ts/sigil_zh_TW.ts 2016-03-25 20:56:46.000000000 +0000 @@ -899,17 +899,17 @@ CSSResource - + Sigil will send your stylesheet data to the <a href='http://jigsaw.w3.org/css-validator/'>W3C Validation Service</a>. Sigil 會將您的樣式表資料送到 <a href='http://jigsaw.w3.org/css-validator/'>W3C 驗證服務</a>。 - + This page should disappear once loaded after 3 seconds. 此頁面會在載入後三秒消失。 - + If your browser does not have javascript enabled, click on the button below. 若是您的瀏覽器沒有開啟 javascript 支援,請按下方的按鍵。 @@ -1971,88 +1971,156 @@ - + Choose which version of Epub to use when creating new or empty Epubs in Sigil. - + Create New or Empty Epubs as: - + Epub Version 2. - + Version 2 - + Epub Version 3. - + Version 3 - + Choose when your HTML code is automatically mended. - + Mend XHTML Source Code On: - + Mend when opening an Epub or HTML file, and when switching from Book View to Code View. - + Open - + Mend when saving an Epub. - + Save - + Determine if Epubs are allowed to access non-multimedia remote resources. - + Control Access by Epubs to non-multimedia remote resources. - + Check to allow Epubs to access non-multimedia remote resources. - + Epubs may access all remote resources types. + + + What CSS level to specify for W3C stylesheet validation tool (EPUB2) + + + + + EPUB2 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB2 + + + + + + CSS Level 2 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB2 + + + + + + CSS Level 2.1 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB2 + + + + + + CSS Level 3 + + + + + What CSS Level to specify for W3C stylesheet validation tool (EPUB3) + + + + + EPUB3 W3C Stylesheet Validation Level: + + + + + W3C stylesheet validator will use CSS level 2 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 2.1 for EPUB3 + + + + + W3C stylesheet validator will use CSS level 3 for EPUB3 + + GuideItems @@ -11832,604 +11900,608 @@ - - + + Author - - + + Represents a primary author of the book or publication - - + + Subject - - + + An arbitrary phrase or keyword describing the subject in question. Use multiple 'subject' elements if needed. - - + + Description - - + + Description of the publication's content. - - + + Publisher - - + + An entity responsible for making the publication available. - - + + Date: Publication - - + + The date of publication. - - + + Date: Creation - - + + The date of creation. - + Date: Issued - - - + + + The date of modification. - - + + Date: Modification - - + + Type - + Used to indicate that the given EPUB Publication is of a specialized type.. - - + + Format - - + + The media type or dimensions of the publication. Best practice is to use a value from a controlled vocabulary (e.g. MIME media types). - - + + Source - + Identifies the related resource(s) from which this EPUB Publication is derived. - - + + Language - + Specifies the language of the publication. Select from the dropdown menu - - + + Relation - - + + A reference to a related resource. The recommended best practice is to identify the referenced resource by means of a string or number conforming to a formal identification system. - - + + Coverage - - + + The extent or scope of the content of the publication's content. - - + + Rights - - + + Information about rights held in and over the publication. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the Rights element is absent, no assumptions may be made about any rights held in or over the publication. - - + + Creator - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - - + + Contributor - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication. The role property can be attached to the element to indicate the function the creator played in the creation of the content. - + Belongs to Collection - + Identifies the name of a collection to which the EPUB Publication belongs. An EPUB Publication may belong to one or more collections. - - + + Title - + A title of the publication. A publication may have only one main title but may have numerous other title types. These include main, subtitle, short, collection, edition, and expanded title types. - + Identifier: DOI - + Digital Object Identifier associated with the given EPUB publication. - + Identifier: ISBN - + International Standard Book Number associated with the given EPUB publication. - + Identifier: ISSN - + International Standard Serial Number associated with the given EPUB publication. - + Identifier: UUID - + A Universally Unique Idenitifier generated for this EPUB publication. - - + + Custom Element - + An empty metadata element you can modify. - - + + Id Attribute - - + + Optional, typically short, unique identifier string used as an attribute in the Package (opf) document. - - + + XML Language - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:langauge, dc:date, or dc:identifier metadata elements. - + Text Direction: rtl - + Optional text direction attribute for this metadata item. right-to-left (rtl). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Text Direction: ltr - + Optional text direction attribute for this metadata item. left-to-right (ltr). Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + Title Type: main - + Indicates the associated title is the main title of the publication. Only one main title should exist. - + Title Type: subtitle - + Indicates that the associated title is a subtitle of the publication if one exists.. - + Title Type: short - + Indicates that the associated title is a shortened title of the publication if one exists. - + Title Type: collection - + Indicates that the associated title is the title of a Tcollection that includes this publication belongs to if one exists. - + Title Type: edition - + Indicates that the associated title is an edition title for this publications if one exists. - + Title Type: expanded - + Indicates that the associated title is an expanded title for this publication if one exists. - + Alternate Script - + Provides an alternate expression of the associated property value in a language and script identified by an alternate-language attribute. - + Alternate Language - + Language code for the language used in the associated alternate-script property value. - + Collection Type: set - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'set' should be used for a finite collection of works that together constitute a single intellectual unit; typically issued together and able to be sold as a unit.. - + Collection Type: series - + Property used with belongs-to-collection. Indicates the form or nature of a collection. The value 'series'' should be used for asequence of related works that are formally identified as a group; typically open-ended with works issued individually over time. - + Display Sequence - + Indicates the numeric position in which to display the current property relative to identical metadata properties (e.g., to indicate the order in which to render multiple titles or multiple authors). - - + + File as - - + + Provides the normalized form of the associated property for sorting. Typically used with author, creator, and contributor names. - + Group Position - + Indicates the numeric position in which the EPUB Publication is ordered relative to other works belonging to the same group (whether all EPUB Publications or not). - + Identifier Type - + Indicates the form or nature of an identifier. When the identifier-type value is drawn from a code list or other formal enumeration, the scheme attribute should be used to identify its source. - + Meta Authority - + Identifies the party or authority responsible for an instance of package metadata. - - + + Role - - + + Describes the nature of work performed by a creator or contributor (e.g., that the person is the author or editor of a work). Typically used with the marc:relators scheme for a controlled vocabulary. - - + + Scheme - - + This attribute is typically added to dc:identifier, dc:source: dc:creator, or dc:contributor to indicate the controlled vocabulary system employed. (e.g. marc:relators to specifiy valid values for the role property. - + Source of Pagination - + Indicates a unique aspect of an adapted source resource that has been retained in the given Rendition of the EPUB Publication. This specification defines the pagination value to indicate that the referenced source element is the source of the pagebreak properties defined in the content. This value should be set whenever pagination is included and the print source is known. Valid values: pagination. - + Custom Property - + An empty metadata property or attribute you can modify. - + The main title of the epub publication. Only one title may exist. - + Represents the name of a person, organization, etc. responsible for the creation of the content of an EPUB Publication. The attributes opf:role, opf:scheme and opf:file-as can be attached to the element to indicate the function the creator played in the creation of the content. - + Represents the name of a person, organization, etc. that played a secondary role in the creation of the content of an EPUB Publication' - + The nature or genre of the content of the resource. - + A reference to a resource from which the present publication is derived. - + A language used in the publication. Choose a RFC5646 value. - - - - + + + + Identifier - + Digital Object Identifier - + International Standard Book Number - + International Standard Serial Number - + Universally Unique Identifier - + Identifier: Custom - + A custom identifier based on a specified scheme - + An empty metadata element for you to modify - + Optional, language specifying attribute. Uses same codes as dc:language. Not for use with dc:language, dc:date, or dc:identifier metadata elements. - + + This attribute is typically added to dc:identifier to indicate the type of identifier being used: DOI, ISBN, ISSN, or UUID. + + + + Event - + This attribute is typically added to dc:date elements to specify the date type: publication, creation, or modification. - + Custom Attribute - + An empty metadata attribute you can modify. diff -Nru sigil-0.9.4+dfsg/src/ResourceObjects/CSSResource.cpp sigil-0.9.5+dfsg/src/ResourceObjects/CSSResource.cpp --- sigil-0.9.4+dfsg/src/ResourceObjects/CSSResource.cpp 2016-01-24 17:32:06.000000000 +0000 +++ sigil-0.9.5+dfsg/src/ResourceObjects/CSSResource.cpp 2016-03-22 20:17:36.000000000 +0000 @@ -25,6 +25,7 @@ #include #include "Misc/Utility.h" +#include "Misc/SettingsStore.h" #include "ResourceObjects/CSSResource.h" static const QString W3C_HTML_FORM = "" @@ -32,12 +33,12 @@ "

%1

" "

%2

" "

%3

" - "

" + "

" "
" "
" "

" " " - " " + " " "
" "
" "