From 66d5f1feec48dbcac0308d2cc76717ff4e909e3d Mon Sep 17 00:00:00 2001 From: "kujiu (@rincevent)" Date: Thu, 18 Nov 2021 23:35:00 +0100 Subject: [PATCH] Move docs --- docs/Makefile | 20 - docs/make.bat | 36 - docs/make.sh | 9 - docs/requirements.txt | 19 - docs/source/_static/favicon.ico | Bin 85886 -> 0 bytes docs/source/_static/logo.png | Bin 5847 -> 0 bytes docs/source/_static/logo.svg | 147 -- docs/source/about.rst | 34 - docs/source/administration/index.rst | 34 - docs/source/conf.py | 258 ---- docs/source/contributing.rst | 35 - docs/source/developing/index.rst | 5 - docs/source/history.rst | 21 - docs/source/index.rst | 84 -- docs/source/locale/fr/LC_MESSAGES/about.po | 167 --- .../locale/fr/LC_MESSAGES/administration.po | 77 - .../locale/fr/LC_MESSAGES/contributing.po | 104 -- .../locale/fr/LC_MESSAGES/developing.po | 28 - docs/source/locale/fr/LC_MESSAGES/history.po | 47 - docs/source/locale/fr/LC_MESSAGES/index.po | 168 --- docs/source/locale/fr/LC_MESSAGES/roadmap.po | 24 - .../locale/fr/LC_MESSAGES/specifications.po | 1259 ----------------- docs/source/locale/fr/LC_MESSAGES/user.po | 28 - docs/source/locale/nl/LC_MESSAGES/about.po | 162 --- .../locale/nl/LC_MESSAGES/administration.po | 69 - .../locale/nl/LC_MESSAGES/contributing.po | 108 -- .../locale/nl/LC_MESSAGES/developing.po | 28 - docs/source/locale/nl/LC_MESSAGES/history.po | 47 - docs/source/locale/nl/LC_MESSAGES/index.po | 145 -- docs/source/locale/nl/LC_MESSAGES/roadmap.po | 24 - .../locale/nl/LC_MESSAGES/specifications.po | 1167 --------------- docs/source/locale/nl/LC_MESSAGES/user.po | 28 - docs/source/refs.bib | 923 ------------ docs/source/roadmap.rst | 2 - docs/source/specifications/accessibility.rst | 10 - docs/source/specifications/accounting.rst | 22 - docs/source/specifications/communication.rst | 33 - docs/source/specifications/documents.rst | 156 -- docs/source/specifications/help.rst | 28 - docs/source/specifications/index.rst | 23 - docs/source/specifications/learning.rst | 10 - docs/source/specifications/projects.rst | 10 - docs/source/specifications/quality_risk.rst | 24 - docs/source/specifications/security.rst | 23 - docs/source/specifications/services.rst | 17 - docs/source/specifications/stocks.rst | 36 - .../source/specifications/synchronization.rst | 22 - docs/source/user/index.rst | 5 - docs/update-translation.sh | 4 - 49 files changed, 5730 deletions(-) delete mode 100644 docs/Makefile delete mode 100644 docs/make.bat delete mode 100755 docs/make.sh delete mode 100644 docs/requirements.txt delete mode 100644 docs/source/_static/favicon.ico delete mode 100644 docs/source/_static/logo.png delete mode 100644 docs/source/_static/logo.svg delete mode 100644 docs/source/about.rst delete mode 100644 docs/source/administration/index.rst delete mode 100644 docs/source/conf.py delete mode 100644 docs/source/contributing.rst delete mode 100644 docs/source/developing/index.rst delete mode 100644 docs/source/history.rst delete mode 100644 docs/source/index.rst delete mode 100644 docs/source/locale/fr/LC_MESSAGES/about.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/administration.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/contributing.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/developing.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/history.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/index.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/roadmap.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/specifications.po delete mode 100644 docs/source/locale/fr/LC_MESSAGES/user.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/about.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/administration.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/contributing.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/developing.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/history.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/index.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/roadmap.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/specifications.po delete mode 100644 docs/source/locale/nl/LC_MESSAGES/user.po delete mode 100644 docs/source/refs.bib delete mode 100644 docs/source/roadmap.rst delete mode 100644 docs/source/specifications/accessibility.rst delete mode 100644 docs/source/specifications/accounting.rst delete mode 100644 docs/source/specifications/communication.rst delete mode 100644 docs/source/specifications/documents.rst delete mode 100644 docs/source/specifications/help.rst delete mode 100644 docs/source/specifications/index.rst delete mode 100644 docs/source/specifications/learning.rst delete mode 100644 docs/source/specifications/projects.rst delete mode 100644 docs/source/specifications/quality_risk.rst delete mode 100644 docs/source/specifications/security.rst delete mode 100644 docs/source/specifications/services.rst delete mode 100644 docs/source/specifications/stocks.rst delete mode 100644 docs/source/specifications/synchronization.rst delete mode 100644 docs/source/user/index.rst delete mode 100755 docs/update-translation.sh diff --git a/docs/Makefile b/docs/Makefile deleted file mode 100644 index 56241b6..0000000 --- a/docs/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Minimal makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -SPHINXPROJ = Contesetlgendesvol1 -SOURCEDIR = source -BUILDDIR = build - -# Put it first so that "make" without argument is like "make help". -help: - @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) - -.PHONY: help Makefile - -# Catch-all target: route all unknown targets to Sphinx using the new -# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). -%: Makefile - @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) \ No newline at end of file diff --git a/docs/make.bat b/docs/make.bat deleted file mode 100644 index 2e3ac25..0000000 --- a/docs/make.bat +++ /dev/null @@ -1,36 +0,0 @@ -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR=source -set BUILDDIR=build -set SPHINXPROJ=Contesetlgendesvol1 - -if "%1" == "" goto help - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ - exit /b 1 -) - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% - -:end -popd diff --git a/docs/make.sh b/docs/make.sh deleted file mode 100755 index 2353c40..0000000 --- a/docs/make.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env bash - -make html -make -e SPHINXOPTS="-D language='fr'" -e BUILDDIR=build/fr html -make -e SPHINXOPTS="-D language='nl'" -e BUILDDIR=build/nl html - -make gemini -make -e SPHINXOPTS="-D language='fr'" -e BUILDDIR=build/fr gemini -make -e SPHINXOPTS="-D language='nl'" -e BUILDDIR=build/nl gemini diff --git a/docs/requirements.txt b/docs/requirements.txt deleted file mode 100644 index a3578a9..0000000 --- a/docs/requirements.txt +++ /dev/null @@ -1,19 +0,0 @@ -sphinxcontrib-bibtex -sphinx-galleria -pybtex-apa-style -sphinxcontrib-actdiag -sphinxcontrib-blockdiag -sphinxcontrib-nwdiag -sphinxcontrib-seqdiag -sphinx-issues -sphinx-sitemap -sphinxemoji -sphinx-git -sphinx-intl -sphinxcontrib-bibtex -reportlab -ablog -pybtex -#sphinx-storymaker -sphinx-fasvg -sphinx-nervproject-theme diff --git a/docs/source/_static/favicon.ico b/docs/source/_static/favicon.ico deleted file mode 100644 index 83008c0d5e84bc961e3c3db5dc32256966df7195..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85886 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 diff --git a/docs/source/_static/logo.png b/docs/source/_static/logo.png deleted file mode 100644 index 7fce2f3a649f47e38c96d723c1ca032f6c4b5752..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5847 zcmV;|7AWb7P)>>Gbjwpy~7ekCK$*cuuDN#a?gRhCe-)-K1FgQN~3hpqa}{`%z}Sn}JOO!3eGVGD-t2O{aE=t)5kjXWsfE z0IHR5BM{XBDlFV$K9kn-4#L>|Ah;e3y5=zJU%saqKox-PjIl4xX7je1nwn#J)=6!m zQb2`8PHTh5H-$0s907*uU7t4AzkE;VzZif@LdXVD6xX`l?h;&N5h|(#^u)ri<1DtO zM*utvV4&Xh38ftYg>neMCxRgS#p!gGYEUKBi5daTc)xNYMD`{K9D3KKBRB*UOci5n zNgxndQD0x*pjMsK#_$4~{=v@vBw(ITz^3V4m(GwVpf(yAW6Mn@(~C~0^Qh8wQX4_< z3WVdC_bR3e0h2o##1jEFLdcVp(t5ky{>RMBOv81};V@(bDqOxLzJc|e55k_*yDn0Y z8G%Ca5ki&_LjK3;be>eAKs7O31e(60%+WxScSM_b6eNx@_Bf^VYlp+}6b$$s1!Jhn z%~)PG#v}?`!H}bOT?{}k0Do{e9A8~}>7}Feu1rT5MnE&(E58*GHZ!2N-gPk;qXa=H z$;!%lH6tSbw8X`&~ba-PT-Z8Dj*=j7xl_q>xt zG#60e@-6WYy{iZjdT8zYB4wy3id(a@voF)bx#j{ob|&zV$r5MS3DGE}Kc%!dD=TZf z){Zq5&^@!4%uPt@bDNevyAa8Yu?=>+eXN#FH51TvQ~o=@_mJ%0Xyvbql1KH^Bl%U zeg|M=zl_U~)MubB5y0>BVAuM0V-e^=Mp>=aLZu5;R6to-S=j)l13=nk`MM^tN4_q@ zftoM7dJ=sBjIn3!c6+XpWhyBk!Wer4fW?~79Rr4qP%Jr>o5WVGe;2-{le+mgAZ9|y zn^5riE5!t4x7+UnkPiSua>l`IvFhH1_Phqk5JDCVA3i);iLw+CP+VMGA%Ok>V2MvepTQXr1fsch zMA^Ef@HL&%&3`CKJ-SDF$s;ATwYBv*B?^jIKsh-%sQ?~s`@4U7F3cvA=J`*!@6X@j z!HzZW7$yfQ{&X=G{B8!W9F?bA^351~BqJjuCDL*t7LX{4GZ3^KCpA4s^U)X2DCnTO z4Ew6K8e$Y?wU}^2{%9_JPsz4=Fj#eS}c~QA}u7MTBoO{Cm|^M0KkBu zxw=Fjo(NF7W(isv)f<&@!{~V%I%ELm&wUJQK6nkc-FUUuLV6-MH@9ab1w>R^tJOLk zK+^fY;}enGcd#KN5CF8cc(8r-V%;Oq*-gqWv>}7~;`vz*qiD(Rad~d0#BV}2JpzHi zW04dfTR_>_+1&{tPXzxjx$hvD1Y+0-1ONwIJFs`x=Q>9qu|u;D9fTE&=HP|dzd)~K zP1YSu&&$i}Cii670%D9!MaVk#

eEF67>aDfw*axvos7`#?cmSbIjmFzNcS`0Tys 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 diff --git a/docs/source/_static/logo.svg b/docs/source/_static/logo.svg deleted file mode 100644 index b35c864..0000000 --- a/docs/source/_static/logo.svg +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - 2019 - - - Timothée Giet - - - - - - - - - - - - diff --git a/docs/source/about.rst b/docs/source/about.rst deleted file mode 100644 index 8535e77..0000000 --- a/docs/source/about.rst +++ /dev/null @@ -1,34 +0,0 @@ -About Nerv Tales Network -======================== - -Nerv Project ASBL develops Nerv Tales Network for -it's internal usage and all authorized entities for -work adaptations. We want to give an open-source -and free of charge software to help all people and -foundations. - - -====================== ==================== -Details Nerv Project ASBL -====================== ==================== -Contact contact AT nerv-project.eu -Status ASBL -Address | Rue Longue 27 Bte K10 - | 1420 Eigenbrakel - | Belgium -Phone +32 (0)2 319 888 0 -Enterprise 0756.741.342 -VAT BE0756741342 -Editor number KBR 15066 -Publication Nerv Project ASBL -Production Nerv Project ASBL -Webmaster Nerv Project ASBL -Author Nerv Project ASBL except expressly set out -Video Nerv Project ASBL -Hosting IT4Freedom -IBAN BE02 7512 1068 4040 -BIC AXABBE22 -====================== ==================== - -Please contact us if you want to donate, as we -need some informations to create your invoice. diff --git a/docs/source/administration/index.rst b/docs/source/administration/index.rst deleted file mode 100644 index 55773e1..0000000 --- a/docs/source/administration/index.rst +++ /dev/null @@ -1,34 +0,0 @@ -Administration manual -===================== - -.. danger:: - - Please read this documentation before installing. - Nerv Tales Network uses encryption at multiple - levels. You need to backup database and keys. - You'll lost all your data if you lost keys. - -.. danger:: - - Do not use same process and same servers to - manage, backup, restore, control, provide or - use the core server and the security server. - Sensible and private data can not be read in - a compromised database without keys to unencrypt. - Separate all tools avoid compromising data and - keys in same time. - - Using same server or same bastion for data and - for key management is prohibited in some cases. - -.. danger:: - - You have to assign Data Protection Officier and - Security Officier roles before using software. - You can have at most two security officiers. DPO - and SO can be the same person but DPO and SO can - not be in IT or management team (except some - legal cases). - -Nothing here. Sorry, we're working on the first -version of software. diff --git a/docs/source/conf.py b/docs/source/conf.py deleted file mode 100644 index ec0901f..0000000 --- a/docs/source/conf.py +++ /dev/null @@ -1,258 +0,0 @@ -# -*- coding: utf-8 -*- -import os - -project = 'Nerv Tales Network Documentation' -basename = 'nervtn' -project_uid = basename # ISBN, etc. -baseurl = 'https://tn.nerv-project.eu' -copyright = '2021, Nerv Project ASBL' -author = 'Nerv Project ASBL' -publisher = 'Nerv Project ASBL' -site_url = 'https://tn.nerv-project.eu/' -vcs_uri = "https://procrastinator.nerv-project.eu/" -use_bibtex = True -use_git = True -html_favicon = '_static/favicon.ico' -language = 'en' - -version = "0.1" -release = "0.1" - -if use_git: - from git import Repo - repository_name = 'nerv-project/' - repository_name += basename - - repo = Repo( - os.path.join( - os.path.dirname(os.path.realpath(__file__)), - '..', '..' - ) - ) - repo.config_reader() - - if not repo.head.is_detached: - version = repo.head.ref.name - release = version + ' [' + repo.commit().hexsha[:20] + ']' - - repository_uri = vcs_uri + repository_name - issues_uri = repository_uri + "/issues/{issue}" - issues_pr_uri = repository_uri + "/merge_requests/{pr}" - issues_commit_uri = repository_uri + "/commit/{commit}" - issues_user_uri = vcs_uri + "/{user}" - -extensions = [ - 'sphinxemoji.sphinxemoji', - 'sphinxcontrib.actdiag', - 'sphinxcontrib.blockdiag', - 'sphinxcontrib.nwdiag', - 'sphinxcontrib.seqdiag', - 'sphinx_galleria', - 'sphinx.ext.extlinks', - 'sphinx.ext.intersphinx', - 'sphinx.ext.todo', - 'sphinx_issues', - 'sphinx_sitemap', - 'sphinx_fasvg', -] - -if use_git: - extensions.append('sphinx_git') - -if use_bibtex: - extensions.append('sphinxcontrib.bibtex') - -locale_dirs = ['locale/'] - -templates_path = ['_templates'] - -source_suffix = '.rst' -master_doc = 'index' - -exclude_patterns = [] -pygments_style = 'sphinx' - - -html_logo = '_static/logo.svg' -html_theme = 'nervproject' -html_theme_options = { - "logoalt": project, - "social": [ - ('solid', 'building', 'BCE 0756.741.342', 'https://kbopub.economie.fgov.be/kbopub/toonondernemingps.html?ondernemingsnummer=756741342'), - ('solid', 'receipt', 'TVA BE0756741342', 'https://kbopub.economie.fgov.be/kbopub/toonondernemingps.html?ondernemingsnummer=756741342'), - ('solid', 'books', 'KBR Éditeur 15066', 'https://www.kbr.be'), - ('brands', 'twitter', 'twitter', 'http://twitter.com/@nerv_project'), - ('solid', 'mug-hot', 'gitea', 'https://procrastinator.nerv-project.eu/nerv-project/nervtn'), - ('solid', 'hashtag', 'xmpp', 'xmpp:technique@clac.nerv-project.eu'), - ('regular', 'comments', 'movim', 'https://clac.nerv-project.eu/'), - ('solid', 'paragraph', 'gemini', 'gemini://tales.nerv-project.eu'), - ('solid', 'rss', 'rss', 'https://www.nerv-project.eu/blog/atom.xml'), - ], - 'external_languages': [ - # ('code', 'name', 'baseurl'), - ('en', 'en', 'https://tn.nerv-project.eu'), - ('fr', 'fr', 'https://fr.tn.nerv-project.eu'), - ('nl', 'nl', 'https://nl.tn.nerv-proect.eu'), - ], - "twitter_user": "nerv_project", - "fathom": { - 'url': '//casanabo.nerv-project.eu', - 'id': 'BJLEM', - }, - "license": { - 'type': 'EUPL-1.2', - 'text': 'EUPL-1.2', - 'subtype': '', - 'version': '', - 'url': 'https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12' - } -} -html_static_path = ['_static'] -html_sidebars = { - '**': [ - 'about.html', - 'postcard.html', 'util/sidetoc.html', - 'recentposts.html', 'tagcloud.html', - 'categories.html', 'archives.html', - 'social.html', - 'util/searchbox.html', - ], -} -html_baseurl = baseurl - -htmlhelp_basename = basename - -pyppeteer_pdf_options = { - 'printBackground': True, - 'format': 'A4', - 'margin': { - 'top': '0mm', - 'bottom': '0mm', - 'left': '0mm', - 'right': '0mm' - } -} - -latex_engine = 'xelatex' -latex_toplevel_sectioning = 'chapter' -latex_show_urls = 'footnote' -latex_elements = { - # 'figure_align': 'htbp', - # 'extraclassoptions': '', - 'papersize': 'a4paper', - 'pointsize': '12pt', - 'extraclassoptions': 'twoside', - 'fontpkg': r''' - \defaultfontfeatures{Ligatures=TeX} - \setmainfont{Luciole} - \setsansfont{Luciole} - ''' -} -latex_show_pagerefs = True -latex_documents = [ - (master_doc, basename + '.tex', project, - author, 'book'), -] - - -man_pages = [ - (master_doc, basename.lower(), project, [author], 1) -] - - -texinfo_documents = [ - (master_doc, basename, project, - author, basename, '', - 'Miscellaneous'), -] - - -epub_title = project -epub_author = author -epub_publisher = publisher -epub_copyright = copyright - -epub_identifier = project_uid -epub_uid = '' -epub_exclude_files = [ - 'index.xhtml', - 'search.xhtml', - 'blog.xhtml', - 'submit_success.xhtml', - 'contact.xhtml', - '403.xhtml', - '404.xhtml', - 'blog/archive.xhtml', - 'blog/category.xhtml', - 'blog/drafts.xhtml', - 'blog/author.xhtml', - 'blog/language.xhtml', - 'blog/location.xhtml', - 'blog/location/braine-lalleud.xhtml', - 'blog/language/francais.xhtml', - 'blog/author/kujiu.xhtml', - 'blog/2014.xhtml', - 'blog/2015.xhtml', - 'blog/2016.xhtml', - 'blog/2017.xhtml', - 'blog/2018.xhtml', - 'blog/2019.xhtml', - 'blog/2020.xhtml', - 'blog/2021.xhtml', - 'blog/2022.xhtml', - 'blog/2023.xhtml', - 'blog/2024.xhtml', - 'google82f190054a773ed9.xhtml', - 'nav.xhtml', -] -epub_theme = 'epub' -epub_show_urls = 'footnote' - -diag_antialias = True -diag_transparency = True -diag_html_image_format = "SVG" -diag_latex_image_format = "PDF" -diag_fontpath = os.path.dirname(os.path.realpath(__file__)) -diag_fontpath = os.path.join(diag_fontpath, '_static', 'biolinumrah.ttf') -diag_debug = False - -actdiag_antialias = diag_antialias -actdiag_transparency = diag_transparency -actdiag_html_image_format = diag_html_image_format -actdiag_latex_image_format = diag_latex_image_format -actdiag_fontpath = diag_fontpath -actdiag_debug = diag_debug - -blockdiag_antialias = diag_antialias -blockdiag_transparency = diag_transparency -blockdiag_html_image_format = diag_html_image_format -blockdiag_fontpath = diag_fontpath -blockdiag_latex_image_format = diag_latex_image_format -blockdiag_debug = diag_debug - -nwdiag_antialias = diag_antialias -nwdiag_transparency = diag_transparency -nwdiag_html_image_format = diag_html_image_format -nwdiag_latex_image_format = diag_latex_image_format -nwdiag_fontpath = diag_fontpath -nwdiag_debug = diag_debug - -seqdiag_antialias = diag_antialias -seqdiag_transparency = diag_transparency -seqdiag_html_image_format = diag_html_image_format -seqdiag_latex_image_format = diag_latex_image_format -seqdiag_fontpath = diag_fontpath -seqdiag_debug = diag_debug - - -if use_bibtex: - from pybtex.style import formatting - from pybtex.richtext import Text, Tag - - class NervPybtexStyle(formatting.BaseStyle): - def format_article(self, entry): - return Text(Tag('em', entry.fields['key'])) - - bibtex_bibfiles = ['refs.bib'] - bibtex_default_style = 'unsrtalpha' - bibtex_reference_style = 'label' diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst deleted file mode 100644 index 9d1707a..0000000 --- a/docs/source/contributing.rst +++ /dev/null @@ -1,35 +0,0 @@ -Contributing -============ - -How to contribute? -~~~~~~~~~~~~~~~~~~ - -Before contributing, you must accept your work will be -published with EUPL-1.2 license or newer version. You -keep intellectual property of your contribution. - -You can join us on XMPP, on -`technique@clac.nerv-project.eu `_ -channel. - -You can find all tickets (not only technical) in -`our gitea instance `_. - -Where's the source code? -~~~~~~~~~~~~~~~~~~~~~~~~ - -All code is in -`our git repository `_. - -Can I contribute if I'm not a developer? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Of course, yes! We need a lot of competencies, like: - -- translating; -- testing; -- specifying interfaces; -- managing community; -- writing manuals; -- helping users; -- and all you can do! diff --git a/docs/source/developing/index.rst b/docs/source/developing/index.rst deleted file mode 100644 index ff73dd2..0000000 --- a/docs/source/developing/index.rst +++ /dev/null @@ -1,5 +0,0 @@ -Developing manual -================= - -Nothing here. Sorry, we're working on the first -version of software. diff --git a/docs/source/history.rst b/docs/source/history.rst deleted file mode 100644 index d8f5e2e..0000000 --- a/docs/source/history.rst +++ /dev/null @@ -1,21 +0,0 @@ -Document history -================ - -Current version -^^^^^^^^^^^^^^^ - -These informations are automatically generated -by git. - -.. git_commit_detail:: - :branch: - :commit: - :uncommitted: - :untracked: - :sha_length: 20 - -Versions log -^^^^^^^^^^^^ - -.. git_changelog:: - :revisions: 1000000 diff --git a/docs/source/index.rst b/docs/source/index.rst deleted file mode 100644 index 9f1731e..0000000 --- a/docs/source/index.rst +++ /dev/null @@ -1,84 +0,0 @@ -Nerv Tales Network Documentation -################################ - -Nerv Tales Network is a free software to manage all -aspects about books. It fits needs of writers, -editors, adaptation to people with specific needs, -libraries, book shops, online libraries and book -shops, museums, schools, ebooks distributors and -readers. It manages: - -- Accessibility -- Documents -- Communication -- Stocks and items -- Projects -- Accounting -- Risks and objectives -- Learning and documentary surveillance -- On-line services -- Help and consultancy -- High security and confidentiality -- Synchronization - -.. note:: - - You can also use Nerv Tales Network on other - applications if it fits your needs. - -.. danger:: - - Even if Nerv Tales Network have enough features - and security systems, it can't be used in the - following cases: - - - classified documents management and storage; - - health management except for entities - authorized to deliver adaptations of work of - art; - - any activity where the software need an - agreement, a certification, an habilitation, - an audit or other administrative stuff. - - However, you can use Nerv Tales Network in these - cases if you pass all legal steps by yourself. - You can't ask help to the community or to - Nerv Project ASBL in these cases, and you must - conform to the EUPL-1.2 license. - -All works, the software, all plugins and -documentations are under the EUPL-1.2 license. - -.. toctree:: - :hidden: - :caption: Community - - about - roadmap - contributing - history - -Please select the documentation you want to consult. - -.. toctree:: - :caption: Documentation - :maxdepth: 1 - - user/index - administration/index - developing/index - specifications/index - -Bibliography -~~~~~~~~~~~~ - -.. important:: - - Even if we use standards in our bibliography and if - we want to implement them, Nerv Tales Network and - Nerv Project ASBL are not certified. If you need - certification for your software, you must pass them - yourself. - -.. bibliography:: - :all: diff --git a/docs/source/locale/fr/LC_MESSAGES/about.po b/docs/source/locale/fr/LC_MESSAGES/about.po deleted file mode 100644 index 9f67592..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/about.po +++ /dev/null @@ -1,167 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:07+0200\n" -"PO-Revision-Date: 2021-05-16 17:35+0200\n" -"Last-Translator: \n" -"Language: fr\n" -"Language-Team: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/about.rst:2 -msgid "About Nerv Tales Network" -msgstr "À propos de Nerv Tales Network" - -#: ../../source/about.rst:4 -msgid "" -"Nerv Project ASBL develops Nerv Tales Network for it's internal usage " -"and all authorized entities for work adaptations. We want to give an " -"open-source and free of charge software to help all people and " -"foundations." -msgstr "" -"Nerv Project ASBL développe Nerv Tales Network pour son usage interne et " -"pour toutes les entités autorisées à l'adaptation d'œuvres. Nous voulons " -"offrir un logiciel gratuit et libre de droit pour aider toutes les " -"personnes et toutes les associations concernées." - -#: ../../source/about.rst:12 -msgid "Details" -msgstr "Détails" - -#: ../../source/about.rst:12 ../../source/about.rst:23 -#: ../../source/about.rst:24 ../../source/about.rst:25 -#: ../../source/about.rst:27 -msgid "Nerv Project ASBL" -msgstr "Nerv Project ASBL" - -#: ../../source/about.rst:14 -msgid "Contact" -msgstr "Contact" - -#: ../../source/about.rst:14 -msgid "contact AT nerv-project.eu" -msgstr "contact arobase nerv-project.eu" - -#: ../../source/about.rst:15 -msgid "Status" -msgstr "Statuts" - -#: ../../source/about.rst:15 -msgid "ASBL" -msgstr "ASBL" - -#: ../../source/about.rst:16 -msgid "Address" -msgstr "Adresse" - -#: ../../source/about.rst -msgid "Rue Longue 27 Bte K10" -msgstr "Rue Longue 27 Bte K10" - -#: ../../source/about.rst -msgid "1420 Eigenbrakel" -msgstr "1420 Eigenbrakel" - -#: ../../source/about.rst -msgid "Belgium" -msgstr "Belgique" - -#: ../../source/about.rst:19 -msgid "Phone" -msgstr "Téléphone" - -#: ../../source/about.rst:19 -msgid "+32 (0)2 319 888 0" -msgstr "+32 (0)2 319 888 0" - -#: ../../source/about.rst:20 -msgid "Enterprise" -msgstr "Entreprise" - -#: ../../source/about.rst:20 -msgid "0756.741.342" -msgstr "0756.741.342" - -#: ../../source/about.rst:21 -msgid "VAT" -msgstr "TVA" - -#: ../../source/about.rst:21 -msgid "BE0756741342" -msgstr "BE0756741342" - -#: ../../source/about.rst:22 -msgid "Editor number KBR" -msgstr "Numéro d'éditeur KBR" - -#: ../../source/about.rst:22 -msgid "15066" -msgstr "15066" - -#: ../../source/about.rst:23 -msgid "Publication" -msgstr "Publication" - -#: ../../source/about.rst:24 -msgid "Production" -msgstr "Production" - -#: ../../source/about.rst:25 -msgid "Webmaster" -msgstr "Webmaster" - -#: ../../source/about.rst:26 -msgid "Author" -msgstr "Auteur/Autrice" - -#: ../../source/about.rst:26 -msgid "Nerv Project ASBL except expressly set out" -msgstr "Nerv Project ASBL sauf mention contraire" - -#: ../../source/about.rst:27 -msgid "Video" -msgstr "Vidéo" - -#: ../../source/about.rst:28 -msgid "Hosting" -msgstr "Hébergement" - -#: ../../source/about.rst:28 -msgid "IT4Freedom" -msgstr "IT4Freedom" - -#: ../../source/about.rst:29 -msgid "IBAN" -msgstr "IBAN" - -#: ../../source/about.rst:29 -msgid "BE02 7512 1068 4040" -msgstr "BE02 7512 1068 4040" - -#: ../../source/about.rst:30 -msgid "BIC" -msgstr "BIC" - -#: ../../source/about.rst:30 -msgid "AXABBE22" -msgstr "AXABBE22" - -#: ../../source/about.rst:33 -msgid "" -"Please contact us if you want to donate, as we need some informations to " -"create your invoice." -msgstr "" -"Veuillez nous contacter avant de faire un don, nous avons besoin " -"d'informations pour créer votre facture." diff --git a/docs/source/locale/fr/LC_MESSAGES/administration.po b/docs/source/locale/fr/LC_MESSAGES/administration.po deleted file mode 100644 index 3ce71bd..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/administration.po +++ /dev/null @@ -1,77 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 17:43+0200\n" -"PO-Revision-Date: 2021-05-16 17:48+0200\n" -"Last-Translator: \n" -"Language: fr\n" -"Language-Team: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/administration/index.rst:2 -msgid "Administration manual" -msgstr "Manuel d'administration" - -#: ../../source/administration/index.rst:6 -msgid "" -"Please read this documentation before installing. Nerv Tales Network uses " -"encryption at multiple levels. You need to backup database and keys. " -"You'll lost all your data if you lost keys." -msgstr "" -"Veuillez lire cette documentation avant l'installation. Nerv Tales " -"Network utilise le chiffrement à plusieurs niveaux. Vous devez " -"sauvegarder la base de données et les clés. Vous perdrez toutes vos " -"données si vous en perdez les clés." - -#: ../../source/administration/index.rst:13 -msgid "" -"Do not use same process and same servers to manage, backup, restore, " -"control, provide or use the core server and the security server. Sensible " -"and private data can not be read in a compromised database without keys " -"to unencrypt. Separate all tools avoid compromising data and keys in same " -"time." -msgstr "" -"N'utilisez pas les mêmes procédures et les mêmes serveurs pour " -"administrer, sauvegarder, restaurer, contrôler, installer ou utiliser le " -"serveur principal et le serveur de sécurité. Il n'est pas possible de " -"lire les données privées et sensibles dans une base compromise sans les " -"clés pour déchiffrer. Séparer l'ensemble des outils évite la " -"compromission des données et des clés en même temps." - -#: ../../source/administration/index.rst:21 -msgid "" -"Using same server or same bastion for data and for key management is " -"prohibited in some cases." -msgstr "" -"Il est légalement interdit, dans certains cas, d'utiliser le même serveur " -"ou le même bastion pour la gestion des données et des clés." - -#: ../../source/administration/index.rst:26 -msgid "" -"You have to assign Data Protection Officier and Security Officier roles " -"before using software. You can have at most two security officiers. DPO " -"and SO can be the same person but DPO and SO can not be in IT or " -"management team (except some legal cases)." -msgstr "" -"Vous devez assigner les rôles Data Protection Officier et Security " -"Officier avant d'utiliser le logiciel. Vous pouvez avoir au maximum deux " -"Security Officiers. Une même personne peut être à la fois DPO et SO, mais " -"elle ne peut pas être dans l'équipe technique ou dans la direction de " -"l'établissement (sauf dans quelques cas légaux)." - -#: ../../source/administration/index.rst:33 -msgid "Nothing here. Sorry, we're working on the first version of software." -msgstr "" -"Rien ici. Désolé, nous travaillons sur la première version du logiciel." diff --git a/docs/source/locale/fr/LC_MESSAGES/contributing.po b/docs/source/locale/fr/LC_MESSAGES/contributing.po deleted file mode 100644 index 1389cb4..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/contributing.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 18:37+0200\n" -"PO-Revision-Date: 2021-05-16 18:40+0200\n" -"Last-Translator: \n" -"Language: fr\n" -"Language-Team: \n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/contributing.rst:2 -msgid "Contributing" -msgstr "Contribuer" - -#: ../../source/contributing.rst:5 -msgid "How to contribute?" -msgstr "Comment contribuer ?" - -#: ../../source/contributing.rst:7 -msgid "" -"Before contributing, you must accept your work will be published with " -"EUPL-1.2 license or newer version. You keep intellectual property of " -"your contribution." -msgstr "" -"Avant de contribuer, vous devez accepter que votre travail soit publié " -"sous licence EUPL-1.2 ou version supérieure. Vous gardez la propriété " -"intellectuelle sur vos contributions." - -#: ../../source/contributing.rst:11 -msgid "" -"You can join us on XMPP, on `technique@clac.nerv-project.eu `_ channel." -msgstr "" -"Vous pouvez nous rejoindre sur XMPP, dans le salon `technique@clac.nerv-" -"project.eu `_." - -#: ../../source/contributing.rst:15 -msgid "" -"You can find all tickets (not only technical) in `our gitea instance " -"`_." -msgstr "" -"Vous trouverez toutes les tâches (pas seulement techniques) `sur notre " -"instance gitea `_." - -#: ../../source/contributing.rst:19 -msgid "Where's the source code?" -msgstr "Où puis-je trouver le code source ?" - -#: ../../source/contributing.rst:21 -msgid "" -"All code is in `our git repository `_." -msgstr "" -"L'intégralité du code se trouve dans `notre dépôt git `_." - -#: ../../source/contributing.rst:25 -msgid "Can I contribute if I'm not a developer?" -msgstr "Est-ce que je peux contribuer si je ne développe pas ?" - -#: ../../source/contributing.rst:27 -msgid "Of course, yes! We need a lot of competencies, like:" -msgstr "Bien sûr ! Nous avons besoins de beaucoup de compétences, comme :" - -#: ../../source/contributing.rst:29 -msgid "translating;" -msgstr "traduire ;" - -#: ../../source/contributing.rst:30 -msgid "testing;" -msgstr "tester ;" - -#: ../../source/contributing.rst:31 -msgid "specifying interfaces;" -msgstr "spécifier des interfaces ;" - -#: ../../source/contributing.rst:32 -msgid "managing community;" -msgstr "gérer la communauté ;" - -#: ../../source/contributing.rst:33 -msgid "writing manuals;" -msgstr "écrire la documentation ;" - -#: ../../source/contributing.rst:34 -msgid "helping users;" -msgstr "aider les utilisateurs ;" - -#: ../../source/contributing.rst:35 -msgid "and all you can do!" -msgstr "et tout ce que vous savez faire !" diff --git a/docs/source/locale/fr/LC_MESSAGES/developing.po b/docs/source/locale/fr/LC_MESSAGES/developing.po deleted file mode 100644 index 7bebd83..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/developing.po +++ /dev/null @@ -1,28 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: 2021-05-16 18:41+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: fr\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/developing/index.rst:2 -msgid "Developing manual" -msgstr "Manuel de développement" - -#: ../../source/developing/index.rst:4 -msgid "Nothing here. Sorry, we're working on the first version of software." -msgstr "Rien ici. Désolé, nous travaillons sur la première version du logiciel." diff --git a/docs/source/locale/fr/LC_MESSAGES/history.po b/docs/source/locale/fr/LC_MESSAGES/history.po deleted file mode 100644 index 83367fb..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/history.po +++ /dev/null @@ -1,47 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: 2021-05-16 18:42+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: fr\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/history.rst:2 -msgid "Document history" -msgstr "Historique du document" - -#: ../../source/history.rst:5 -msgid "Current version" -msgstr "Version courante" - -#: ../../source/history.rst:7 -msgid "These informations are automatically generated by git." -msgstr "Ces informations sont générées automatiquement par git." - -msgid "Branch main Commit 4c0054047e1f7ceafa48" -msgstr "" - -#: ../../source/history.rst -msgid "Branch" -msgstr "Branche" - -#: ../../source/history.rst -msgid "Commit" -msgstr "Commit" - -#: ../../source/history.rst:18 -msgid "Versions log" -msgstr "Journal des versions" diff --git a/docs/source/locale/fr/LC_MESSAGES/index.po b/docs/source/locale/fr/LC_MESSAGES/index.po deleted file mode 100644 index 795446b..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/index.po +++ /dev/null @@ -1,168 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: 2021-05-16 18:54+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: fr\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/index.rst:52 -msgid "Community" -msgstr "Communauté" - -#: ../../source/index.rst:63 -msgid "Documentation" -msgstr "Documentation" - -#: ../../source/index.rst:2 -msgid "Nerv Tales Network Documentation" -msgstr "Documentation de Nerv Tales Network" - -#: ../../source/index.rst:4 -msgid "" -"Nerv Tales Network is a free software to manage all aspects about books. " -"It fits needs of writers, editors, adaptation to people with specific " -"needs, libraries, book shops, online libraries and book shops, museums, " -"schools, ebooks distributors and readers. It manages:" -msgstr "" -"Nerv Tales Network est un logiciel libre pour gérer tous les aspects de " -"la filière du livre. Il convient pour l'écriture, pour l'édition, pour " -"l'adaptation à un public à besoins spécifiques, pour les bibliothèques, " -"les librairies, les boutiques en ligne, les musées, les écoles, la " -"distribution de livres numériques et pour la lecture." - -#: ../../source/index.rst:11 -msgid "Accessibility" -msgstr "Accessibilité" - -#: ../../source/index.rst:12 -msgid "Documents" -msgstr "Gestion documentaire" - -#: ../../source/index.rst:13 -msgid "Communication" -msgstr "Communication" - -#: ../../source/index.rst:14 -msgid "Stocks and items" -msgstr "Stocks et items" - -#: ../../source/index.rst:15 -msgid "Projects" -msgstr "Projets" - -#: ../../source/index.rst:16 -msgid "Accounting" -msgstr "Comptabilité" - -#: ../../source/index.rst:17 -msgid "Risks and objectives" -msgstr "Risques et objectifs" - -#: ../../source/index.rst:18 -msgid "Learning and documentary surveillance" -msgstr "Apprentissage et veille documentaire" - -#: ../../source/index.rst:19 -msgid "On-line services" -msgstr "Services en ligne" - -#: ../../source/index.rst:20 -msgid "Help and consultancy" -msgstr "Aide et consultance" - -#: ../../source/index.rst:21 -msgid "High security and confidentiality" -msgstr "Sécurité et confidentialité élevées" - -#: ../../source/index.rst:22 -msgid "Synchronization" -msgstr "Synchronisation" - -#: ../../source/index.rst:26 -msgid "" -"You can also use Nerv Tales Network on other applications if it fits " -"your needs." -msgstr "" -"Vous pouvez toujours utiliser Nerv Tales Network pour d'autres domaines " -"s'il correspond à vos besoins." - -#: ../../source/index.rst:31 -msgid "" -"Even if Nerv Tales Network have enough features and security systems, it " -"can't be used in the following cases:" -msgstr "" -"Même si Nerv Tales Network a assez de fonctionnalités et de systèmes de " -"sécurité, il ne peut pas être utilisé dans les cas suivants :" - -#: ../../source/index.rst:35 -msgid "classified documents management and storage;" -msgstr "gestion et stockage de documents classifiés ;" - -#: ../../source/index.rst:36 -msgid "" -"health management except for entities authorized to deliver adaptations " -"of work of art;" -msgstr "" -"gestion de la santé à l'exception des entités autorisées à la délivrance " -"d'œuvres adaptées ;" - -#: ../../source/index.rst:39 -msgid "" -"any activity where the software need an agreement, a certification, an " -"habilitation, an audit or other administrative stuff." -msgstr "" -"toute activité où le logiciel nécessite un agrément, une certification, " -"une habilitation, un audit ou toute autre démarche administrative." - -#: ../../source/index.rst:43 -msgid "" -"However, you can use Nerv Tales Network in these cases if you pass all " -"legal steps by yourself. You can't ask help to the community or to Nerv " -"Project ASBL in these cases, and you must conform to the EUPL-1.2 " -"license." -msgstr "" -"Néanmoins, vous pouvez utiliser Nerv Tales Network dans ces cas si vous " -"passez toutes les étapes légales par vous-même. Vous ne pouvez pas " -"demander l'aide de la communauté ou de Nerv Project ASBL dans ces cas, " -"et vous devez vous conformer à la licence EUPL-1.2." - -#: ../../source/index.rst:49 -msgid "" -"All works, the software, all plugins and documentations are under the " -"EUPL-1.2 license." -msgstr "" -"Toutes les contributions, le logiciel, tous les modules et la " -"documentation sont publiés sous licence EUPL-1.2." - -#: ../../source/index.rst:61 -msgid "Please select the documentation you want to consult." -msgstr "Veuillez choisir la documentation que vous souhaitez consulter." - -#: ../../source/index.rst:73 -msgid "Bibliography" -msgstr "Bibliographie" - -#: ../../source/index.rst:77 -msgid "" -"Even if we use standards in our bibliography and if we want to implement " -"them, Nerv Tales Network and Nerv Project ASBL are not certified. If you " -"need certification for your software, you must pass them yourself." -msgstr "" -"Même si nous mentionnons des normes dans notre bibliographie et même si " -"nous les implémentons, Nerv Tales Network et Nerv Project ASBL ne sont " -"pas certifiés. Si vous avez besoin de certifications pour votre " -"logiciel, vous devez les passer par vous-même." diff --git a/docs/source/locale/fr/LC_MESSAGES/roadmap.po b/docs/source/locale/fr/LC_MESSAGES/roadmap.po deleted file mode 100644 index 6258289..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/roadmap.po +++ /dev/null @@ -1,24 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: 2021-05-16 18:56+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: fr\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/roadmap.rst:2 -msgid "Roadmap" -msgstr "Planification" diff --git a/docs/source/locale/fr/LC_MESSAGES/specifications.po b/docs/source/locale/fr/LC_MESSAGES/specifications.po deleted file mode 100644 index aa144a4..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/specifications.po +++ /dev/null @@ -1,1259 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: 2021-05-16 20:25+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: fr\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/specifications/accessibility.rst:2 -msgid "Accessibility" -msgstr "Accessibilité" - -#: ../../source/specifications/accessibility.rst:4 -msgid "WCAG 3.0 :cite:p:`WCAG3.0` Gold level" -msgstr "WCAG 3.0 :cite:p:`WCAG3.0` niveau Gold" - -#: ../../source/specifications/accessibility.rst:5 -msgid "" -"Conforms to COGA-Usable :cite:p:`COGA-Usable`, UAAG :cite:p:`UAAG` and ATAG :" -"cite:p:`ATAG`" -msgstr "" -"Conformité avec COGA-Usable :cite:p:`COGA-Usable`, UAAG :cite:p:`UAAG` et ATAG :" -"cite:p:`ATAG`" - -#: ../../source/specifications/accessibility.rst:7 -msgid "Compatibility with EN301549 :cite:p:`EN301549` requirements" -msgstr "Compatible avec les exigences de EN301549 :cite:p:`EN301549`" - -#: ../../source/specifications/accessibility.rst:9 -msgid "Client in Qt, Web, telnet, SSH, TUI and audio only" -msgstr "Client en Qt, Web, telnet, SSH, TUI et en audio seul" - -#: ../../source/specifications/accessibility.rst:10 -msgid "Hardware client" -msgstr "Client matériel" - -#: ../../source/specifications/accounting.rst:2 -msgid "Accounting" -msgstr "Comptabilité" - -#: ../../source/specifications/accounting.rst:4 -msgid "" -"Implementing IFRS standard for small and middle-sized organization (but no " -"certification)" -msgstr "" -"Implémentation des standards de l'IFRS pour petites et moyennes organisations " -"(mais pas de certification)" - -#: ../../source/specifications/accounting.rst:6 -msgid "Double-entry book-keeping" -msgstr "Comptabilité à double entrée" - -#: ../../source/specifications/accounting.rst:7 -msgid "Multi-currency with conversion rates" -msgstr "Multiples monnaies avec taux de conversion" - -#: ../../source/specifications/accounting.rst:8 -msgid "" -"CO2 equivalent double-entry book-keeping (parallel accounting to manage " -"environmental impacts)" -msgstr "" -"Comptabilité en équivalent CO2 à double-entrée (comptabilité parallèle pour la " -"gestion des impacts environnementaux)" - -#: ../../source/specifications/accounting.rst:10 -msgid "Purchases, loans, subscriptions and selling" -msgstr "Achats, prêts, abonnements et ventes" - -#: ../../source/specifications/accounting.rst:11 -msgid "Point of sale, with specific screens for catering, libraries, shops, etc." -msgstr "" -"Point de vente, avec des écrans spécifiques pour les restaurants, les " -"bibliothèques, les librairies, les boutiques, etc." - -#: ../../source/specifications/accounting.rst:13 -msgid "Self-service point of sale" -msgstr "Point de vente en self-service" - -#: ../../source/specifications/accounting.rst:14 -msgid "Payment terminal" -msgstr "Terminaux de paiement" - -#: ../../source/specifications/accounting.rst:15 -msgid "Legal reporting" -msgstr "Rapports légaux" - -#: ../../source/specifications/accounting.rst:16 -msgid "VAT declaration in XML for Belgium" -msgstr "Déclaration de la TVA en XML pour la Belgique" - -#: ../../source/specifications/accounting.rst:17 -msgid "Human resources" -msgstr "Ressources humaines" - -#: ../../source/specifications/accounting.rst:18 -msgid "Paid and unpaid leaves" -msgstr "Congés payés et non-payés" - -#: ../../source/specifications/accounting.rst:19 -msgid "Payroll" -msgstr "Bulletins de paie" - -#: ../../source/specifications/accounting.rst:20 -msgid "Taxes calculator (general, specific products, employees, etc.)" -msgstr "" -"Calcul des taxes (générales, spécifiques à un produit, charges salariales, etc.)" - -#: ../../source/specifications/accounting.rst:22 -msgid "Copyright bills, copyright exemption declarations" -msgstr "" -"Notes de droit d'auteur, déclarations pour l'exercice des exceptions au droit " -"d'auteur" - -#: ../../source/specifications/communication.rst:2 -msgid "Communication" -msgstr "Communication" - -#: ../../source/specifications/communication.rst:4 -msgid "Secure chat and group chat (XMPP backend)" -msgstr "Messagerie instantanée privée et en groupe sécurisée (basée sur XMPP)" - -#: ../../source/specifications/communication.rst:5 -msgid "Text, audio and video chatting (XMPP backend)" -msgstr "Messagerie par texte, audio et vidéo (basé sur XMPP)" - -#: ../../source/specifications/communication.rst:6 -msgid "Add reactions and replies to messages" -msgstr "Ajout de réactions et de réponses aux messages" - -#: ../../source/specifications/communication.rst:7 -msgid "" -"Link to documents or other object in Nerv Tales Network (use generic link to " -"object)" -msgstr "" -"Liens vers les documents et autres objets dans Nerv Tales Network (utilisation " -"d'un lien générique vers l'objet)" - -#: ../../source/specifications/communication.rst:9 -msgid "Mail client and delivery system" -msgstr "Client mail et serveur de distribution" - -#: ../../source/specifications/communication.rst:10 -msgid "Share email folders and addresses with other users" -msgstr "" -"Partage de dossiers et d'adresses de courriel avec les autres utilisateurs" - -#: ../../source/specifications/communication.rst:12 -msgid "" -"Confidential emails must disappear after the first user set it as it (like " -"disability proof)" -msgstr "" -"Les courriels confidentiels doivent disparaître après que le premier " -"utilisateur l'a indiqué (comme pour une preuve de handicap)" - -#: ../../source/specifications/communication.rst:14 -msgid "Convert emails to tickets, save attachments as documents" -msgstr "" -"Conversion des courriels en tâches, sauvegarde des pièces jointes en documents" - -#: ../../source/specifications/communication.rst:16 -msgid "SMTP, IMAP, EAS and JMAP compatibility" -msgstr "Compatibilité avec SMTP, IMAP, EAS et JMAP" - -#: ../../source/specifications/communication.rst:17 -msgid "Contact management with tags and groups (CardDAV compatibility)" -msgstr "Gestion des contacts avec tags et groupes (compatible CardDAV)" - -#: ../../source/specifications/communication.rst:19 -msgid "Birthday announcements" -msgstr "Annonce des anniversaires" - -#: ../../source/specifications/communication.rst:20 -msgid "Event management and sharing (CalDAV compatibility)" -msgstr "Gestion et partage des évènements (compatible CalDAV)" - -#: ../../source/specifications/communication.rst:22 -msgid "Calendar management (internal and external)" -msgstr "Gestion de calendrier (interne et externe)" - -#: ../../source/specifications/communication.rst:23 -msgid "Online registration to event/adviser" -msgstr "" -"Enregistrement en ligne à un évènement ou d'un rendez-vous avec un conseiller" - -#: ../../source/specifications/communication.rst:24 -msgid "Contact forms" -msgstr "Formulaires de contact" - -#: ../../source/specifications/communication.rst:25 -msgid "" -"Bulletin board system with hierarchical categories (mixing with XMPP group " -"chat) - public and private boards" -msgstr "" -"Système de forum avec catégories hiérarchiques (à mixer avec la messagerie " -"XMPP) - forums publics et privés" - -#: ../../source/specifications/communication.rst:28 -msgid "Phone calls (can write textual notes during a call) with SIP compatibility" -msgstr "" -"Appels téléphoniques (possibilité d'écrire des notes textuelles durant l'appel) " -"avec compatibilité SIP" - -#: ../../source/specifications/communication.rst:30 -msgid "Communication with federated instances (XMPP chat)" -msgstr "Communication avec des instances fédérées (via XMPP)" - -#: ../../source/specifications/communication.rst:32 -msgid "Ticket management" -msgstr "Gestion de tâches" - -#: ../../source/specifications/communication.rst:33 -msgid "Notifications (XMPP ?)" -msgstr "Notifications (XMPP ?)" - -#: ../../source/specifications/documents.rst:2 -msgid "Documents" -msgstr "Documents" - -#: ../../source/specifications/documents.rst:4 -msgid "Documents in standard and simplified languages" -msgstr "Documents en langue classique ou simplifiée (FALC)" - -#: ../../source/specifications/documents.rst:5 -msgid "Documents in sign languages" -msgstr "Documents en langue des signes" - -#: ../../source/specifications/documents.rst:6 -msgid "In video, audio or text" -msgstr "En vidéo, audio ou texte" - -#: ../../source/specifications/documents.rst:7 -msgid "Read with speech synthesis or audio files" -msgstr "Lecture avec une synthèse vocale ou par fichiers audio" - -#: ../../source/specifications/documents.rst:8 -msgid "Subtitles for video" -msgstr "Sous-titrage des vidéos" - -#: ../../source/specifications/documents.rst:9 -msgid "Audio-description for video" -msgstr "Audio-description des vidéos" - -#: ../../source/specifications/documents.rst:10 -msgid "Text-description for video" -msgstr "Description textuelle des vidéos" - -#: ../../source/specifications/documents.rst:11 -msgid "Transcription of video" -msgstr "Transcription des vidéos" - -#: ../../source/specifications/documents.rst:12 -msgid "Bibliography management" -msgstr "Gestion de bibliographie" - -#: ../../source/specifications/documents.rst:13 -msgid "Citation management" -msgstr "Gestionnaire de citations" - -#: ../../source/specifications/documents.rst:14 -msgid "Glossary" -msgstr "Glossaire" - -#: ../../source/specifications/documents.rst:15 -msgid "" -"Highlight current sentence in multimedia presentation (like audio+text or video" -"+text or audio+video+text)" -msgstr "" -"Mise en surbrillance de la phrase en cours dans un affichage multimédia (audio" -"+texte ou vidéo+texte ou audio+vidéo+texte)" - -#: ../../source/specifications/documents.rst:18 -msgid "" -"Styles for descriptions, dialogues, actions and other types of paragraphs/" -"sentences" -msgstr "" -"Présentation différenciée des descriptions, dialogues, actions et autres types " -"de paragraphes/phrases" - -#: ../../source/specifications/documents.rst:20 -msgid "Styles for verbs, nouns, and other grammatical functions" -msgstr "" -"Présentation différenciée des verbes, noms, et autres fonctions grammaticales" - -#: ../../source/specifications/documents.rst:22 -msgid "Style for grammatical groups" -msgstr "Présentation groupée des groupes nominaux" - -#: ../../source/specifications/documents.rst:23 -msgid "Add little images and sounds for better comprehension" -msgstr "Ajout de petites images et de sons pour une meilleure compréhension" - -#: ../../source/specifications/documents.rst:25 -msgid "Alt text for images (mandatory)" -msgstr "Texte alternatif (obligatoire) pour les images" - -#: ../../source/specifications/documents.rst:26 -msgid "Manage translations" -msgstr "Gestion des traductions" - -#: ../../source/specifications/documents.rst:27 -msgid "DRM and encryption" -msgstr "DRM et chiffrement" - -#: ../../source/specifications/documents.rst:28 -msgid "Credentials and classification (secret and zone level)" -msgstr "Habilitation et classification (niveau de confidentialité et zone)" - -#: ../../source/specifications/documents.rst:30 -msgid "Versioning (with git)" -msgstr "Gestion des versions (avec git)" - -#: ../../source/specifications/documents.rst:31 -msgid "Dictionary (with synonyms)" -msgstr "Dictionnaire (avec synonymes)" - -#: ../../source/specifications/documents.rst:32 -msgid "Digital and physical documents (link with stocks)" -msgstr "Documents physiques et numériques (lien vers les stocks)" - -#: ../../source/specifications/documents.rst:33 -msgid "External and internal use, licensing" -msgstr "Gestion des licences et des usages internes et externes" - -#: ../../source/specifications/documents.rst:34 -msgid "Peer-adaptation with other organizations" -msgstr "Adaptation coordonnée entre plusieurs organisations" - -#: ../../source/specifications/documents.rst:35 -msgid "" -"Share by link, with other users, with federated instance, by mail, by chat or " -"by DODP (if permitted, DRMize or encrypt if needed)" -msgstr "" -"Partage par lien, avec d'autres utilisateurs, via la fédération d'instances, " -"par mail, par messagerie ou par DODP (si permis, avec DRM ou chiffrement si " -"besoin)" - -#: ../../source/specifications/documents.rst:38 -msgid "WebDAV synchronization" -msgstr "Synchronisation WebDAV" - -#: ../../source/specifications/documents.rst:39 -msgid "Slide show for photo" -msgstr "Diaporama des photos" - -#: ../../source/specifications/documents.rst:40 -msgid "" -"Compatibility with PDF, ePub, HTML, RTF, RST, Markdown, docx, doc, xls, xlsx, " -"odt, ods and DAISY" -msgstr "" -"Compatible avec PDF, ePub, HTML, RTF, RST, Markdown, docx, doc, xls, xlsx, odt, " -"ods et DAISY" - -#: ../../source/specifications/documents.rst:42 -msgid "Connector for OCR" -msgstr "Connecteur pour la reconnaissance de caractères (OCR)" - -#: ../../source/specifications/documents.rst:43 -msgid "Automatic and manual classification by hierarchical tags" -msgstr "Classement automatique ou manuelle par tag hieŕarchique" - -#: ../../source/specifications/documents.rst:45 -msgid "Printing to authorized printers (standard, label, braille)" -msgstr "" -"Impression directe vers les imprimantes autorisées (standard, à étiquette ou " -"braille)" - -#: ../../source/specifications/documents.rst:48 -msgid "Document creation:" -msgstr "Création de documents :" - -#: ../../source/specifications/documents.rst:50 -msgid "Raw, vi and WYSIWYG mode" -msgstr "Texte brut, mode vi et WYSIWYG" - -#: ../../source/specifications/documents.rst:51 -msgid "Add video track, synchronize with text" -msgstr "Ajout de piste vidéo, synchronisation avec le texte" - -#: ../../source/specifications/documents.rst:52 -msgid "Add audio track, synchronize with text" -msgstr "Ajout de piste audio, synchronisation avec le texte" - -#: ../../source/specifications/documents.rst:53 -msgid "Multi-track audio/video editor (with simple tools)" -msgstr "Éditeur multi-piste pour l'audio et la vidéo (outils simples)" - -#: ../../source/specifications/documents.rst:54 -msgid "Add images (alt mandatory, option if images is only to help comprehension)" -msgstr "" -"Ajout d'images (texte alternatif obligatoire, ou optionnel si les images ne " -"servent qu'à aider à la compréhension)" - -#: ../../source/specifications/documents.rst:56 -msgid "Import existing audio or video clip" -msgstr "Import de clips audio et vidéo existants" - -#: ../../source/specifications/documents.rst:57 -msgid "Import existing text" -msgstr "Import de texte" - -#: ../../source/specifications/documents.rst:58 -msgid "Import existing images" -msgstr "Import d'images" - -#: ../../source/specifications/documents.rst:59 -msgid "Organize titles" -msgstr "Organisation des titres" - -#: ../../source/specifications/documents.rst:60 -msgid "" -"Characters, items, arenas, connections, scenes, episodes/chapters, symbols and " -"themes sheets" -msgstr "" -"Fiches personnages, items, arènes, connections, scènes, épisodes/chapitres, " -"symboles et thème" - -#: ../../source/specifications/documents.rst:62 -msgid "Dictionary and synonyms" -msgstr "Dictionnaire et synonymes" - -#: ../../source/specifications/documents.rst:63 -msgid "Translation interface" -msgstr "Interface de traduction" - -#: ../../source/specifications/documents.rst:64 -msgid "Diagram editor (general, network, sequences, user activities)" -msgstr "Éditeur de schémas (général, réseau, séquences, activités)" - -#: ../../source/specifications/documents.rst:66 -msgid "Bibliography editor" -msgstr "Éditeur de bibliographie" - -#: ../../source/specifications/documents.rst:68 -msgid "For stories and fictions:" -msgstr "Pour les histoires et la fiction :" - -#: ../../source/specifications/documents.rst:70 -msgid "Resumes available" -msgstr "Disponibilité des résumés" - -#: ../../source/specifications/documents.rst:71 -msgid "Character, arena, item sheets updated during the reading" -msgstr "Fiches personnages, arènes et items mises à jour durant la lecture" - -#: ../../source/specifications/documents.rst:73 -msgid "Maps with characters" -msgstr "Carte de la scène avec les personnages" - -#: ../../source/specifications/documents.rst:74 -msgid "List of characters in scene" -msgstr "Liste des personnages dans la scène" - -#: ../../source/specifications/documents.rst:75 -msgid "Timeline with events" -msgstr "Ligne du temps avec les évènements" - -#: ../../source/specifications/documents.rst:76 -msgid "Avatar for each character, item and arena" -msgstr "Avatar pour chaque personnage, item et arène" - -#: ../../source/specifications/documents.rst:77 -msgid "Display avatar on each dialogue line" -msgstr "Affiche l'avatar pour chaque ligne de dialogue" - -#: ../../source/specifications/documents.rst:78 -msgid "Display avatar on each reference" -msgstr "Affiche l'avatar sur chaque référence" - -#: ../../source/specifications/documents.rst:79 -msgid "Display mood when changing" -msgstr "Affiche l'état émotionnel quand il change" - -#: ../../source/specifications/documents.rst:80 -msgid "Classic and visual novel presentation" -msgstr "Présentation classique ou visual novel" - -#: ../../source/specifications/documents.rst:82 -msgid "Metadata:" -msgstr "Métadonnées :" - -#: ../../source/specifications/documents.rst:84 -msgid "Compatibility with RDA :cite:p:`RDA`," -msgstr "Compatible avec RDA :cite:p:`RDA`," - -#: ../../source/specifications/documents.rst:85 -msgid "Peering with other instances" -msgstr "Mise à jour avec les autres instances" - -#: ../../source/specifications/documents.rst:86 -msgid "" -"Synchronizing with other catalogs (OPAC, LRM, Fediverse, Vidiverse, Electre, " -"Dilibel, Dilicom, PRISM and others)" -msgstr "" -"Synchronisation avec les autres catalogues : (OPAC, LRM, Fediverse, Vidiverse, " -"Electre, Dilibel, Dilicom, PRISM et autres)" - -#: ../../source/specifications/documents.rst:89 -msgid "" -"Compatibility with ISBD, MARC21, MarcXML, UNIMARC, INTERMARC, DID - Digital " -"Item Declaration, DCMI, BIBFRAME, MODS, EAD, METS, PREMIS, MPEG21-DIDL, RDA, " -"RDA-FR, FRAD, FRSAD, FRBR and LRM" -msgstr "" -"Compatible avec ISBD, MARC21, MarcXML, UNIMARC, INTERMARC, DID - Digital Item " -"Declaration, DCMI, BIBFRAME, MODS, EAD, METS, PREMIS, MPEG21-DIDL, RDA, RDA-FR, " -"FRAD, FRSAD, FRBR et LRM" - -#: ../../source/specifications/documents.rst:94 -msgid "Support of ISBN, ISSN and EAN" -msgstr "Support de ISBN, ISSN et EAN" - -#: ../../source/specifications/documents.rst:95 -msgid "Recommendation" -msgstr "Recommandations" - -#: ../../source/specifications/documents.rst:96 -msgid "Difficulty level (syntax, vocabulary, spelling, specialization)" -msgstr "" -"Niveau de difficulté (syntaxe, vocabulaire, prononciation, spécialisation)" - -#: ../../source/specifications/documents.rst:99 -msgid "Copyright (only European laws):" -msgstr "Gestion du droit d'auteur (seulement la législation européenne)" - -#: ../../source/specifications/documents.rst:101 -msgid "Prepare declarations for copyright collects" -msgstr "Préparation des déclarations pour la collecte des droits d'auteur" - -#: ../../source/specifications/documents.rst:102 -msgid "" -"Manage licenses, number of digital copies, number of days of loans, number of " -"loans, number of digitalizations, number of photocopies (with pages ranges)" -msgstr "" -"Gestion des licences, nombre de copies numériques, nombre de jours de prêts, " -"nombre de numérisations, nombre de photocopies (avec les pages)" - -#: ../../source/specifications/documents.rst:106 -msgid "DRM (LCP), encryption, PDTB and tokens management" -msgstr "Gestion des DRM (LCP), du chiffrement, de PDTB et des jetons" - -#: ../../source/specifications/documents.rst:107 -msgid "Warns about obligation of anti-copy paper" -msgstr "Avertit en cas d'obligation d'usage d'un papier anti-copie" - -#: ../../source/specifications/documents.rst:108 -msgid "Manage copyright exemptions with legal requirements (with forms)" -msgstr "" -"Gestion des exceptions au droit d'auteur avec les critères légaux (par " -"formulaires)" - -#: ../../source/specifications/documents.rst:111 -msgid "For all exemptions:" -msgstr "Pour toutes les exceptions :" - -#: ../../source/specifications/documents.rst:113 -msgid "Not in public domain" -msgstr "Pas dans le domaine public" - -#: ../../source/specifications/documents.rst:114 -msgid "License is less permissive than the exemption" -msgstr "La licence est plus restrictive que l'exception" - -#: ../../source/specifications/documents.rst:115 -msgid "Not for commercial use" -msgstr "Pas d'usage commercial" - -#: ../../source/specifications/documents.rst:116 -msgid "Exemption is for a limited number of special cases" -msgstr "L'exception vaut pour un nombre limité de cas spécifiques" - -#: ../../source/specifications/documents.rst:117 -msgid "Do not strike a blow at normal business" -msgstr "Ne porte pas atteinte à l'exploitation normale" - -#: ../../source/specifications/documents.rst:118 -msgid "Do not harm legitimate interest of holder of the right" -msgstr "Ne porte pas atteinte aux intérêts légitimes de l'ayant-droit" - -#: ../../source/specifications/documents.rst:121 -msgid "Exemption for adaptation for disabled people:" -msgstr "Exception pour adaptation pour handicap :" - -#: ../../source/specifications/documents.rst:123 -msgid "Authorization of legal entity" -msgstr "Autorisation légale de l'entité" - -#: ../../source/specifications/documents.rst:124 -msgid "Link to a legal license or a book in stock" -msgstr "Lien vers une licence en cours ou vers un livre en stock" - -#: ../../source/specifications/documents.rst:125 -msgid "No adaptation in standard market" -msgstr "Pas de format accessible dans le marché standard" - -#: ../../source/specifications/documents.rst:126 -msgid "" -"Restrict reproduction, distribution, communication and disposal (DRM, " -"encryption, anti-copy paper or ink, braille)" -msgstr "" -"Restriction à la reproduction, à la distribution, à la communication et à la " -"mise à disposition (DRM, chiffrement, papier ou encre anti-copie, braille)" - -#: ../../source/specifications/documents.rst:129 -msgid "Diligently adapt" -msgstr "Adapté avec diligence" - -#: ../../source/specifications/documents.rst:130 -msgid "Display all requirements on the web sites (with automatic refresh)" -msgstr "" -"Affichage de toutes les conditions sur le site web (avec rafraîchissement " -"automatique)" - -#: ../../source/specifications/documents.rst:132 -msgid "Link to the membership of beneficiary" -msgstr "Lien vers l'adhésion du bénéficiaire" - -#: ../../source/specifications/documents.rst:133 -msgid "Active proof of disability of beneficiary" -msgstr "Preuve active du handicap" - -#: ../../source/specifications/documents.rst:134 -msgid "Active license on adaptation" -msgstr "Licence active de l'adaptation elle-même" - -#: ../../source/specifications/documents.rst:136 -msgid "Submission for editing:" -msgstr "Soumission pour édition :" - -#: ../../source/specifications/documents.rst:138 -msgid "Limit by dates and categories" -msgstr "Limitation par date et par catégorie" - -#: ../../source/specifications/documents.rst:139 -msgid "Check-list for requirements" -msgstr "Liste de contrôle des prérequis" - -#: ../../source/specifications/documents.rst:140 -msgid "Form with personal data and selection of committee" -msgstr "Formulaire avec les données personnelles et sélection du comité" - -#: ../../source/specifications/documents.rst:141 -msgid "Add document, automatically convert to internal structure" -msgstr "Ajout de document avec conversion automatique vers le format interne" - -#: ../../source/specifications/documents.rst:143 -msgid "Check if new format is correct" -msgstr "Vérification de la conversion" - -#: ../../source/specifications/documents.rst:144 -msgid "Personal account for submitter" -msgstr "Compte personnel de l'auteur ou de l'autrice" - -#: ../../source/specifications/documents.rst:145 -msgid "" -"Traceability of reading and decision process, with reporting to the submitter" -msgstr "" -"Traçabilité de la lecture et du processus décisionnel, avec notification de la " -"personne ayant soumis le manuscrit" - -#: ../../source/specifications/documents.rst:147 -msgid "Number of documents to review before in the submitter report" -msgstr "Affichage du nombre de documents à lire avant celui déposé" - -#: ../../source/specifications/documents.rst:149 -msgid "Decisions are anonymous, no private data to review a manuscript" -msgstr "" -"Les décisions sont anonymes, pas de données privées lors de la lecture du " -"manuscrit" - -#: ../../source/specifications/documents.rst:151 -msgid "Template for contracts" -msgstr "Modèles de contrat" - -#: ../../source/specifications/documents.rst:152 -msgid "" -"If used by authors: follow-up to your submissions in your own instance, manage " -"contracts and accounting" -msgstr "" -"Si l'auteur ou l'autrice a sa propre instance : suivi des soumissions, des " -"contrats et de la comptabilité" - -#: ../../source/specifications/documents.rst:155 -msgid "" -"See also stock and items management for other properties of physical documents." -msgstr "" -"Voir aussi la gestion des stocks et des items pour d'autres caractéristiques " -"des documents physiques." - -#: ../../source/specifications/help.rst:2 -msgid "Help management" -msgstr "Gestion de l'aide" - -#: ../../source/specifications/help.rst:4 -msgid "Internal and external help and documentation system" -msgstr "Système de documentation, aide interne ou externe à l'organisation" - -#: ../../source/specifications/help.rst:6 -msgid "Ticketing system and contact forms" -msgstr "Système de questions et de formulaires de contact" - -#: ../../source/specifications/help.rst:7 -msgid "Send notifications" -msgstr "Envoi de notifications" - -#: ../../source/specifications/help.rst:8 -msgid "Questions and answers" -msgstr "Questions et réponses" - -#: ../../source/specifications/help.rst:9 -msgid "Documentation, blog and website management" -msgstr "Gestion documentaire, de blog et de site web" - -#: ../../source/specifications/help.rst:10 -msgid "Chat (see :doc:`communication`)" -msgstr "Messagerie instantanée (voir :doc:`communication`)" - -#: ../../source/specifications/help.rst:11 -msgid "Bulletin board system (see :doc:`communication`)" -msgstr "Système de forums (voir :doc:`communication`)" - -#: ../../source/specifications/help.rst:12 -msgid "Knowledge management" -msgstr "Base de connaissance" - -#: ../../source/specifications/help.rst:13 -msgid "Record in beneficiary/user file" -msgstr "Suivi dans le fichier du/de la bénéficiaire" - -#: ../../source/specifications/help.rst:14 -msgid "" -"Credentials on sensitive data depending on level of privacy (health data in " -"database)" -msgstr "" -"L'habilitation sur les données sensibles dépend du niveau de confidentialité " -"(données de santé en base de données)" - -#: ../../source/specifications/help.rst:16 -msgid "Private messages to personal adviser" -msgstr "Messages privés vers le conseiller ou la conseillère du bénéficiaire" - -#: ../../source/specifications/help.rst:17 -msgid "ITIL implementation of service center" -msgstr "Implémentation du centre de service ITIL" - -#: ../../source/specifications/help.rst:18 -msgid "GDPR complaints in separated channel" -msgstr "Gestion des plaintes GDPR dans un processus séparé" - -#: ../../source/specifications/help.rst:19 -msgid "Security complaints in separated channel" -msgstr "Gestion des plaintes de sécurité dans un processus séparé" - -#: ../../source/specifications/help.rst:20 -msgid "" -"Public legal information management (DPO, privacy, terms of use, terms of sale, " -"address, legal identifiers, etc.)" -msgstr "" -"Gestion des informations publiques légales (DPO, confidentialité, conditions " -"d'utilisation et de vente, adresse, identifiants légaux, etc.)" - -#: ../../source/specifications/help.rst:23 -msgid "" -"Internal legal information management (anti-harassment, anti-bribery, human " -"resources documentation, emergency documentation)" -msgstr "" -"Gestion des informations légales internes (anti-harcèlement, anti-corruption, " -"documentation des ressources humaines et des urgences)" - -#: ../../source/specifications/help.rst:26 -msgid "Quality documentation, process documentation" -msgstr "Documentation qualité, documentation des process" - -#: ../../source/specifications/help.rst:27 -#: ../../source/specifications/quality_risk.rst:23 -msgid "Disaster recovery plan" -msgstr "Plan de reprise d'activité" - -#: ../../source/specifications/help.rst:28 -msgid "Crisis communication manual" -msgstr "Manuel de communication de crise" - -#: ../../source/specifications/index.rst:2 -msgid "Specifications" -msgstr "Spécifications" - -#: ../../source/specifications/index.rst:4 -msgid "" -"You'll find all specifications for future features here. The documentation is " -"removed from this document when the feature is implemented, and rewritten into " -"developing, administration and user manuals." -msgstr "" -"Vous trouverez toutes les spécifications des prochaines fonctionnalités ici. La " -"documentation est retirée de ce document dès que la fonctionnalité est " -"implémentée, et est réécrite dans les manuels de développement, " -"d'administration et d'utilisation." - -#: ../../source/specifications/learning.rst:2 -msgid "Learning" -msgstr "Apprentissage" - -#: ../../source/specifications/learning.rst:4 -msgid "Room management" -msgstr "Gestion des salles" - -#: ../../source/specifications/learning.rst:5 -msgid "Planning management" -msgstr "Gestion des plannings" - -#: ../../source/specifications/learning.rst:6 -msgid "Student management, grading" -msgstr "Gestion des étudiants, des bulletins de note" - -#: ../../source/specifications/learning.rst:7 -msgid "Lessons, exams and exercises" -msgstr "Leçons, examens et exercices" - -#: ../../source/specifications/learning.rst:8 -msgid "Incorporate other documents" -msgstr "Ajout d'autres documents" - -#: ../../source/specifications/learning.rst:9 -msgid "Learner projects" -msgstr "Projets personnels d'apprentissage" - -#: ../../source/specifications/learning.rst:10 -msgid "For learning in centre or online" -msgstr "Pour apprentissage en centre ou en ligne" - -#: ../../source/specifications/projects.rst:2 -msgid "Projects" -msgstr "Projets" - -#: ../../source/specifications/projects.rst:4 -msgid "Objectives, quality, risk and task management per project" -msgstr "Gestion des objectifs, de la qualité, du risque et des tâches par projet" - -#: ../../source/specifications/projects.rst:6 -msgid "Specific funds for project" -msgstr "Fonds spécifiques par projet" - -#: ../../source/specifications/projects.rst:7 -msgid "Time sheets per project" -msgstr "Feuilles de temps par projet" - -#: ../../source/specifications/projects.rst:8 -msgid "Services and products of project (purchases and selling)" -msgstr "Produits et services du projet (achat et vente)" - -#: ../../source/specifications/projects.rst:9 -msgid "Grant management and reporting" -msgstr "Gestion et rapport des subsides" - -#: ../../source/specifications/projects.rst:10 -msgid "Event and convention management" -msgstr "Gestion des évènements et des conventions" - -#: ../../source/specifications/quality_risk.rst:2 -msgid "Quality and risk management" -msgstr "Gestion de la qualité et du risque" - -#: ../../source/specifications/quality_risk.rst:4 -msgid "Define quality requirements" -msgstr "Définition des critères de qualité" - -#: ../../source/specifications/quality_risk.rst:5 -msgid "Internal documentation for process" -msgstr "Documentation interne des process" - -#: ../../source/specifications/quality_risk.rst:6 -msgid "Manage PDCA cycles" -msgstr "Gestion des cycles PDCA" - -#: ../../source/specifications/quality_risk.rst:7 -msgid "SLR and SLA management" -msgstr "Gestion des SLA et des SLR" - -#: ../../source/specifications/quality_risk.rst:8 -msgid "Catalog of services and products" -msgstr "Catalogue des services et des produits" - -#: ../../source/specifications/quality_risk.rst:9 -msgid "Test management" -msgstr "Gestion des tests" - -#: ../../source/specifications/quality_risk.rst:10 -msgid "Audit management" -msgstr "Gestion des audits" - -#: ../../source/specifications/quality_risk.rst:11 -msgid "Create objectives for company or by projects" -msgstr "Création des objectifs au niveau de l'organisation ou par projet" - -#: ../../source/specifications/quality_risk.rst:12 -msgid "Set tags on objectives (like GDPR, ISO27001, etc.)" -msgstr "Ajout de tags sur les objectifs (par exemple GDPR, ISO27001, etc.)" - -#: ../../source/specifications/quality_risk.rst:13 -msgid "" -"Manage tickets, feedbacks and incidents with levels of priority, of frequency " -"and of seriousness" -msgstr "" -"Gestion des problèmes, retours et incidents avec des niveaux de priorité, de " -"fréquence et de gravité" - -#: ../../source/specifications/quality_risk.rst:16 -msgid "Set indicators automatically or manually" -msgstr "Ajout d'indicateurs automatiquement ou manuellement" - -#: ../../source/specifications/quality_risk.rst:17 -msgid "Manage impact of decision, incident, or indicator" -msgstr "Gestion des impacts des décisions, des incidents ou des indicateurs" - -#: ../../source/specifications/quality_risk.rst:18 -msgid "Treatment of risks with evaluation on objectives, risks, and costs" -msgstr "" -"Traitement des risques avec évaluation sur les objectifs, les risques et les " -"coûts" - -#: ../../source/specifications/quality_risk.rst:20 -msgid "Evaluation of social and environmental impacts" -msgstr "Évaluation des impacts sociaux et environnementaux" - -#: ../../source/specifications/quality_risk.rst:21 -msgid "Create templates of objectives and risks" -msgstr "Création de modèles d'objectifs et de risques" - -#: ../../source/specifications/quality_risk.rst:22 -msgid "Complete ITIL implementation" -msgstr "Implémentation complète d'ITIL" - -#: ../../source/specifications/quality_risk.rst:24 -msgid "Online surveys (anonymous and non-anonymous)" -msgstr "Sondages en ligne (anonymes et non-anonymes)" - -#: ../../source/specifications/security.rst:2 -msgid "Security" -msgstr "Sécurité" - -#: ../../source/specifications/security.rst:4 -msgid "Encrypted database" -msgstr "Base de données chiffrée" - -#: ../../source/specifications/security.rst:5 -msgid "Encrypted hashed passwords" -msgstr "Mots de passe hachés puis chiffrés" - -#: ../../source/specifications/security.rst:6 -msgid "Separate server for key management" -msgstr "Serveur séparé pour la gestion des clés" - -#: ../../source/specifications/security.rst:7 -msgid "Update database when a key expires" -msgstr "Mise à jour de la base de données à l'expiration d'une clé" - -#: ../../source/specifications/security.rst:8 -msgid "Credentials management" -msgstr "Gestion des habilitations" - -#: ../../source/specifications/security.rst:9 -msgid "Limit to two Security Officers" -msgstr "Limite à deux Security Officiers" - -#: ../../source/specifications/security.rst:10 -msgid "Two-factor authentication for all operations" -msgstr "Authentification à deux facteurs pour toutes les opérations" - -#: ../../source/specifications/security.rst:11 -msgid "Three or four-factor authentication for sensitive operations" -msgstr "" -"Authentification à triple ou quatre facteurs pour les opérations sensibles" - -#: ../../source/specifications/security.rst:13 -msgid "Send notification to user when accessing on sensitive private data" -msgstr "" -"Envoi de notification au bénéficiaire lors de l'accès à une donnée privée " -"sensible" - -#: ../../source/specifications/security.rst:15 -msgid "List of private data" -msgstr "Liste des données privées" - -#: ../../source/specifications/security.rst:16 -msgid "Auto-expiration of private data with anonymization" -msgstr "Expiration automatique des données privées avec anonymisation" - -#: ../../source/specifications/security.rst:17 -msgid "" -"Technician mode to help users, with no displayed data or fictive data (except " -"with agreement of user and security officer)" -msgstr "" -"Mode technicien pour aider, sans affichage de données ou avec des données " -"fictives (sauf avec accord de l'utilisateur ou de l'utilisatrice et d'un " -"Security Officier)" - -#: ../../source/specifications/security.rst:20 -msgid "" -"Digital rights management (LCP) or encryption of all documents except public " -"documents" -msgstr "DRM (LCP) ou chiffrement de tous les documents sauf les documents publics" - -#: ../../source/specifications/security.rst:22 -msgid "Archive classification (restricted, secret, top secret levels)" -msgstr "Archives classifiées (niveaux restreint, secret, top secret)" - -#: ../../source/specifications/services.rst:2 -msgid "Online services" -msgstr "Services en ligne" - -#: ../../source/specifications/services.rst:4 -msgid "e-shop" -msgstr "Boutique en ligne" - -#: ../../source/specifications/services.rst:5 -msgid "e-library" -msgstr "Bibliothèque en ligne" - -#: ../../source/specifications/services.rst:6 -msgid "e-learning" -msgstr "Formation en ligne" - -#: ../../source/specifications/services.rst:7 -msgid "Accessible queue management in reception" -msgstr "Gestion de file accessible à l'accueil" - -#: ../../source/specifications/services.rst:8 -msgid "Public mural screens and vocal announcements" -msgstr "Grand écran pour le public avec annonces vocales" - -#: ../../source/specifications/services.rst:9 -msgid "Time sheets" -msgstr "Feuilles de temps" - -#: ../../source/specifications/services.rst:10 -msgid "On-site services with travel expenses" -msgstr "Services sur site avec frais de déplacement" - -#: ../../source/specifications/services.rst:11 -msgid "Custom reporting of actions in beneficiary file" -msgstr "Rapport personnalisable des actions dans le fichier du/de la bénéficiaire" - -#: ../../source/specifications/services.rst:12 -msgid "Hotline management" -msgstr "Gestion de l'assistance téléphonique" - -#: ../../source/specifications/services.rst:13 -msgid "Subscription management" -msgstr "Gestion des abonnements" - -#: ../../source/specifications/services.rst:14 -msgid "Capacity supervision" -msgstr "Supervision de la capacité" - -#: ../../source/specifications/services.rst:15 -msgid "Implementation of ITIL and ISO9001 requirements but no certification" -msgstr "Implémentation des critères ITIL et ISO9001 mais sans certification" - -#: ../../source/specifications/services.rst:17 -msgid "Catering" -msgstr "Restaurant" - -#: ../../source/specifications/stocks.rst:2 -msgid "Stocks and items" -msgstr "Stocks et items" - -#: ../../source/specifications/stocks.rst:4 -msgid "" -"Items can be books, historical art, historical monuments, digital books, video, " -"CD, DVD, or what you want" -msgstr "" -"Les items peuvent être des livres, des œuvres historiques, des bâtiments " -"historiques, des livres numériques, des vidéos, des CD, des DVD ou ce que vous " -"voulez" - -#: ../../source/specifications/stocks.rst:7 -msgid "List all previous and current owners (if needed)" -msgstr "Liste de tous les propriétaires passés et courants (si nécessaire)" - -#: ../../source/specifications/stocks.rst:8 -msgid "List all restorations and corresponding reports" -msgstr "Liste de toutes les restaurations et des rapports correspondants" - -#: ../../source/specifications/stocks.rst:9 -msgid "Requirements for preservation, transport and exhibition" -msgstr "Conditions de conservation, de transport et d'exposition" - -#: ../../source/specifications/stocks.rst:11 -msgid "Insurance management for preservation, transport and exhibition" -msgstr "Gestion des assurances pour la conservation, le transport et l'exposition" - -#: ../../source/specifications/stocks.rst:13 -msgid "" -"Security management for preservation, transport and exhibition - connecting to " -"alarm systems" -msgstr "" -"Gestion de la sécurité pour la conservation, le transport et l'exposition - " -"connexion au système d'alarme" - -#: ../../source/specifications/stocks.rst:15 -msgid "" -"Set context of archeological discovery with reports, photo, illustration, links " -"to articles" -msgstr "" -"Contexte de la découverte archéologique avec rapports, photos, illustrations et " -"liens vers les articles" - -#: ../../source/specifications/stocks.rst:17 -msgid "Linked bibliography and documents" -msgstr "Bibliographie et documents liés" - -#: ../../source/specifications/stocks.rst:18 -msgid "Derivative and composed manufactured products" -msgstr "Produits dérivés ou composés" - -#: ../../source/specifications/stocks.rst:19 -msgid "" -"Number of items in stock with individual sheet if historical item or secondhand" -msgstr "" -"Nombre d'items en stock avec fiche individuelle pour les items historiques ou " -"de deuxième main" - -#: ../../source/specifications/stocks.rst:21 -msgid "Place in stock, in shop or in shelves" -msgstr "Localisation en stock, en boutique et sur l'étagère" - -#: ../../source/specifications/stocks.rst:22 -msgid "Alerts on minimum and maximum limit in stocks or in shelves" -msgstr "Alertes sur les minimums et maximums en stock ou en étagère" - -#: ../../source/specifications/stocks.rst:24 -msgid "Maps of stocks, route for employees to prepare orders" -msgstr "" -"Cartes des entrepôts, calcul d'itinéraire pour la préparation des commandes" - -#: ../../source/specifications/stocks.rst:25 -msgid "Print labels for shipping" -msgstr "Impression des étiquettes pour le transport" - -#: ../../source/specifications/stocks.rst:26 -msgid "Manage RMA, serial numbers and guarantee" -msgstr "Gestion des retours, des numéros de série et des garanties" - -#: ../../source/specifications/stocks.rst:27 -msgid "Special stock units (for packages)" -msgstr "Unités spéciales de stockage (pour les lots)" - -#: ../../source/specifications/stocks.rst:28 -msgid "Expiry date and queue management (LIFO, FIFO, etc.)" -msgstr "Gestion des dates d'expiration et des files (LIFO, FIFO, etc.)" - -#: ../../source/specifications/stocks.rst:29 -msgid "" -"Automatically update stocks on shipping and reception, projected stocks with " -"current in and out orders" -msgstr "" -"Mise à jour automatique des stocks lors de l'envoi et de la réception, stocks " -"prévisionnels avec les commandes en cours" - -#: ../../source/specifications/stocks.rst:32 -msgid "Provisioning contracts with libraries by adding a panel of titles" -msgstr "" -"Mise à jour des contrats automatique avec les librairies par ajout d'un panel " -"de titres" - -#: ../../source/specifications/stocks.rst:34 -msgid "Interact with other stock solutions (like Kardex)" -msgstr "Interaction avec les autres systèmes de stockage (comme Kardex)" - -#: ../../source/specifications/stocks.rst:35 -msgid "Display informations on big screens in stocks (configurable)" -msgstr "" -"Affichage des informations sur grand écran dans les entrepôts (configurable)" - -#: ../../source/specifications/synchronization.rst:2 -msgid "Synchronization and API" -msgstr "Synchronisation et API" - -#: ../../source/specifications/synchronization.rst:4 -msgid "Mail synchronization with SMTP, IMAP, EAS and JMAP" -msgstr "Synchronisation des mails avec SMTP, IMAP, EAS et JMAP" - -#: ../../source/specifications/synchronization.rst:5 -msgid "Print automatically" -msgstr "Impression automatique" - -#: ../../source/specifications/synchronization.rst:6 -msgid "" -"Contact, calendar and file synchronization with JMAP, CalDAV, CardDAV and WebDAV" -msgstr "" -"Synchronisation des contacts, des calendriers et des fichiers avec JMAP, " -"CalDAV, CardDAV et WebDAV" - -#: ../../source/specifications/synchronization.rst:8 -msgid "SmartSync compatibility" -msgstr "Compatibilité SmartSync" - -#: ../../source/specifications/synchronization.rst:9 -msgid "REST API (documented)" -msgstr "API REST documentée" - -#: ../../source/specifications/synchronization.rst:10 -msgid "GraphQL API" -msgstr "API GraphQL" - -#: ../../source/specifications/synchronization.rst:11 -msgid "DODP - Daisy Online Delivery Protocol" -msgstr "DODP - Daisy Online Delivery Protocol" - -#: ../../source/specifications/synchronization.rst:12 -msgid "XMPP for instant messages, audio and video chat" -msgstr "Messagerie instantanée, audio et vidéo par XMPP" - -#: ../../source/specifications/synchronization.rst:13 -msgid "OMEMO support" -msgstr "Support de OMEMO" - -#: ../../source/specifications/synchronization.rst:14 -msgid "SIP for phone calls" -msgstr "Appels téléphoniques par SIP" - -#: ../../source/specifications/synchronization.rst:15 -msgid "LDAP and ActiveDirectory compatibility" -msgstr "Compatibilité LDAP et ActiveDirectory" - -#: ../../source/specifications/synchronization.rst:16 -msgid "KMIP protocol for key management" -msgstr "Gestion des clés avec le protocole KMIP" - -#: ../../source/specifications/synchronization.rst:17 -msgid "Kerberos, OAUTH2, FIDO, X509, PKCS11, CAS, SAML and OpenID authentication" -msgstr "" -"Authentification avec Kerberos, OAUTH2, FIDO, X509, PKCS11, CAS, SAML et OpenID" - -#: ../../source/specifications/synchronization.rst:19 -msgid "Atom/RSS feeds" -msgstr "Flux Atom et RSS" - -#: ../../source/specifications/synchronization.rst:20 -msgid "FTP, SFTP and FTPS compatibility" -msgstr "Compatibilité FTP, SFTP et FTPS" - -#: ../../source/specifications/synchronization.rst:21 -msgid "Send HTTP/HTTPS requests" -msgstr "Envoi de requêtes HTTP et HTTPS" - -#: ../../source/specifications/synchronization.rst:22 -msgid "ESB features, low-code and automation" -msgstr "Fonctionnalités d'ESB, d'automatisation et à faible besoin de code" diff --git a/docs/source/locale/fr/LC_MESSAGES/user.po b/docs/source/locale/fr/LC_MESSAGES/user.po deleted file mode 100644 index 997eed7..0000000 --- a/docs/source/locale/fr/LC_MESSAGES/user.po +++ /dev/null @@ -1,28 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: 2021-05-16 18:57+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: fr\n" -"X-Generator: Poedit 2.4.3\n" - -#: ../../source/user/index.rst:2 -msgid "User manual" -msgstr "Manuel d'utilisation" - -#: ../../source/user/index.rst:4 -msgid "Nothing here. Sorry, we're working on the first version of software." -msgstr "Rien ici. Désolé, nous travaillons sur la première version du logiciel." diff --git a/docs/source/locale/nl/LC_MESSAGES/about.po b/docs/source/locale/nl/LC_MESSAGES/about.po deleted file mode 100644 index 522948c..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/about.po +++ /dev/null @@ -1,162 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:07+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/about.rst:2 -msgid "About Nerv Tales Network" -msgstr "" - -#: ../../source/about.rst:4 -msgid "" -"Nerv Project ASBL develops Nerv Tales Network for it's internal usage and" -" all authorized entities for work adaptations. We want to give an open-" -"source and free of charge software to help all people and foundations." -msgstr "" - -#: ../../source/about.rst:12 -msgid "Details" -msgstr "" - -#: ../../source/about.rst:12 ../../source/about.rst:23 -#: ../../source/about.rst:24 ../../source/about.rst:25 -#: ../../source/about.rst:27 -msgid "Nerv Project ASBL" -msgstr "" - -#: ../../source/about.rst:14 -msgid "Contact" -msgstr "" - -#: ../../source/about.rst:14 -msgid "contact AT nerv-project.eu" -msgstr "" - -#: ../../source/about.rst:15 -msgid "Status" -msgstr "" - -#: ../../source/about.rst:15 -msgid "ASBL" -msgstr "" - -#: ../../source/about.rst:16 -msgid "Address" -msgstr "" - -#: ../../source/about.rst -msgid "Rue Longue 27 Bte K10" -msgstr "" - -#: ../../source/about.rst -msgid "1420 Eigenbrakel" -msgstr "" - -#: ../../source/about.rst -msgid "Belgium" -msgstr "" - -#: ../../source/about.rst:19 -msgid "Phone" -msgstr "" - -#: ../../source/about.rst:19 -msgid "+32 (0)2 319 888 0" -msgstr "" - -#: ../../source/about.rst:20 -msgid "Enterprise" -msgstr "" - -#: ../../source/about.rst:20 -msgid "0756.741.342" -msgstr "" - -#: ../../source/about.rst:21 -msgid "VAT" -msgstr "" - -#: ../../source/about.rst:21 -msgid "BE0756741342" -msgstr "" - -#: ../../source/about.rst:22 -msgid "Editor number KBR" -msgstr "" - -#: ../../source/about.rst:22 -msgid "15066" -msgstr "" - -#: ../../source/about.rst:23 -msgid "Publication" -msgstr "" - -#: ../../source/about.rst:24 -msgid "Production" -msgstr "" - -#: ../../source/about.rst:25 -msgid "Webmaster" -msgstr "" - -#: ../../source/about.rst:26 -msgid "Author" -msgstr "" - -#: ../../source/about.rst:26 -msgid "Nerv Project ASBL except expressly set out" -msgstr "" - -#: ../../source/about.rst:27 -msgid "Video" -msgstr "" - -#: ../../source/about.rst:28 -msgid "Hosting" -msgstr "" - -#: ../../source/about.rst:28 -msgid "IT4Freedom" -msgstr "" - -#: ../../source/about.rst:29 -msgid "IBAN" -msgstr "" - -#: ../../source/about.rst:29 -msgid "BE02 7512 1068 4040" -msgstr "" - -#: ../../source/about.rst:30 -msgid "BIC" -msgstr "" - -#: ../../source/about.rst:30 -msgid "AXABBE22" -msgstr "" - -#: ../../source/about.rst:33 -msgid "" -"Please contact us if you want to donate, as we need some informations to " -"create your invoice." -msgstr "" - -#~ msgid "Adress" -#~ msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/administration.po b/docs/source/locale/nl/LC_MESSAGES/administration.po deleted file mode 100644 index 2aca23b..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/administration.po +++ /dev/null @@ -1,69 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 17:43+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/administration/index.rst:2 -msgid "Administration manual" -msgstr "" - -#: ../../source/administration/index.rst:6 -msgid "" -"Please read this documentation before installing. Nerv Tales Network uses" -" encryption at multiple levels. You need to backup database and keys. " -"You'll lost all your data if you lost keys." -msgstr "" - -#: ../../source/administration/index.rst:13 -msgid "" -"Do not use same process and same servers to manage, backup, restore, " -"control, provide or use the core server and the security server. Sensible" -" and private data can not be read in a compromised database without keys " -"to unencrypt. Separate all tools avoid compromising data and keys in same" -" time." -msgstr "" - -#: ../../source/administration/index.rst:21 -msgid "" -"Using same server or same bastion for data and for key management is " -"prohibited in some cases." -msgstr "" - -#: ../../source/administration/index.rst:26 -msgid "" -"You have to assign Data Protection Officier and Security Officier roles " -"before using software. You can have at most two security officiers. DPO " -"and SO can be the same person but DPO and SO can not be in IT or " -"management team (except some legal cases)." -msgstr "" - -#: ../../source/administration/index.rst:33 -msgid "Nothing here. Sorry, we're working on the first version of software." -msgstr "" - -#~ msgid "" -#~ "You have to assign Data Protection " -#~ "Officier and Security Officier roles " -#~ "before using software. You can have " -#~ "at most two security officiers. DPO " -#~ "and SO can be the same person " -#~ "but DPO and SO can not be " -#~ "in IT or management team (except " -#~ "some legal cases)." -#~ msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/contributing.po b/docs/source/locale/nl/LC_MESSAGES/contributing.po deleted file mode 100644 index 20a49fc..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/contributing.po +++ /dev/null @@ -1,108 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 18:37+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/contributing.rst:2 -msgid "Contributing" -msgstr "" - -#: ../../source/contributing.rst:5 -msgid "How to contribute?" -msgstr "" - -#: ../../source/contributing.rst:7 -msgid "" -"Before contributing, you must accept your work will be published with " -"EUPL-1.2 license or newer version. You keep intellectual property of your" -" contribution." -msgstr "" - -#: ../../source/contributing.rst:11 -msgid "" -"You can join us on XMPP, on `technique@clac.nerv-project.eu " -"`_ channel." -msgstr "" - -#: ../../source/contributing.rst:15 -msgid "" -"You can find all tickets (not only technical) in `our gitea instance " -"`_." -msgstr "" - -#: ../../source/contributing.rst:19 -msgid "Where's the source code?" -msgstr "" - -#: ../../source/contributing.rst:21 -msgid "" -"All code is in `our git repository `_." -msgstr "" - -#: ../../source/contributing.rst:25 -msgid "Can I contribute if I'm not a developer?" -msgstr "" - -#: ../../source/contributing.rst:27 -msgid "Of course, yes! We need a lot of competencies, like:" -msgstr "" - -#: ../../source/contributing.rst:29 -msgid "translating;" -msgstr "" - -#: ../../source/contributing.rst:30 -msgid "testing;" -msgstr "" - -#: ../../source/contributing.rst:31 -msgid "specifying interfaces;" -msgstr "" - -#: ../../source/contributing.rst:32 -msgid "managing community;" -msgstr "" - -#: ../../source/contributing.rst:33 -msgid "writing manuals;" -msgstr "" - -#: ../../source/contributing.rst:34 -msgid "helping users;" -msgstr "" - -#: ../../source/contributing.rst:35 -msgid "and all you can do!" -msgstr "" - -#~ msgid "How to contribute ?" -#~ msgstr "" - -#~ msgid "Where's the source code ?" -#~ msgstr "" - -#~ msgid "Can I contribute if I'm not a developer ?" -#~ msgstr "" - -#~ msgid "" -#~ "You can join us on XMPP, on " -#~ "`technique@clac.nerv-project.eu ` channel." -#~ msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/developing.po b/docs/source/locale/nl/LC_MESSAGES/developing.po deleted file mode 100644 index 3704fd3..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/developing.po +++ /dev/null @@ -1,28 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/developing/index.rst:2 -msgid "Developing manual" -msgstr "" - -#: ../../source/developing/index.rst:4 -msgid "Nothing here. Sorry, we're working on the first version of software." -msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/history.po b/docs/source/locale/nl/LC_MESSAGES/history.po deleted file mode 100644 index 969faf9..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/history.po +++ /dev/null @@ -1,47 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/history.rst:2 -msgid "Document history" -msgstr "" - -#: ../../source/history.rst:5 -msgid "Current version" -msgstr "" - -#: ../../source/history.rst:7 -msgid "These informations are automatically generated by git." -msgstr "" - -msgid "Branch main Commit 4c0054047e1f7ceafa48" -msgstr "" - -#: ../../source/history.rst -msgid "Branch" -msgstr "" - -#: ../../source/history.rst -msgid "Commit" -msgstr "" - -#: ../../source/history.rst:18 -msgid "Versions log" -msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/index.po b/docs/source/locale/nl/LC_MESSAGES/index.po deleted file mode 100644 index 064a2e0..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/index.po +++ /dev/null @@ -1,145 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/index.rst:52 -msgid "Community" -msgstr "" - -#: ../../source/index.rst:63 -msgid "Documentation" -msgstr "" - -#: ../../source/index.rst:2 -msgid "Nerv Tales Network Documentation" -msgstr "" - -#: ../../source/index.rst:4 -msgid "" -"Nerv Tales Network is a free software to manage all aspects about books. " -"It fits needs of writers, editors, adaptation to people with specific " -"needs, libraries, book shops, online libraries and book shops, museums, " -"schools, ebooks distributors and readers. It manages:" -msgstr "" - -#: ../../source/index.rst:11 -msgid "Accessibility" -msgstr "" - -#: ../../source/index.rst:12 -msgid "Documents" -msgstr "" - -#: ../../source/index.rst:13 -msgid "Communication" -msgstr "" - -#: ../../source/index.rst:14 -msgid "Stocks and items" -msgstr "" - -#: ../../source/index.rst:15 -msgid "Projects" -msgstr "" - -#: ../../source/index.rst:16 -msgid "Accounting" -msgstr "" - -#: ../../source/index.rst:17 -msgid "Risks and objectives" -msgstr "" - -#: ../../source/index.rst:18 -msgid "Learning and documentary surveillance" -msgstr "" - -#: ../../source/index.rst:19 -msgid "On-line services" -msgstr "" - -#: ../../source/index.rst:20 -msgid "Help and consultancy" -msgstr "" - -#: ../../source/index.rst:21 -msgid "High security and confidentiality" -msgstr "" - -#: ../../source/index.rst:22 -msgid "Synchronization" -msgstr "" - -#: ../../source/index.rst:26 -msgid "" -"You can also use Nerv Tales Network on other applications if it fits your" -" needs." -msgstr "" - -#: ../../source/index.rst:31 -msgid "" -"Even if Nerv Tales Network have enough features and security systems, it " -"can't be used in the following cases:" -msgstr "" - -#: ../../source/index.rst:35 -msgid "classified documents management and storage;" -msgstr "" - -#: ../../source/index.rst:36 -msgid "" -"health management except for entities authorized to deliver adaptations " -"of work of art;" -msgstr "" - -#: ../../source/index.rst:39 -msgid "" -"any activity where the software need an agreement, a certification, an " -"habilitation, an audit or other administrative stuff." -msgstr "" - -#: ../../source/index.rst:43 -msgid "" -"However, you can use Nerv Tales Network in these cases if you pass all " -"legal steps by yourself. You can't ask help to the community or to Nerv " -"Project ASBL in these cases, and you must conform to the EUPL-1.2 " -"license." -msgstr "" - -#: ../../source/index.rst:49 -msgid "" -"All works, the software, all plugins and documentations are under the " -"EUPL-1.2 license." -msgstr "" - -#: ../../source/index.rst:61 -msgid "Please select the documentation you want to consult." -msgstr "" - -#: ../../source/index.rst:73 -msgid "Bibliography" -msgstr "" - -#: ../../source/index.rst:77 -msgid "" -"Even if we use standards in our bibliography and if we want to implement " -"them, Nerv Tales Network and Nerv Project ASBL are not certified. If you " -"need certification for your software, you must pass them yourself." -msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/roadmap.po b/docs/source/locale/nl/LC_MESSAGES/roadmap.po deleted file mode 100644 index 5d231eb..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/roadmap.po +++ /dev/null @@ -1,24 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/roadmap.rst:2 -msgid "Roadmap" -msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/specifications.po b/docs/source/locale/nl/LC_MESSAGES/specifications.po deleted file mode 100644 index 9a9e21a..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/specifications.po +++ /dev/null @@ -1,1167 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/specifications/accessibility.rst:2 -msgid "Accessibility" -msgstr "" - -#: ../../source/specifications/accessibility.rst:4 -msgid "WCAG 3.0 :cite:p:`WCAG3.0` Gold level" -msgstr "" - -#: ../../source/specifications/accessibility.rst:5 -msgid "" -"Conforms to COGA-Usable :cite:p:`COGA-Usable`, UAAG :cite:p:`UAAG` and " -"ATAG :cite:p:`ATAG`" -msgstr "" - -#: ../../source/specifications/accessibility.rst:7 -msgid "Compatibility with EN301549 :cite:p:`EN301549` requirements" -msgstr "" - -#: ../../source/specifications/accessibility.rst:9 -msgid "Client in Qt, Web, telnet, SSH, TUI and audio only" -msgstr "" - -#: ../../source/specifications/accessibility.rst:10 -msgid "Hardware client" -msgstr "" - -#: ../../source/specifications/accounting.rst:2 -msgid "Accounting" -msgstr "" - -#: ../../source/specifications/accounting.rst:4 -msgid "" -"Implementing IFRS standard for small and middle-sized organization (but " -"no certification)" -msgstr "" - -#: ../../source/specifications/accounting.rst:6 -msgid "Double-entry book-keeping" -msgstr "" - -#: ../../source/specifications/accounting.rst:7 -msgid "Multi-currency with conversion rates" -msgstr "" - -#: ../../source/specifications/accounting.rst:8 -msgid "" -"CO2 equivalent double-entry book-keeping (parallel accounting to manage " -"environmental impacts)" -msgstr "" - -#: ../../source/specifications/accounting.rst:10 -msgid "Purchases, loans, subscriptions and selling" -msgstr "" - -#: ../../source/specifications/accounting.rst:11 -msgid "Point of sale, with specific screens for catering, libraries, shops, etc." -msgstr "" - -#: ../../source/specifications/accounting.rst:13 -msgid "Self-service point of sale" -msgstr "" - -#: ../../source/specifications/accounting.rst:14 -msgid "Payment terminal" -msgstr "" - -#: ../../source/specifications/accounting.rst:15 -msgid "Legal reporting" -msgstr "" - -#: ../../source/specifications/accounting.rst:16 -msgid "VAT declaration in XML for Belgium" -msgstr "" - -#: ../../source/specifications/accounting.rst:17 -msgid "Human resources" -msgstr "" - -#: ../../source/specifications/accounting.rst:18 -msgid "Paid and unpaid leaves" -msgstr "" - -#: ../../source/specifications/accounting.rst:19 -msgid "Payroll" -msgstr "" - -#: ../../source/specifications/accounting.rst:20 -msgid "Taxes calculator (general, specific products, employees, etc.)" -msgstr "" - -#: ../../source/specifications/accounting.rst:22 -msgid "Copyright bills, copyright exemption declarations" -msgstr "" - -#: ../../source/specifications/communication.rst:2 -msgid "Communication" -msgstr "" - -#: ../../source/specifications/communication.rst:4 -msgid "Secure chat and group chat (XMPP backend)" -msgstr "" - -#: ../../source/specifications/communication.rst:5 -msgid "Text, audio and video chatting (XMPP backend)" -msgstr "" - -#: ../../source/specifications/communication.rst:6 -msgid "Add reactions and replies to messages" -msgstr "" - -#: ../../source/specifications/communication.rst:7 -msgid "" -"Link to documents or other object in Nerv Tales Network (use generic link" -" to object)" -msgstr "" - -#: ../../source/specifications/communication.rst:9 -msgid "Mail client and delivery system" -msgstr "" - -#: ../../source/specifications/communication.rst:10 -msgid "Share email folders and addresses with other users" -msgstr "" - -#: ../../source/specifications/communication.rst:12 -msgid "" -"Confidential emails must disappear after the first user set it as it " -"(like disability proof)" -msgstr "" - -#: ../../source/specifications/communication.rst:14 -msgid "Convert emails to tickets, save attachments as documents" -msgstr "" - -#: ../../source/specifications/communication.rst:16 -msgid "SMTP, IMAP, EAS and JMAP compatibility" -msgstr "" - -#: ../../source/specifications/communication.rst:17 -msgid "Contact management with tags and groups (CardDAV compatibility)" -msgstr "" - -#: ../../source/specifications/communication.rst:19 -msgid "Birthday announcements" -msgstr "" - -#: ../../source/specifications/communication.rst:20 -msgid "Event management and sharing (CalDAV compatibility)" -msgstr "" - -#: ../../source/specifications/communication.rst:22 -msgid "Calendar management (internal and external)" -msgstr "" - -#: ../../source/specifications/communication.rst:23 -msgid "Online registration to event/adviser" -msgstr "" - -#: ../../source/specifications/communication.rst:24 -msgid "Contact forms" -msgstr "" - -#: ../../source/specifications/communication.rst:25 -msgid "" -"Bulletin board system with hierarchical categories (mixing with XMPP " -"group chat) - public and private boards" -msgstr "" - -#: ../../source/specifications/communication.rst:28 -msgid "Phone calls (can write textual notes during a call) with SIP compatibility" -msgstr "" - -#: ../../source/specifications/communication.rst:30 -msgid "Communication with federated instances (XMPP chat)" -msgstr "" - -#: ../../source/specifications/communication.rst:32 -msgid "Ticket management" -msgstr "" - -#: ../../source/specifications/communication.rst:33 -msgid "Notifications (XMPP ?)" -msgstr "" - -#: ../../source/specifications/documents.rst:2 -msgid "Documents" -msgstr "" - -#: ../../source/specifications/documents.rst:4 -msgid "Documents in standard and simplified languages" -msgstr "" - -#: ../../source/specifications/documents.rst:5 -msgid "Documents in sign languages" -msgstr "" - -#: ../../source/specifications/documents.rst:6 -msgid "In video, audio or text" -msgstr "" - -#: ../../source/specifications/documents.rst:7 -msgid "Read with speech synthesis or audio files" -msgstr "" - -#: ../../source/specifications/documents.rst:8 -msgid "Subtitles for video" -msgstr "" - -#: ../../source/specifications/documents.rst:9 -msgid "Audio-description for video" -msgstr "" - -#: ../../source/specifications/documents.rst:10 -msgid "Text-description for video" -msgstr "" - -#: ../../source/specifications/documents.rst:11 -msgid "Transcription of video" -msgstr "" - -#: ../../source/specifications/documents.rst:12 -msgid "Bibliography management" -msgstr "" - -#: ../../source/specifications/documents.rst:13 -msgid "Citation management" -msgstr "" - -#: ../../source/specifications/documents.rst:14 -msgid "Glossary" -msgstr "" - -#: ../../source/specifications/documents.rst:15 -msgid "" -"Highlight current sentence in multimedia presentation (like audio+text or" -" video+text or audio+video+text)" -msgstr "" - -#: ../../source/specifications/documents.rst:18 -msgid "" -"Styles for descriptions, dialogues, actions and other types of " -"paragraphs/sentences" -msgstr "" - -#: ../../source/specifications/documents.rst:20 -msgid "Styles for verbs, nouns, and other grammatical functions" -msgstr "" - -#: ../../source/specifications/documents.rst:22 -msgid "Style for grammatical groups" -msgstr "" - -#: ../../source/specifications/documents.rst:23 -msgid "Add little images and sounds for better comprehension" -msgstr "" - -#: ../../source/specifications/documents.rst:25 -msgid "Alt text for images (mandatory)" -msgstr "" - -#: ../../source/specifications/documents.rst:26 -msgid "Manage translations" -msgstr "" - -#: ../../source/specifications/documents.rst:27 -msgid "DRM and encryption" -msgstr "" - -#: ../../source/specifications/documents.rst:28 -msgid "Credentials and classification (secret and zone level)" -msgstr "" - -#: ../../source/specifications/documents.rst:30 -msgid "Versioning (with git)" -msgstr "" - -#: ../../source/specifications/documents.rst:31 -msgid "Dictionary (with synonyms)" -msgstr "" - -#: ../../source/specifications/documents.rst:32 -msgid "Digital and physical documents (link with stocks)" -msgstr "" - -#: ../../source/specifications/documents.rst:33 -msgid "External and internal use, licensing" -msgstr "" - -#: ../../source/specifications/documents.rst:34 -msgid "Peer-adaptation with other organizations" -msgstr "" - -#: ../../source/specifications/documents.rst:35 -msgid "" -"Share by link, with other users, with federated instance, by mail, by " -"chat or by DODP (if permitted, DRMize or encrypt if needed)" -msgstr "" - -#: ../../source/specifications/documents.rst:38 -msgid "WebDAV synchronization" -msgstr "" - -#: ../../source/specifications/documents.rst:39 -msgid "Slide show for photo" -msgstr "" - -#: ../../source/specifications/documents.rst:40 -msgid "" -"Compatibility with PDF, ePub, HTML, RTF, RST, Markdown, docx, doc, xls, " -"xlsx, odt, ods and DAISY" -msgstr "" - -#: ../../source/specifications/documents.rst:42 -msgid "Connector for OCR" -msgstr "" - -#: ../../source/specifications/documents.rst:43 -msgid "Automatic and manual classification by hierarchical tags" -msgstr "" - -#: ../../source/specifications/documents.rst:45 -msgid "Printing to authorized printers (standard, label, braille)" -msgstr "" - -#: ../../source/specifications/documents.rst:48 -msgid "Document creation:" -msgstr "" - -#: ../../source/specifications/documents.rst:50 -msgid "Raw, vi and WYSIWYG mode" -msgstr "" - -#: ../../source/specifications/documents.rst:51 -msgid "Add video track, synchronize with text" -msgstr "" - -#: ../../source/specifications/documents.rst:52 -msgid "Add audio track, synchronize with text" -msgstr "" - -#: ../../source/specifications/documents.rst:53 -msgid "Multi-track audio/video editor (with simple tools)" -msgstr "" - -#: ../../source/specifications/documents.rst:54 -msgid "Add images (alt mandatory, option if images is only to help comprehension)" -msgstr "" - -#: ../../source/specifications/documents.rst:56 -msgid "Import existing audio or video clip" -msgstr "" - -#: ../../source/specifications/documents.rst:57 -msgid "Import existing text" -msgstr "" - -#: ../../source/specifications/documents.rst:58 -msgid "Import existing images" -msgstr "" - -#: ../../source/specifications/documents.rst:59 -msgid "Organize titles" -msgstr "" - -#: ../../source/specifications/documents.rst:60 -msgid "" -"Characters, items, arenas, connections, scenes, episodes/chapters, " -"symbols and themes sheets" -msgstr "" - -#: ../../source/specifications/documents.rst:62 -msgid "Dictionary and synonyms" -msgstr "" - -#: ../../source/specifications/documents.rst:63 -msgid "Translation interface" -msgstr "" - -#: ../../source/specifications/documents.rst:64 -msgid "Diagram editor (general, network, sequences, user activities)" -msgstr "" - -#: ../../source/specifications/documents.rst:66 -msgid "Bibliography editor" -msgstr "" - -#: ../../source/specifications/documents.rst:68 -msgid "For stories and fictions:" -msgstr "" - -#: ../../source/specifications/documents.rst:70 -msgid "Resumes available" -msgstr "" - -#: ../../source/specifications/documents.rst:71 -msgid "Character, arena, item sheets updated during the reading" -msgstr "" - -#: ../../source/specifications/documents.rst:73 -msgid "Maps with characters" -msgstr "" - -#: ../../source/specifications/documents.rst:74 -msgid "List of characters in scene" -msgstr "" - -#: ../../source/specifications/documents.rst:75 -msgid "Timeline with events" -msgstr "" - -#: ../../source/specifications/documents.rst:76 -msgid "Avatar for each character, item and arena" -msgstr "" - -#: ../../source/specifications/documents.rst:77 -msgid "Display avatar on each dialogue line" -msgstr "" - -#: ../../source/specifications/documents.rst:78 -msgid "Display avatar on each reference" -msgstr "" - -#: ../../source/specifications/documents.rst:79 -msgid "Display mood when changing" -msgstr "" - -#: ../../source/specifications/documents.rst:80 -msgid "Classic and visual novel presentation" -msgstr "" - -#: ../../source/specifications/documents.rst:82 -msgid "Metadata:" -msgstr "" - -#: ../../source/specifications/documents.rst:84 -msgid "Compatibility with RDA :cite:p:`RDA`," -msgstr "" - -#: ../../source/specifications/documents.rst:85 -msgid "Peering with other instances" -msgstr "" - -#: ../../source/specifications/documents.rst:86 -msgid "" -"Synchronizing with other catalogs (OPAC, LRM, Fediverse, Vidiverse, " -"Electre, Dilibel, Dilicom, PRISM and others)" -msgstr "" - -#: ../../source/specifications/documents.rst:89 -msgid "" -"Compatibility with ISBD, MARC21, MarcXML, UNIMARC, INTERMARC, DID - " -"Digital Item Declaration, DCMI, BIBFRAME, MODS, EAD, METS, PREMIS, " -"MPEG21-DIDL, RDA, RDA-FR, FRAD, FRSAD, FRBR and LRM" -msgstr "" - -#: ../../source/specifications/documents.rst:94 -msgid "Support of ISBN, ISSN and EAN" -msgstr "" - -#: ../../source/specifications/documents.rst:95 -msgid "Recommendation" -msgstr "" - -#: ../../source/specifications/documents.rst:96 -msgid "Difficulty level (syntax, vocabulary, spelling, specialization)" -msgstr "" - -#: ../../source/specifications/documents.rst:99 -msgid "Copyright (only European laws):" -msgstr "" - -#: ../../source/specifications/documents.rst:101 -msgid "Prepare declarations for copyright collects" -msgstr "" - -#: ../../source/specifications/documents.rst:102 -msgid "" -"Manage licenses, number of digital copies, number of days of loans, " -"number of loans, number of digitalizations, number of photocopies (with " -"pages ranges)" -msgstr "" - -#: ../../source/specifications/documents.rst:106 -msgid "DRM (LCP), encryption, PDTB and tokens management" -msgstr "" - -#: ../../source/specifications/documents.rst:107 -msgid "Warns about obligation of anti-copy paper" -msgstr "" - -#: ../../source/specifications/documents.rst:108 -msgid "Manage copyright exemptions with legal requirements (with forms)" -msgstr "" - -#: ../../source/specifications/documents.rst:111 -msgid "For all exemptions:" -msgstr "" - -#: ../../source/specifications/documents.rst:113 -msgid "Not in public domain" -msgstr "" - -#: ../../source/specifications/documents.rst:114 -msgid "License is less permissive than the exemption" -msgstr "" - -#: ../../source/specifications/documents.rst:115 -msgid "Not for commercial use" -msgstr "" - -#: ../../source/specifications/documents.rst:116 -msgid "Exemption is for a limited number of special cases" -msgstr "" - -#: ../../source/specifications/documents.rst:117 -msgid "Do not strike a blow at normal business" -msgstr "" - -#: ../../source/specifications/documents.rst:118 -msgid "Do not harm legitimate interest of holder of the right" -msgstr "" - -#: ../../source/specifications/documents.rst:121 -msgid "Exemption for adaptation for disabled people:" -msgstr "" - -#: ../../source/specifications/documents.rst:123 -msgid "Authorization of legal entity" -msgstr "" - -#: ../../source/specifications/documents.rst:124 -msgid "Link to a legal license or a book in stock" -msgstr "" - -#: ../../source/specifications/documents.rst:125 -msgid "No adaptation in standard market" -msgstr "" - -#: ../../source/specifications/documents.rst:126 -msgid "" -"Restrict reproduction, distribution, communication and disposal (DRM, " -"encryption, anti-copy paper or ink, braille)" -msgstr "" - -#: ../../source/specifications/documents.rst:129 -msgid "Diligently adapt" -msgstr "" - -#: ../../source/specifications/documents.rst:130 -msgid "Display all requirements on the web sites (with automatic refresh)" -msgstr "" - -#: ../../source/specifications/documents.rst:132 -msgid "Link to the membership of beneficiary" -msgstr "" - -#: ../../source/specifications/documents.rst:133 -msgid "Active proof of disability of beneficiary" -msgstr "" - -#: ../../source/specifications/documents.rst:134 -msgid "Active license on adaptation" -msgstr "" - -#: ../../source/specifications/documents.rst:136 -msgid "Submission for editing:" -msgstr "" - -#: ../../source/specifications/documents.rst:138 -msgid "Limit by dates and categories" -msgstr "" - -#: ../../source/specifications/documents.rst:139 -msgid "Check-list for requirements" -msgstr "" - -#: ../../source/specifications/documents.rst:140 -msgid "Form with personal data and selection of committee" -msgstr "" - -#: ../../source/specifications/documents.rst:141 -msgid "Add document, automatically convert to internal structure" -msgstr "" - -#: ../../source/specifications/documents.rst:143 -msgid "Check if new format is correct" -msgstr "" - -#: ../../source/specifications/documents.rst:144 -msgid "Personal account for submitter" -msgstr "" - -#: ../../source/specifications/documents.rst:145 -msgid "" -"Traceability of reading and decision process, with reporting to the " -"submitter" -msgstr "" - -#: ../../source/specifications/documents.rst:147 -msgid "Number of documents to review before in the submitter report" -msgstr "" - -#: ../../source/specifications/documents.rst:149 -msgid "Decisions are anonymous, no private data to review a manuscript" -msgstr "" - -#: ../../source/specifications/documents.rst:151 -msgid "Template for contracts" -msgstr "" - -#: ../../source/specifications/documents.rst:152 -msgid "" -"If used by authors: follow-up to your submissions in your own instance, " -"manage contracts and accounting" -msgstr "" - -#: ../../source/specifications/documents.rst:155 -msgid "" -"See also stock and items management for other properties of physical " -"documents." -msgstr "" - -#: ../../source/specifications/help.rst:2 -msgid "Help management" -msgstr "" - -#: ../../source/specifications/help.rst:4 -msgid "Internal and external help and documentation system" -msgstr "" - -#: ../../source/specifications/help.rst:6 -msgid "Ticketing system and contact forms" -msgstr "" - -#: ../../source/specifications/help.rst:7 -msgid "Send notifications" -msgstr "" - -#: ../../source/specifications/help.rst:8 -msgid "Questions and answers" -msgstr "" - -#: ../../source/specifications/help.rst:9 -msgid "Documentation, blog and website management" -msgstr "" - -#: ../../source/specifications/help.rst:10 -msgid "Chat (see :doc:`communication`)" -msgstr "" - -#: ../../source/specifications/help.rst:11 -msgid "Bulletin board system (see :doc:`communication`)" -msgstr "" - -#: ../../source/specifications/help.rst:12 -msgid "Knowledge management" -msgstr "" - -#: ../../source/specifications/help.rst:13 -msgid "Record in beneficiary/user file" -msgstr "" - -#: ../../source/specifications/help.rst:14 -msgid "" -"Credentials on sensitive data depending on level of privacy (health data " -"in database)" -msgstr "" - -#: ../../source/specifications/help.rst:16 -msgid "Private messages to personal adviser" -msgstr "" - -#: ../../source/specifications/help.rst:17 -msgid "ITIL implementation of service center" -msgstr "" - -#: ../../source/specifications/help.rst:18 -msgid "GDPR complaints in separated channel" -msgstr "" - -#: ../../source/specifications/help.rst:19 -msgid "Security complaints in separated channel" -msgstr "" - -#: ../../source/specifications/help.rst:20 -msgid "" -"Public legal information management (DPO, privacy, terms of use, terms of" -" sale, address, legal identifiers, etc.)" -msgstr "" - -#: ../../source/specifications/help.rst:23 -msgid "" -"Internal legal information management (anti-harassment, anti-bribery, " -"human resources documentation, emergency documentation)" -msgstr "" - -#: ../../source/specifications/help.rst:26 -msgid "Quality documentation, process documentation" -msgstr "" - -#: ../../source/specifications/help.rst:27 -#: ../../source/specifications/quality_risk.rst:23 -msgid "Disaster recovery plan" -msgstr "" - -#: ../../source/specifications/help.rst:28 -msgid "Crisis communication manual" -msgstr "" - -#: ../../source/specifications/index.rst:2 -msgid "Specifications" -msgstr "" - -#: ../../source/specifications/index.rst:4 -msgid "" -"You'll find all specifications for future features here. The " -"documentation is removed from this document when the feature is " -"implemented, and rewritten into developing, administration and user " -"manuals." -msgstr "" - -#: ../../source/specifications/learning.rst:2 -msgid "Learning" -msgstr "" - -#: ../../source/specifications/learning.rst:4 -msgid "Room management" -msgstr "" - -#: ../../source/specifications/learning.rst:5 -msgid "Planning management" -msgstr "" - -#: ../../source/specifications/learning.rst:6 -msgid "Student management, grading" -msgstr "" - -#: ../../source/specifications/learning.rst:7 -msgid "Lessons, exams and exercises" -msgstr "" - -#: ../../source/specifications/learning.rst:8 -msgid "Incorporate other documents" -msgstr "" - -#: ../../source/specifications/learning.rst:9 -msgid "Learner projects" -msgstr "" - -#: ../../source/specifications/learning.rst:10 -msgid "For learning in centre or online" -msgstr "" - -#: ../../source/specifications/projects.rst:2 -msgid "Projects" -msgstr "" - -#: ../../source/specifications/projects.rst:4 -msgid "Objectives, quality, risk and task management per project" -msgstr "" - -#: ../../source/specifications/projects.rst:6 -msgid "Specific funds for project" -msgstr "" - -#: ../../source/specifications/projects.rst:7 -msgid "Time sheets per project" -msgstr "" - -#: ../../source/specifications/projects.rst:8 -msgid "Services and products of project (purchases and selling)" -msgstr "" - -#: ../../source/specifications/projects.rst:9 -msgid "Grant management and reporting" -msgstr "" - -#: ../../source/specifications/projects.rst:10 -msgid "Event and convention management" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:2 -msgid "Quality and risk management" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:4 -msgid "Define quality requirements" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:5 -msgid "Internal documentation for process" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:6 -msgid "Manage PDCA cycles" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:7 -msgid "SLR and SLA management" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:8 -msgid "Catalog of services and products" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:9 -msgid "Test management" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:10 -msgid "Audit management" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:11 -msgid "Create objectives for company or by projects" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:12 -msgid "Set tags on objectives (like GDPR, ISO27001, etc.)" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:13 -msgid "" -"Manage tickets, feedbacks and incidents with levels of priority, of " -"frequency and of seriousness" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:16 -msgid "Set indicators automatically or manually" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:17 -msgid "Manage impact of decision, incident, or indicator" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:18 -msgid "Treatment of risks with evaluation on objectives, risks, and costs" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:20 -msgid "Evaluation of social and environmental impacts" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:21 -msgid "Create templates of objectives and risks" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:22 -msgid "Complete ITIL implementation" -msgstr "" - -#: ../../source/specifications/quality_risk.rst:24 -msgid "Online surveys (anonymous and non-anonymous)" -msgstr "" - -#: ../../source/specifications/security.rst:2 -msgid "Security" -msgstr "" - -#: ../../source/specifications/security.rst:4 -msgid "Encrypted database" -msgstr "" - -#: ../../source/specifications/security.rst:5 -msgid "Encrypted hashed passwords" -msgstr "" - -#: ../../source/specifications/security.rst:6 -msgid "Separate server for key management" -msgstr "" - -#: ../../source/specifications/security.rst:7 -msgid "Update database when a key expires" -msgstr "" - -#: ../../source/specifications/security.rst:8 -msgid "Credentials management" -msgstr "" - -#: ../../source/specifications/security.rst:9 -msgid "Limit to two Security Officers" -msgstr "" - -#: ../../source/specifications/security.rst:10 -msgid "Two-factor authentication for all operations" -msgstr "" - -#: ../../source/specifications/security.rst:11 -msgid "Three or four-factor authentication for sensitive operations" -msgstr "" - -#: ../../source/specifications/security.rst:13 -msgid "Send notification to user when accessing on sensitive private data" -msgstr "" - -#: ../../source/specifications/security.rst:15 -msgid "List of private data" -msgstr "" - -#: ../../source/specifications/security.rst:16 -msgid "Auto-expiration of private data with anonymization" -msgstr "" - -#: ../../source/specifications/security.rst:17 -msgid "" -"Technician mode to help users, with no displayed data or fictive data " -"(except with agreement of user and security officer)" -msgstr "" - -#: ../../source/specifications/security.rst:20 -msgid "" -"Digital rights management (LCP) or encryption of all documents except " -"public documents" -msgstr "" - -#: ../../source/specifications/security.rst:22 -msgid "Archive classification (restricted, secret, top secret levels)" -msgstr "" - -#: ../../source/specifications/services.rst:2 -msgid "Online services" -msgstr "" - -#: ../../source/specifications/services.rst:4 -msgid "e-shop" -msgstr "" - -#: ../../source/specifications/services.rst:5 -msgid "e-library" -msgstr "" - -#: ../../source/specifications/services.rst:6 -msgid "e-learning" -msgstr "" - -#: ../../source/specifications/services.rst:7 -msgid "Accessible queue management in reception" -msgstr "" - -#: ../../source/specifications/services.rst:8 -msgid "Public mural screens and vocal announcements" -msgstr "" - -#: ../../source/specifications/services.rst:9 -msgid "Time sheets" -msgstr "" - -#: ../../source/specifications/services.rst:10 -msgid "On-site services with travel expenses" -msgstr "" - -#: ../../source/specifications/services.rst:11 -msgid "Custom reporting of actions in beneficiary file" -msgstr "" - -#: ../../source/specifications/services.rst:12 -msgid "Hotline management" -msgstr "" - -#: ../../source/specifications/services.rst:13 -msgid "Subscription management" -msgstr "" - -#: ../../source/specifications/services.rst:14 -msgid "Capacity supervision" -msgstr "" - -#: ../../source/specifications/services.rst:15 -msgid "Implementation of ITIL and ISO9001 requirements but no certification" -msgstr "" - -#: ../../source/specifications/services.rst:17 -msgid "Catering" -msgstr "" - -#: ../../source/specifications/stocks.rst:2 -msgid "Stocks and items" -msgstr "" - -#: ../../source/specifications/stocks.rst:4 -msgid "" -"Items can be books, historical art, historical monuments, digital books, " -"video, CD, DVD, or what you want" -msgstr "" - -#: ../../source/specifications/stocks.rst:7 -msgid "List all previous and current owners (if needed)" -msgstr "" - -#: ../../source/specifications/stocks.rst:8 -msgid "List all restorations and corresponding reports" -msgstr "" - -#: ../../source/specifications/stocks.rst:9 -msgid "Requirements for preservation, transport and exhibition" -msgstr "" - -#: ../../source/specifications/stocks.rst:11 -msgid "Insurance management for preservation, transport and exhibition" -msgstr "" - -#: ../../source/specifications/stocks.rst:13 -msgid "" -"Security management for preservation, transport and exhibition - " -"connecting to alarm systems" -msgstr "" - -#: ../../source/specifications/stocks.rst:15 -msgid "" -"Set context of archeological discovery with reports, photo, illustration," -" links to articles" -msgstr "" - -#: ../../source/specifications/stocks.rst:17 -msgid "Linked bibliography and documents" -msgstr "" - -#: ../../source/specifications/stocks.rst:18 -msgid "Derivative and composed manufactured products" -msgstr "" - -#: ../../source/specifications/stocks.rst:19 -msgid "" -"Number of items in stock with individual sheet if historical item or " -"secondhand" -msgstr "" - -#: ../../source/specifications/stocks.rst:21 -msgid "Place in stock, in shop or in shelves" -msgstr "" - -#: ../../source/specifications/stocks.rst:22 -msgid "Alerts on minimum and maximum limit in stocks or in shelves" -msgstr "" - -#: ../../source/specifications/stocks.rst:24 -msgid "Maps of stocks, route for employees to prepare orders" -msgstr "" - -#: ../../source/specifications/stocks.rst:25 -msgid "Print labels for shipping" -msgstr "" - -#: ../../source/specifications/stocks.rst:26 -msgid "Manage RMA, serial numbers and guarantee" -msgstr "" - -#: ../../source/specifications/stocks.rst:27 -msgid "Special stock units (for packages)" -msgstr "" - -#: ../../source/specifications/stocks.rst:28 -msgid "Expiry date and queue management (LIFO, FIFO, etc.)" -msgstr "" - -#: ../../source/specifications/stocks.rst:29 -msgid "" -"Automatically update stocks on shipping and reception, projected stocks " -"with current in and out orders" -msgstr "" - -#: ../../source/specifications/stocks.rst:32 -msgid "Provisioning contracts with libraries by adding a panel of titles" -msgstr "" - -#: ../../source/specifications/stocks.rst:34 -msgid "Interact with other stock solutions (like Kardex)" -msgstr "" - -#: ../../source/specifications/stocks.rst:35 -msgid "Display informations on big screens in stocks (configurable)" -msgstr "" - -#: ../../source/specifications/synchronization.rst:2 -msgid "Synchronization and API" -msgstr "" - -#: ../../source/specifications/synchronization.rst:4 -msgid "Mail synchronization with SMTP, IMAP, EAS and JMAP" -msgstr "" - -#: ../../source/specifications/synchronization.rst:5 -msgid "Print automatically" -msgstr "" - -#: ../../source/specifications/synchronization.rst:6 -msgid "" -"Contact, calendar and file synchronization with JMAP, CalDAV, CardDAV and" -" WebDAV" -msgstr "" - -#: ../../source/specifications/synchronization.rst:8 -msgid "SmartSync compatibility" -msgstr "" - -#: ../../source/specifications/synchronization.rst:9 -msgid "REST API (documented)" -msgstr "" - -#: ../../source/specifications/synchronization.rst:10 -msgid "GraphQL API" -msgstr "" - -#: ../../source/specifications/synchronization.rst:11 -msgid "DODP - Daisy Online Delivery Protocol" -msgstr "" - -#: ../../source/specifications/synchronization.rst:12 -msgid "XMPP for instant messages, audio and video chat" -msgstr "" - -#: ../../source/specifications/synchronization.rst:13 -msgid "OMEMO support" -msgstr "" - -#: ../../source/specifications/synchronization.rst:14 -msgid "SIP for phone calls" -msgstr "" - -#: ../../source/specifications/synchronization.rst:15 -msgid "LDAP and ActiveDirectory compatibility" -msgstr "" - -#: ../../source/specifications/synchronization.rst:16 -msgid "KMIP protocol for key management" -msgstr "" - -#: ../../source/specifications/synchronization.rst:17 -msgid "Kerberos, OAUTH2, FIDO, X509, PKCS11, CAS, SAML and OpenID authentication" -msgstr "" - -#: ../../source/specifications/synchronization.rst:19 -msgid "Atom/RSS feeds" -msgstr "" - -#: ../../source/specifications/synchronization.rst:20 -msgid "FTP, SFTP and FTPS compatibility" -msgstr "" - -#: ../../source/specifications/synchronization.rst:21 -msgid "Send HTTP/HTTPS requests" -msgstr "" - -#: ../../source/specifications/synchronization.rst:22 -msgid "ESB features, low-code and automation" -msgstr "" - diff --git a/docs/source/locale/nl/LC_MESSAGES/user.po b/docs/source/locale/nl/LC_MESSAGES/user.po deleted file mode 100644 index 58d7a24..0000000 --- a/docs/source/locale/nl/LC_MESSAGES/user.po +++ /dev/null @@ -1,28 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2021, Nerv Project ASBL -# This file is distributed under the same license as the Nerv Tales Network -# Documentation package. -# FIRST AUTHOR , 2021. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Nerv Tales Network Documentation main\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 16:02+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.9.1\n" - -#: ../../source/user/index.rst:2 -msgid "User manual" -msgstr "" - -#: ../../source/user/index.rst:4 -msgid "Nothing here. Sorry, we're working on the first version of software." -msgstr "" - diff --git a/docs/source/refs.bib b/docs/source/refs.bib deleted file mode 100644 index 63f9d89..0000000 --- a/docs/source/refs.bib +++ /dev/null @@ -1,923 +0,0 @@ -@misc{ISO216, - title="ISO 216:2007 Writing paper and certain classes of printed matter — Trimmed sizes — A and B series, and indication of machine direction", - publisher="International Organization for Standardization (ISO)", - year=2007 -} -@misc{ISO639, - title="ISO 639 Codes for the representation of names of languages", - publisher="International Organization for Standardization (ISO)", - year=1998 -} -@misc{ISO690, - title="ISO 690:2010 Information and documentation — Guidelines for bibliographic references and citations to information resources", - publisher="International Organization for Standardization (ISO)", - year=2010 -} -@misc{ISO2108, - title="ISO 2108:2017 Information and documentation — International Standard Book Number (ISBN)", - publisher="International Organization for Standardization (ISO)", - year=2017 -} -@misc{ISO3166, - title="ISO 3166:2020 Codes for the representation of names of countries and their subdivisions", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO3297, - title="ISO 3297:2020 Information and documentation — International standard serial number (ISSN)", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO4217, - title="ISO 4217:2015 Codes for the representation of currencies", - publisher="International Organization for Standardization (ISO)", - year=2015 -} -@misc{ISO8613, - title="ISO 8613 Information technology — Open Document Architecture (ODA) and Interchange Format: Open Document Interchange Format", - publisher="International Organization for Standardization (ISO)", - year=1994 -} -@misc{ISO9001, - title="ISO 9001:2015 Quality Management Systems", - publisher="International Organization for Standardization (ISO)", - year=2015 -} -@misc{ISO9126, - title="ISO 9126 Software engineering — Product quality", - publisher="International Organization for Standardization (ISO)", - year=2004 -} -@misc{ISO9241, - title="ISO 9241 Ergonomics of human-system interaction", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO9646, - title="ISO 9646 Information technology — Open Systems Interconnection — Conformance testing methodology and framework", - publisher="International Organization for Standardization (ISO)", - year=1998 -} -@misc{ISO10007, - title="ISO 10007:2017 Quality management — Guidelines for configuration management", - publisher="International Organization for Standardization (ISO)", - year=2017 -} -@misc{ISO14001, - title="ISO 14001:2015 - Environmental Management Systems", - publisher="International Organization for Standardization (ISO)", - year=2015 -} -@misc{ISO14040, - title="ISO 14040:2006 Environmental management — Life cycle assessment — Principles and framework", - publisher="International Organization for Standardization (ISO)", - year=2006 -} -@misc{ISO14641, - title="ISO 14641:2018 Electronic document management — Design and operation of an information system for the preservation of electronic documents — Specifications", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO14644, - title="ISO 14644 Cleanrooms and associated controlled environments", - publisher="International Organization for Standardization (ISO)", - year=2021 -} -@misc{ISO15408, - title="15408 Information technology — Security techniques — Evaluation criteria for IT security", - publisher="International Organization for Standardization (ISO)", - year=2009 -} -@misc{ISO15836, - title="ISO 15836 Information and documentation — The Dublin Core metadata element set", - publisher="International Organization for Standardization (ISO)", - year=2009 -} -@misc{ISO15924, - title="ISO 15924:2004 Information and documentation — Codes for the representation of names of scripts", - publisher="International Organization for Standardization (ISO)", - year=2004 -} -@misc{ISO17000, - title="ISO 17000:2020 Conformity assessment — Vocabulary and general principles", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO17011, - title="ISO 17011:2017 Conformity assessment — Requirements for accreditation bodies accrediting conformity assessment bodies", - publisher="International Organization for Standardization (ISO)", - year=2017 -} -@misc{ISO17020, - title="ISO 17020:2012 Conformity assessment — Requirements for the operation of various types of bodies performing inspection", - publisher="International Organization for Standardization (ISO)", - year=2012 -} -@misc{ISO17021, - title="ISO 17021 Conformity assessment — Requirements for bodies providing audit and certification of management systems", - publisher="International Organization for Standardization (ISO)", - year=2015 -} -@misc{ISO17022, - title="ISO 17022:2012 Conformity assessment — Requirements and recommendations for content of a third-party audit report on management systems", - publisher="International Organization for Standardization (ISO)", - year=2012 -} -@misc{ISO17024, - title="ISO 17024:2012 Conformity assessment — General requirements for bodies operating certification of persons", - publisher="International Organization for Standardization (ISO)", - year=2012 -} -@misc{ISO17025, - title="ISO 17025:2017 General requirements for the competence of testing and calibration laboratories", - publisher="International Organization for Standardization (ISO)", - year=2017 -} -@misc{ISO17033, - title="ISO 17033:2019 Ethical claims and supporting information — Principles and requirements", - publisher="International Organization for Standardization (ISO)", - year=2019 -} -@misc{ISO18045, - title="ISO 18045:2008 Information technology — Security techniques — Methodology for IT security evaluation", - publisher="International Organization for Standardization (ISO)", - year=2008 -} -@misc{ISO18788, - title="ISO 18788:2015 Management system for private security operations — Requirements with guidance for use", - publisher="International Organization for Standardization (ISO)", - year=2015 -} -@misc{ISO19118, - title="ISO 19118:2005 Geographic information — Encoding", - publisher="International Organization for Standardization (ISO)", - year=2005 -} -@misc{ISO19131, - title="ISO 19131:2007 Geographic information — Data product specifications", - publisher="International Organization for Standardization (ISO)", - year=2007 -} -@misc{ISO19136, - title="ISO 19136 Geographic information — Geography Markup Language (GML)", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO21000-2, - title="ISO 21000-2:2005 Information technology — Multimedia framework (MPEG-21) — Part 2: Digital Item Declaration", - publisher="International Organization for Standardization (ISO)", - url="https://standards.iso.org/ittf/PubliclyAvailableStandards/c041112_ISO_IEC_21000-2_2005%28E%29.zip", - year=2005 -} -@misc{ISO21001, - title="ISO 21001:2018 Educational organizations — Management systems for educational organizations — Requirements with guidance for use", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO21946, - title="ISO 21946:2018 Information and documentation — Appraisal for managing records", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO22000, - title="ISO 22000:2018 Food safety management systems — Requirements for any organization in the food chain", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO22003, - title="ISO 22003:2013 Food safety management systems — Requirements for bodies providing audit and certification of food safety management systems", - publisher="International Organization for Standardization (ISO)", - year=2013 -} -@misc{ISO22005, - title="ISO 22005:2007 Traceability in the feed and food chain — General principles and basic requirements for system design and implementation", - publisher="International Organization for Standardization (ISO)", - year=2007 -} -@misc{ISO22316, - title="ISO 22316:2017 Security and resilience — Organizational resilience — Principles and attributes", - publisher="International Organization for Standardization (ISO)", - year=2017 -} -@misc{ISO23081, - title="ISO 23081 Information and documentation — Records management processes — Metadata for records", - publisher="International Organization for Standardization (ISO)", - year=2017 -} -@misc{ISO26000, - title="ISO 26000:2010 Guidance on social responsibility", - publisher="International Organization for Standardization (ISO)", - year=2010 -} -@misc{ISO27001, - title="ISO 27001:2013 - Information Technology", - publisher="International Organization for Standardization (ISO)", - year=2013 -} -@misc{ISO27002, - title="ISO 27002:2013 Information technology — Security techniques — Code of practice for information security controls", - publisher="International Organization for Standardization (ISO)", - year=2013 -} -@misc{ISO27004, - title="ISO 27004:2016 Information technology — Security techniques — Information security management — Monitoring, measurement, analysis and evaluation", - publisher="International Organization for Standardization (ISO)", - year=2016 -} -@misc{ISO27005, - title="ISO 27005:2018 Information technology — Security techniques — Information security risk management", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO27006, - title="ISO 27006:2015 Information technology — Security techniques — Requirements for bodies providing audit and certification of information security management systems", - publisher="International Organization for Standardization (ISO)", - year=2015 -} -@misc{ISO27007, - title="ISO 27007:2020 Information security, cybersecurity and privacy protection — Guidelines for information security management systems auditing", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO27018, - title="ISO 27018:2019 Information technology — Security techniques — Code of practice for protection of personally identifiable information (PII) in public clouds acting as PII processors", - publisher="International Organization for Standardization (ISO)", - year=2019 -} -@misc{ISO27031, - title="ISO 27031:2011 Information technology — Security techniques — Guidelines for information and communication technology readiness for business continuity", - publisher="International Organization for Standardization (ISO)", - year=2011 -} -@misc{ISO27034, - title="ISO 27034 Information technology — Application security", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO27035, - title="ISO 27035 Information technology — Information security incident management", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO27036, - title="ISO 27036 Information technology — Security techniques — Information security for supplier relationships", - publisher="International Organization for Standardization (ISO)", - year=2016 -} -@misc{ISO27037, - title="ISO 27037:2012 Information technology — Security techniques — Guidelines for identification, collection, acquisition and preservation of digital evidence", - publisher="International Organization for Standardization (ISO)", - year=2012 -} -@misc{ISO27038, - title="ISO 27038:2014 Information technology — Security techniques — Specification for digital redaction", - publisher="International Organization for Standardization (ISO)", - year=2014 -} -@misc{ISO27701, - title="ISO 27701:2019 Security techniques — Extension to ISO/IEC 27001 and ISO/IEC 27002 for privacy information management — Requirements and guidelines", - publisher="International Organization for Standardization (ISO)", - year=2019 -} -@misc{ISO27799, - title="ISO 27799:2016 Health informatics — Information security management in health using ISO/IEC 27002", - publisher="International Organization for Standardization (ISO)", - year=2016 -} -@misc{ISO30300, - title="ISO 30300:2020 Information and documentation — Records management — Core concepts and vocabulary", - publisher="International Organization for Standardization (ISO)", - year=2020 -} -@misc{ISO31000, - title="ISO 31000:2018 - Risk Management Guidelines", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO31010, - title="ISO 31010:2019 Risk management — Risk assessment techniques", - publisher="International Organization for Standardization (ISO)", - year=2019 -} -@misc{ISO37001, - title="ISO 37001:2016 Anti-bribery management systems — Requirements with guidance for use", - publisher="International Organization for Standardization (ISO)", - year=2016 -} -@misc{ISO45001, - title="ISO 45001:2018 Occupational health and safety management systems — Requirements with guidance for use", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO50001, - title="ISO 50001:2018 Energy management systems — Requirements with guidance for use", - publisher="International Organization for Standardization (ISO)", - year=2018 -} -@misc{ISO50002, - title="ISO 50002:2014 Energy audits — Requirements with guidance for use", - publisher="International Organization for Standardization (ISO)", - year=2014 -} -@misc{ISO50003, - title="ISO 50003:2021 Energy management systems — Requirements for bodies providing audit and certification of energy management systems", - publisher="International Organization for Standardization (ISO)", - year=2021 -} -@misc{EN301549, - title="EN301549 v3.2.1 Accessibility requirements for ICT products and services", - author="ETSI", - publisher="ETSI", - url="https://www.etsi.org/deliver/etsi_en/301500_301599/301549/03.02.01_60/en_301549v030201p.pdf", - year=2021 -} -@misc{DAISY3, - title="DAISY Format 3", - publisher="DAISY Consortium", - url="https://daisy.org/activities/standards/daisy/daisy-3/", - year=2008 -} -@misc{PDTB, - title="Protected Digital Talking Books", - publisher="DAISY Consortium", - url="https://daisy.org/activities/standards/pdtb/", - year=2007 -} -@misc{DODP, - title="The DAISY Online Delivery Protocol", - publisher="DAISY Consortium", - url="https://daisy.org/activities/standards/dodp/", - year=2010 -} -@book{ITIL, - title="ITIL® Foundation: ITIL 4 Edition", - author="AXELOS", - publisher="TSO (The Stationery Office)", - isbn="9780113316069", - year=2019 -} -@misc{XMPP, - title="RFC6120 Extensible Messaging and Presence Protocol (XMPP): Core", - publisher="IETF", - author="P. Saint-Andre, Ed.", - organization="Cisco", - year=2011, - url="https://www.rfc-editor.org/rfc/rfc6120.txt", - issn="2070-1721" -} -@misc{XMPP-IM, - title="RFC6121 Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence", - publisher="IETF", - author="P. Saint-Andre, Ed.", - organization="Cisco", - year=2011, - url="https://www.rfc-editor.org/rfc/rfc6121.txt", - issn="2070-1721" -} -@misc{JMAP, - title="RFC8620 The JSON Meta Application Protocol (JMAP)", - author="N. Jenkins and C. Newman", - organization="Fastmail, Oracle", - publisher="IETF", - year=2019, - url="https://www.rfc-editor.org/rfc/rfc8620.txt", - issn="2070-1721" -} -@misc{JMAP-Mail, - title="RFC8621 The JSON Meta Application Protocol (JMAP) for Mail", - author="N. Jenkins and C. Newman", - organization="Fastmail, Oracle", - publisher="IETF", - year=2019, - url="https://www.rfc-editor.org/rfc/rfc8621.txt", - issn="2070-1721" -} -@misc{JMAP-Websockets, - title="RFC8887 The JSON Meta Application Protocol (JMAP) Subprotocol for WebSocket", - author="K. Murchison", - organization="Fastmail", - publisher="IETF", - year=2020, - url="https://www.rfc-editor.org/rfc/rfc8887.txt", - issn="2070-1721" -} -@misc{JMAP-Calendars, - title="JMAP Calendars", - publisher="JMAP Consortium", - year=2021, - url="https://jmap.io/spec-calendars.html" -} -@misc{JMAP-Sharing, - title="JMAP Sharing", - publisher="JMAP Consortium", - year=2021, - url="https://jmap.io/spec-sharing.html" -} -@misc{JMAP-Contacts, - title="JMAP Contacts", - publisher="JMAP Consortium", - year=2021, - url="https://jmap.io/spec-contacts.html" -} -@misc{JMAP-Tasks, - title="JMAP Tasks", - publisher="JMAP Consortium", - year=2021, - url="https://jmap.io/spec-tasks.html" -} -@misc{IMAP, - title="RFC3501 INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1", - author="M. Crispin", - organization="University of Washington", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc3501.txt", - year=2003 -} -@misc{SMTP, - title="RFC5321 Simple Mail Transfer Protocol", - author="J. Klensin", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc5321.txt", - year=2008 -} -@misc{HTTP, - title="RFC7231 Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content", - author="R. Fielding, Ed. and J. Reschke, Ed.", - organization="Adobe \& greenbytes", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc7231.txt", - issn="2070-1721", - year=2014 -} -@misc{HTTP2, - title="RFC7540 Hypertext Transfer Protocol Version 2 (HTTP/2)", - author="M. Belshe and R. Peon and M. Thomson, Ed.", - organization="BitGo, Google Inc and Mozilla", - issn="2070-1721", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc7540.txt", - year=2015 -} -@misc{WebDAV, - title="RFC3744 Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol", - author="G. Clemm and J. Reschke and E. Sedlar and J. Whitehead", - organization="IBM, greenbytes, Oracle Corporation, U. C. Santa Cruz", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc3744.txt", - year=2004 -} -@misc{CalDAV, - title="RFC4791 Calendaring Extensions to WebDAV (CalDAV)", - author="C. Daboo and B. Desruisseaux and L. Dusseault", - organization="Apple, Oracle, CommerceNet", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc4791.txt", - year=2007 -} -@misc{WebDAVExt, - title="RFC4918 HTTP Extensions for Web Distributed Authoring and Versioning (WebDAV)", - author="L. Dusseault, Ed.", - organization="CommerceNet", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc4918.txt", - year=2007 -} -@misc{iCalendar, - title="RFC5545 Internet Calendaring and Scheduling Core Object Specification (iCalendar)", - author="B. Desruisseaux, Ed.", - organization="Oracle", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc5545.txt", - year=2009 -} -@misc{iTIP, - title="RFC5546 iCalendar Transport-Independent Interoperability Protocol (iTIP)", - author="C. Daboo, Ed.", - organization="Apple Inc.", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc5546.txt", - year=2009 -} -@misc{CardDAV, - title="RFC6352 CardDAV: vCard Extensions to Web Distributed Authoring and Versioning (WebDAV)", - author="C. Daboo", - organization="Apple", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc6352.txt", - issn="2070-1721", - year=2011 -} -@misc{SIP, - title="RFC3261 SIP: Session Initiation Protocol", - author="J. Rosenberg and H. Schulzrinne and G. Camarillo and A. Johnston and J. Peterson and R. Sparks and M. Handley and E. Schooler", - organization="dynamicsoft, Columbia U., Ericsson, WorldCom, Neustar, dynamicsoft, ICIR, AT\&T", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc3261.txt", - year=2002 -} -@misc{Atom, - title="RFC4287 The Atom Syndication Format", - author="M. Nottingham, Ed. and R. Sayre, Ed.", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc4287.txt", - year=2005 -} -@misc{RSS, - title="RSS 2.0 Specification", - url="https://www.rssboard.org/rss-specification", - author="RSS Advisory Board", - publisher="RSS Advisory Board", - year=2009 -} -@misc{ISBD, - title="International Standard Bibliographic Description", - author="IFLA", - publisher="IFLA", - year=2011 -} -@misc{MARC21, - title="MARC 21", - author="Library of Congress", - publisher="Library of Congress", - url="https://www.loc.gov/marc/bibliographic/", - year=2020 -} -@misc{MarcXML, - title="MarcXML", - author="Library of Congress", - publisher="Library of Congress", - url="https://www.loc.gov/standards/marcxml/", - year=2020 -} -@misc{UNIMARC, - title="UNIMARC Manual – Bibliographic Format, 3rd ed.", - author="IFLA", - publisher="IFLA", - isbn="978-3-598-24284-7", - year=2008 -} -@misc{DCMI, - title="RFC5013 The Dublin Core Metadata Element Set", - author="J. Kunze and T. Baker", - organization="University of California and Dublin Core Metadata Initiative", - publisher="IETF", - url="https://www.rfc-editor.org/rfc/rfc5013.txt", - issn="2070-1721", - year=2007 -} -@misc{BIBFRAME, - title="BIBFRAME Model, Vocabulary, Guidelines, Examples, Notes, Analyses", - author="Library of Congress", - publisher="Library of Congress", - url="https://www.loc.gov/bibframe/docs/index.html", - year=2016 -} -@misc{MODS, - title="MODS Metadata Object Description Schema", - author="Library of Congress", - publisher="Library of Congress", - url="https://www.loc.gov/standards/mods/", - year=2018 -} -@misc{EAD, - title=" Encoded Archival Description", - author="Library of Congress", - publisher="Library of Congress", - url="https://loc.gov/ead/", - year=2021 -} -@misc{METS, - title="METS Metadata Encoding \& Transmission Standard", - author="Library of Congress", - publisher="Library of Congress", - url="https://www.loc.gov/standards/mets/mets-schemadocs.html", - year=2010 -} -@misc{PREMIS, - title="PREMIS Data Dictionary for Preservation Metadata", - author="Library of Congress", - publisher="Library of Congress", - url="https://www.loc.gov/standards/premis/v3/premis-3-0-final.pdf", - year=2015 -} -@misc{MPEG21DIDL, - title="MPEG 21 DIDL XML Schema", - publisher="International Organization for Standardization (ISO)", - url="https://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-21_schema_files/did/didl.xsd", - year=2005 -} -@misc{RDA, - title="RDA: Resource Description and Access", - author="RDA Steering Committee", - publisher="RDA Steering Committee", - url="https://www.rdatoolkit.org", - year=2016 -} -@misc{RDA-FR, - title="Transposition Française de RDA", - author="BnF", - publisher="BnF", - url="https://www.transition-bibliographique.fr/rda-fr/pdf-regles-rda-fr/", - year=2020 -} -@misc{FRAD, - title="Functional Requirements for Authority Data", - author="IFLA", - publisher="IFLA", - url="https://www.ifla.org/files/assets/cataloguing/frad/frad_2013.pdf", - year=2013 -} -@misc{FRSAD, - title="Functional Requirements for Subject Authority Data (FRSAD)", - author="IFLA", - publisher="IFLA", - url="https://www.ifla.org/files/assets/classification-and-indexing/functional-requirements-for-subject-authority-data/frsad-final-report.pdf", - year=2011 -} -@misc{FRBR, - title="Functional Requirements for Bibliographic Records", - author="IFLA", - publisher="IFLA", - url="https://www.ifla.org/files/assets/cataloguing/frbr/frbr_2008.pdf", - year=2009 -} -@misc{LRM, - title="IFLA Library Reference Model", - author="IFLA", - publisher="IFLA", - url="https://www.ifla.org/files/assets/cataloguing/frbr-lrm/ifla-lrm-august-2017_rev201712.pdf", - year=2017 -} -@misc{DRMLCP, - title="Readium Licensed Content Protection 1.0", - author="EDRLab", - publisher="EDRLab", - url="https://readium.org/lcp-specs/releases/lcp/latest.html", - year=2019 -} -@misc{DRMLCPStatus, - title="Readium License Status Document 1.0", - author="EDRLab", - publisher="EDRLab", - url="https://readium.org/lcp-specs/releases/lsd/latest.html", - year=2018 -} -@misc{ActivityPub, - title="ActivityPub", - author="Christopher Lemmer Webber and Jessica Tallon and Erin Shepherd and Amy Guy and Evan Prodromou", - publisher="W3C", - url="https://www.w3.org/TR/2018/REC-activitypub-20180123/", - year=2018 -} -@misc{IFRS, - title="IFRS Conceptual Framework for Financial Reporting", - url="https://www.ifrs.org/issued-standards/list-of-standards/conceptual-framework.html/content/dam/ifrs/publications/html-standards/english/2021/issued/cf/",, - author="IFRS", - publisher="IFRS", - year=2021 -} -@misc{COGA-Usable, - title="Making Content Usable for People with Cognitive and Learning Disabilities", - author="Lisa Seeman-Horwitz and Rachael Bradley Montgomery and Steve Lee and Ruoxi Ran", - publisher="W3C", - url="https://www.w3.org/TR/2021/NOTE-coga-usable-20210429/", - year=2021 -} -@misc{WCAG3.0, - title="W3C Accessibility Guidelines (WCAG) 3.0", - url="https://www.w3.org/TR/2021/WD-wcag-3.0-20210121/", - author="Jeanne Spellman and Rachael Montgomery and Shawn Lauriat and Michael Cooper", - publisher="W3C", - year=2021 -} -@misc{ATAG, - title="Authoring Tool Accessibility Guidelines (ATAG) 2.0", - url="https://www.w3.org/TR/2015/REC-ATAG20-20150924/", - author="Jan Richards and Jeanne Spellman and Jutta Treviranus", - publisher="W3C", - year=2015 -} -@misc{UAAG, - title="UAAG 2.0 Reference: Explanations, Examples, and Resources for User Agent Accessibility Guidelines 2.0", - url="https://www.w3.org/TR/2015/NOTE-UAAG20-Reference-20151215/", - author="James Allan and Greg Lowney and Kim Patch and Jeanne Spellman", - publisher="W3C", - year=2015 -} -@misc{XMLSig, - title="XML Signature Syntax and Processing Version 1.1", - url="https://www.w3.org/TR/2013/REC-xmldsig-core1-20130411/", - author="Mark Bartel and John Boyer and Barb Fox and Brian LaMacchia and Ed Simon", - publisher="W3C", - year=2013 -} -@misc{XMLEnc, - title="XML Encryption Syntax and Processing Version 1.1", - url="https://www.w3.org/TR/2013/REC-xmlenc-core1-20130411/", - author="Takeshi Imamura and Blair Dillaway and Ed Simon and Kelvin Yiu and Magnus Nyström", - publisher="W3C", - year=2013 -} -@misc{EPUB, - title="EPUB 3.3", - url="https://www.w3.org/TR/2021/WD-epub-33-20210406/", - author="Matt Garrish and Ivan Herman and Dave Cramer and Garth Conboy and Marisa DeMeglio and Daniel Weck", - publisher="W3C", - year=2021 -} -@misc{EPUBRS, - title="EPUB Reading Systems 3.3", - url="https://www.w3.org/TR/2021/WD-epub-rs-33-20210406/", - author="Dave Cramer and Matt Garrish and Ivan Herman and Garth Conboy and Marisa DeMeglio and Daniel Weck", - publisher="W3C", - year=2021 -} -@misc{EPUBa11y, - title="EPUB Accessibility 1.0", - url="https://www.w3.org/Submission/2017/SUBM-epub-a11y-20170125/", - author="Romain Deltour and Markus Gylling and Bernhard Heinser and Jean Kaplansky and Madeleine Rothberg and Tzviya Siegman and Jason White", - publisher="W3C", - year=2017 -} -@misc{EPUBa11yTech, - title="EPUB Accessibility Techniques 1.1", - url="https://www.w3.org/TR/2021/NOTE-epub-a11y-tech-11-20210223/", - author="Matt Garrish and George Kerscher and Charles LaPierre and Gregorio Pellegrino and Avneesh Singh", - publisher="W3C", - year=2021 -} -@misc{EPUBrenditions, - title="EPUB Multiple-Rendition Publications 1.1", - url="https://www.w3.org/TR/2021/NOTE-epub-multi-rend-11-20210112/", - author="Matt Garrish and Jim Lester and Takeshi Kanai", - publisher="W3C", - year=2021 -} -@misc{PUBManifest, - title="Publication Manifest", - url="https://www.w3.org/TR/2020/REC-pub-manifest-20201110/", - author="Matt Garrish and Ivan Herman", - publisher="W3C", - year=2020 -} -@misc{AudiobooksLPF, - title="Audiobooks", - url="https://www.w3.org/TR/2020/REC-audiobooks-20201110/", - author="Wendy Reid and Matt Garrish", - publisher="W3C", - year=2020 -} -@misc{TTML2, - title="Timed Text Markup Language 2 (TTML2)", - url="https://www.w3.org/TR/2018/REC-ttml2-20181108/", - author="Glenn Adams and Cyril Concolato and Mike Dolan and Sean Hayes and Frans de Jong and Dae Kim and Pierre-Anthony Lemieux and Nigel Megitt and Dave Singer and Jerry Smith and Andreas Tai", - publisher="W3C", - year=2018 -} -@misc{HTML5, - title="HTML Standard", - url="https://html.spec.whatwg.org/", - author="WHATWG", - publisher="WHATWG", - year=2021 -} -@misc{CSS3, - title="CSS Cascading and Inheritance Level 3", - url="https://www.w3.org/TR/2021/REC-css-cascade-3-20210211/", - author="Elika J. Etemad and Tab Atkins Jr.", - publisher="W3C", - year=2021 -} -@misc{CSS2020, - title="CSS Snapshot 2020", - url="https://www.w3.org/TR/2020/NOTE-css-2020-20201222/", - author="Tab Atkins Jr. and Elika J. Etemad and Florian Rivoal", - publisher="W3C", - year=2020 -} -@misc{CSS3Speech, - title="CSS Speech Module", - url="https://www.w3.org/TR/2020/CR-css-speech-1-20200310/", - author="Dave Raggett and Daniel Glazman and Claudio Santambrogio", - publisher="W3C", - year=2020 -} -@misc{DID, - title="Decentralized Identifiers (DIDs) v1.0", - url="https://www.w3.org/TR/2021/CRD-did-core-20210515/", - author="Drummond Reed and Manu Sporny and Dave Longley and Christopher Allen and Ryan Grant and Markus Sabadello", - publisher="W3C", - year=2021 -} -@misc{WebShare, - title="Web Share API", - url="https://www.w3.org/TR/2021/WD-web-share-20210120/", - author="Matt Giuca and Eric Willigers", - publisher="W3C", - year=2021 -} -@misc{WebVTT, - title="WebVTT: The Web Video Text Tracks Format", - url="https://www.w3.org/TR/2019/CR-webvtt1-20190404/", - author="Simon Pieters and Silvia Pfeiffer and Philip Jägenstedt and Ian Hickson", - publisher="W3C", - year=2019 -} -@misc{RDF, - title="RDF 1.1 XML Syntax", - url="https://www.w3.org/TR/2014/REC-rdf-syntax-grammar-20140225/", - author="Fabien Gandon and Guus Schreiber", - publisher="W3C", - year=2014 -} -@misc{RDFSchema, - title="RDF Schema 1.1", - url="https://www.w3.org/TR/2014/REC-rdf-schema-20140225/", - author="Dan Brickley and R.V. Guha", - publisher="W3C", - year=2004 -} -@misc{RDFConcepts, - title="RDF 1.1 Concepts and Abstract Syntax", - url="https://www.w3.org/TR/2014/REC-rdf11-concepts-20140225/", - author="Richard Cyganiak and David Wood and Markus Lanthaler", - publisher="W3C", - year=2014 -} -@misc{RDFa, - title="RDFa Core 1.1 - Third Edition", - url="https://www.w3.org/TR/2015/REC-rdfa-core-20150317/", - author="Ben Adida and Mark Birbeck and Shane McCarron and Ivan Herman", - publisher="W3C", - year=2015 -} -@misc{JSONLD, - title="JSON-LD 1.1 A JSON-based Serialization for Linked Data", - url="https://www.w3.org/TR/2020/REC-json-ld11-20200716/", - author="Manu Sporny and Dave Longley and Gregg Kellogg and Markus Lanthaler and Pierre-Antoine Champin and Niklas Lindström", - publisher="W3C", - year=2020 -} -@misc{SMIL3, - title="Synchronized Multimedia Integration Language (SMIL 3.0)", - author="Dick Bulterman and Jack Jansen and Pablo Cesar and Sjoerd Mullender and Eric Hyche and Marisa DeMeglio and Julien Quint and Hiroshi Kawamura and Daniel Weck and Xabiel García Pañeda and David Melendi and Samuel Cruz-Lara and Marcin Hanclik and Daniel F. Zucker and Thierry Michel", - publisher="W3C", - url="https://www.w3.org/TR/2008/REC-SMIL3-20081201/", - year=2008 -} -@misc{96/9/EC, - title="Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases", - publisher="European Parliament", - author="European Parliament", - url="https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX%3A31996L0009", - year=1996 -} -@misc{2001/29/EC, - title="DIRECTIVE 2001/29/EC OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 22 May 2001 on the harmonisation of certain aspects of copyright and related rights in the information society", - author="European Parliament", - publisher="European Parliament", - url="https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32001L0029", - year=2001 -} -@misc{2006/115/EC, - title="Directive 2006/115/EC of the European Parliament and of the Council of 12 December 2006 on rental right and lending right and on certain rights related to copyright in the field of intellectual property (codified version)", - author="European Parliament", - publisher="European Parliament", - url="https://eur-lex.europa.eu/legal-content/EN/ALL/?uri=CELEX%3A32006L0115", - year=2006 -} -@misc{2009/24/EC, - title="DIRECTIVE 2009/24/EC OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 23 April 2009 on the legal protection of computer programs", - author="European Parliament", - publisher="European Parliament", - url="https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32009L0024", - year=2009 -} -@misc{2012/28/EU, - title="DIRECTIVE 2012/28/EU OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 25 October 2012 on certain permitted uses of orphan works", - author="European Parliament", - publisher="European Parliament", - url="https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32012L0028", - year=2012 -} -@misc{2017/1564, - title="DIRECTIVE (EU) 2017/1564 OF THE EUROPEAN PARLIAMENT AND OF THE COUNCIL of 13 September 2017 on certain permitted uses of certain works and other subject matter protected by copyright and related rights for the benefit of persons who are blind, visually impaired or otherwise print-disabled and amending Directive 2001/29/EC on the harmonisation of certain aspects of copyright and related rights in the information society", - author="European Parliament", - publisher="European Parliament", - url="https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32017L1564", - year=2017 -} -@misc{2019/790, - title="Directive (EU) 2019/790 of the European Parliament and of the Council of 17 April 2019 on copyright and related rights in the Digital Single Market and amending Directives 96/9/EC and 2001/29/EC (Text with EEA relevance.)", - author="European Parliament", - publisher="European Parliament", - url="https://eur-lex.europa.eu/legal-content/EN/TXT/?uri=celex%3A32019L0790", - year=2019 -} -@misc{2013/488, - title="COUNCIL DECISION of 23 September 2013 on the security rules for protecting EU classified information", - author="The Council of the European Union", - publisher="The Council of the European Union", - url="https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32013D0488", - year=2013 -} diff --git a/docs/source/roadmap.rst b/docs/source/roadmap.rst deleted file mode 100644 index a6214ca..0000000 --- a/docs/source/roadmap.rst +++ /dev/null @@ -1,2 +0,0 @@ -Roadmap -======= diff --git a/docs/source/specifications/accessibility.rst b/docs/source/specifications/accessibility.rst deleted file mode 100644 index 6b68f02..0000000 --- a/docs/source/specifications/accessibility.rst +++ /dev/null @@ -1,10 +0,0 @@ -Accessibility -============= - -- WCAG 3.0 :cite:p:`WCAG3.0` Gold level -- Conforms to COGA-Usable :cite:p:`COGA-Usable`, - UAAG :cite:p:`UAAG` and ATAG :cite:p:`ATAG` -- Compatibility with EN301549 :cite:p:`EN301549` - requirements -- Client in Qt, Web, telnet, SSH, TUI and audio only -- Hardware client diff --git a/docs/source/specifications/accounting.rst b/docs/source/specifications/accounting.rst deleted file mode 100644 index 19668b4..0000000 --- a/docs/source/specifications/accounting.rst +++ /dev/null @@ -1,22 +0,0 @@ -Accounting -========== - -- Implementing IFRS standard for small and middle-sized - organization (but no certification) -- Double-entry book-keeping -- Multi-currency with conversion rates -- CO2 equivalent double-entry book-keeping (parallel - accounting to manage environmental impacts) -- Purchases, loans, subscriptions and selling -- Point of sale, with specific screens for catering, - libraries, shops, etc. -- Self-service point of sale -- Payment terminal -- Legal reporting -- VAT declaration in XML for Belgium -- Human resources -- Paid and unpaid leaves -- Payroll -- Taxes calculator (general, specific products, - employees, etc.) -- Copyright bills, copyright exemption declarations diff --git a/docs/source/specifications/communication.rst b/docs/source/specifications/communication.rst deleted file mode 100644 index 087c0ad..0000000 --- a/docs/source/specifications/communication.rst +++ /dev/null @@ -1,33 +0,0 @@ -Communication -============= - -- Secure chat and group chat (XMPP backend) -- Text, audio and video chatting (XMPP backend) -- Add reactions and replies to messages -- Link to documents or other object in Nerv Tales - Network (use generic link to object) -- Mail client and delivery system -- Share email folders and addresses with other - users -- Confidential emails must disappear after the first - user set it as it (like disability proof) -- Convert emails to tickets, save attachments as - documents -- SMTP, IMAP, EAS and JMAP compatibility -- Contact management with tags and groups (CardDAV - compatibility) -- Birthday announcements -- Event management and sharing (CalDAV - compatibility) -- Calendar management (internal and external) -- Online registration to event/adviser -- Contact forms -- Bulletin board system with hierarchical categories - (mixing with XMPP group chat) - public and - private boards -- Phone calls (can write textual notes during a - call) with SIP compatibility -- Communication with federated instances (XMPP - chat) -- Ticket management -- Notifications (XMPP ?) diff --git a/docs/source/specifications/documents.rst b/docs/source/specifications/documents.rst deleted file mode 100644 index e5609ab..0000000 --- a/docs/source/specifications/documents.rst +++ /dev/null @@ -1,156 +0,0 @@ -Documents -========= - -- Documents in standard and simplified languages -- Documents in sign languages -- In video, audio or text -- Read with speech synthesis or audio files -- Subtitles for video -- Audio-description for video -- Text-description for video -- Transcription of video -- Bibliography management -- Citation management -- Glossary -- Highlight current sentence in multimedia - presentation (like audio+text or video+text or - audio+video+text) -- Styles for descriptions, dialogues, actions and - other types of paragraphs/sentences -- Styles for verbs, nouns, and other grammatical - functions -- Style for grammatical groups -- Add little images and sounds for better - comprehension -- Alt text for images (mandatory) -- Manage translations -- DRM and encryption -- Credentials and classification (secret and - zone level) -- Versioning (with git) -- Dictionary (with synonyms) -- Digital and physical documents (link with stocks) -- External and internal use, licensing -- Peer-adaptation with other organizations -- Share by link, with other users, with federated - instance, by mail, by chat or by DODP (if - permitted, DRMize or encrypt if needed) -- WebDAV synchronization -- Slide show for photo -- Compatibility with PDF, ePub, HTML, RTF, RST, - Markdown, docx, doc, xls, xlsx, odt, ods and DAISY -- Connector for OCR -- Automatic and manual classification by - hierarchical tags -- Printing to authorized printers (standard, label, - braille) - -Document creation: - -- Raw, vi and WYSIWYG mode -- Add video track, synchronize with text -- Add audio track, synchronize with text -- Multi-track audio/video editor (with simple tools) -- Add images (alt mandatory, option if images is - only to help comprehension) -- Import existing audio or video clip -- Import existing text -- Import existing images -- Organize titles -- Characters, items, arenas, connections, scenes, - episodes/chapters, symbols and themes sheets -- Dictionary and synonyms -- Translation interface -- Diagram editor (general, network, sequences, user - activities) -- Bibliography editor - -For stories and fictions: - -- Resumes available -- Character, arena, item sheets updated during the - reading -- Maps with characters -- List of characters in scene -- Timeline with events -- Avatar for each character, item and arena -- Display avatar on each dialogue line -- Display avatar on each reference -- Display mood when changing -- Classic and visual novel presentation - -Metadata: - -- Compatibility with RDA :cite:p:`RDA`, -- Peering with other instances -- Synchronizing with other catalogs (OPAC, LRM, - Fediverse, Vidiverse, Electre, Dilibel, Dilicom, - PRISM and others) -- Compatibility with ISBD, MARC21, MarcXML, UNIMARC, - INTERMARC, DID - Digital Item Declaration, - DCMI, BIBFRAME, MODS, EAD, METS, PREMIS, - MPEG21-DIDL, RDA, RDA-FR, FRAD, - FRSAD, FRBR and LRM -- Support of ISBN, ISSN and EAN -- Recommendation -- Difficulty level (syntax, vocabulary, spelling, - specialization) - -Copyright (only European laws): - -- Prepare declarations for copyright collects -- Manage licenses, number of digital copies, number - of days of loans, number of loans, number of - digitalizations, number of photocopies (with - pages ranges) -- DRM (LCP), encryption, PDTB and tokens management -- Warns about obligation of anti-copy paper -- Manage copyright exemptions with legal - requirements (with forms) - -For all exemptions: - -- Not in public domain -- License is less permissive than the exemption -- Not for commercial use -- Exemption is for a limited number of special cases -- Do not strike a blow at normal business -- Do not harm legitimate interest of holder of the - right - -Exemption for adaptation for disabled people: - -- Authorization of legal entity -- Link to a legal license or a book in stock -- No adaptation in standard market -- Restrict reproduction, distribution, communication - and disposal (DRM, encryption, anti-copy paper - or ink, braille) -- Diligently adapt -- Display all requirements on the web sites (with - automatic refresh) -- Link to the membership of beneficiary -- Active proof of disability of beneficiary -- Active license on adaptation - -Submission for editing: - -- Limit by dates and categories -- Check-list for requirements -- Form with personal data and selection of committee -- Add document, automatically convert to internal - structure -- Check if new format is correct -- Personal account for submitter -- Traceability of reading and decision process, with - reporting to the submitter -- Number of documents to review before in the - submitter report -- Decisions are anonymous, no private data to review - a manuscript -- Template for contracts -- If used by authors: follow-up to your submissions - in your own instance, manage contracts and accounting - -See also stock and items management for other -properties of physical documents. diff --git a/docs/source/specifications/help.rst b/docs/source/specifications/help.rst deleted file mode 100644 index 17622e0..0000000 --- a/docs/source/specifications/help.rst +++ /dev/null @@ -1,28 +0,0 @@ -Help management -=============== - -- Internal and external help and documentation - system -- Ticketing system and contact forms -- Send notifications -- Questions and answers -- Documentation, blog and website management -- Chat (see :doc:`communication`) -- Bulletin board system (see :doc:`communication`) -- Knowledge management -- Record in beneficiary/user file -- Credentials on sensitive data depending on level - of privacy (health data in database) -- Private messages to personal adviser -- ITIL implementation of service center -- GDPR complaints in separated channel -- Security complaints in separated channel -- Public legal information management (DPO, - privacy, terms of use, terms of sale, address, - legal identifiers, etc.) -- Internal legal information management - (anti-harassment, anti-bribery, human resources - documentation, emergency documentation) -- Quality documentation, process documentation -- Disaster recovery plan -- Crisis communication manual diff --git a/docs/source/specifications/index.rst b/docs/source/specifications/index.rst deleted file mode 100644 index 21b09bd..0000000 --- a/docs/source/specifications/index.rst +++ /dev/null @@ -1,23 +0,0 @@ -Specifications -============== - -You'll find all specifications for future features -here. The documentation is removed from this -document when the feature is implemented, and -rewritten into developing, administration and user -manuals. - -.. toctree:: - - accessibility - documents - communication - stocks - projects - accounting - quality_risk - learning - services - help - security - synchronization diff --git a/docs/source/specifications/learning.rst b/docs/source/specifications/learning.rst deleted file mode 100644 index 909a5d3..0000000 --- a/docs/source/specifications/learning.rst +++ /dev/null @@ -1,10 +0,0 @@ -Learning -======== - -- Room management -- Planning management -- Student management, grading -- Lessons, exams and exercises -- Incorporate other documents -- Learner projects -- For learning in centre or online diff --git a/docs/source/specifications/projects.rst b/docs/source/specifications/projects.rst deleted file mode 100644 index fd98f38..0000000 --- a/docs/source/specifications/projects.rst +++ /dev/null @@ -1,10 +0,0 @@ -Projects -======== - -- Objectives, quality, risk and task management per - project -- Specific funds for project -- Time sheets per project -- Services and products of project (purchases and selling) -- Grant management and reporting -- Event and convention management diff --git a/docs/source/specifications/quality_risk.rst b/docs/source/specifications/quality_risk.rst deleted file mode 100644 index f706743..0000000 --- a/docs/source/specifications/quality_risk.rst +++ /dev/null @@ -1,24 +0,0 @@ -Quality and risk management -=========================== - -- Define quality requirements -- Internal documentation for process -- Manage PDCA cycles -- SLR and SLA management -- Catalog of services and products -- Test management -- Audit management -- Create objectives for company or by projects -- Set tags on objectives (like GDPR, ISO27001, etc.) -- Manage tickets, feedbacks and incidents with - levels of priority, of frequency and of - seriousness -- Set indicators automatically or manually -- Manage impact of decision, incident, or indicator -- Treatment of risks with evaluation on objectives, - risks, and costs -- Evaluation of social and environmental impacts -- Create templates of objectives and risks -- Complete ITIL implementation -- Disaster recovery plan -- Online surveys (anonymous and non-anonymous) diff --git a/docs/source/specifications/security.rst b/docs/source/specifications/security.rst deleted file mode 100644 index 33640c9..0000000 --- a/docs/source/specifications/security.rst +++ /dev/null @@ -1,23 +0,0 @@ -Security -======== - -- Encrypted database -- Encrypted hashed passwords -- Separate server for key management -- Update database when a key expires -- Credentials management -- Limit to two Security Officers -- Two-factor authentication for all operations -- Three or four-factor authentication for sensitive - operations -- Send notification to user when accessing on - sensitive private data -- List of private data -- Auto-expiration of private data with anonymization -- Technician mode to help users, with no displayed - data or fictive data (except with agreement of - user and security officer) -- Digital rights management (LCP) or encryption of - all documents except public documents -- Archive classification (restricted, secret, top - secret levels) diff --git a/docs/source/specifications/services.rst b/docs/source/specifications/services.rst deleted file mode 100644 index 57d6709..0000000 --- a/docs/source/specifications/services.rst +++ /dev/null @@ -1,17 +0,0 @@ -Online services -=============== - -- e-shop -- e-library -- e-learning -- Accessible queue management in reception -- Public mural screens and vocal announcements -- Time sheets -- On-site services with travel expenses -- Custom reporting of actions in beneficiary file -- Hotline management -- Subscription management -- Capacity supervision -- Implementation of ITIL and ISO9001 requirements but - no certification -- Catering diff --git a/docs/source/specifications/stocks.rst b/docs/source/specifications/stocks.rst deleted file mode 100644 index 78efa91..0000000 --- a/docs/source/specifications/stocks.rst +++ /dev/null @@ -1,36 +0,0 @@ -Stocks and items -================ - -- Items can be books, historical art, historical - monuments, digital books, video, CD, DVD, or - what you want -- List all previous and current owners (if needed) -- List all restorations and corresponding reports -- Requirements for preservation, transport and - exhibition -- Insurance management for preservation, transport and - exhibition -- Security management for preservation, transport and - exhibition - connecting to alarm systems -- Set context of archeological discovery with reports, - photo, illustration, links to articles -- Linked bibliography and documents -- Derivative and composed manufactured products -- Number of items in stock with individual sheet if - historical item or secondhand -- Place in stock, in shop or in shelves -- Alerts on minimum and maximum limit in stocks or in - shelves -- Maps of stocks, route for employees to prepare orders -- Print labels for shipping -- Manage RMA, serial numbers and guarantee -- Special stock units (for packages) -- Expiry date and queue management (LIFO, FIFO, etc.) -- Automatically update stocks on shipping and - reception, projected stocks with current in and out - orders -- Provisioning contracts with libraries by adding a - panel of titles -- Interact with other stock solutions (like Kardex) -- Display informations on big screens in stocks - (configurable) diff --git a/docs/source/specifications/synchronization.rst b/docs/source/specifications/synchronization.rst deleted file mode 100644 index 846a298..0000000 --- a/docs/source/specifications/synchronization.rst +++ /dev/null @@ -1,22 +0,0 @@ -Synchronization and API -======================= - -- Mail synchronization with SMTP, IMAP, EAS and JMAP -- Print automatically -- Contact, calendar and file synchronization with - JMAP, CalDAV, CardDAV and WebDAV -- SmartSync compatibility -- REST API (documented) -- GraphQL API -- DODP - Daisy Online Delivery Protocol -- XMPP for instant messages, audio and video chat -- OMEMO support -- SIP for phone calls -- LDAP and ActiveDirectory compatibility -- KMIP protocol for key management -- Kerberos, OAUTH2, FIDO, X509, PKCS11, CAS, SAML - and OpenID authentication -- Atom/RSS feeds -- FTP, SFTP and FTPS compatibility -- Send HTTP/HTTPS requests -- ESB features, low-code and automation diff --git a/docs/source/user/index.rst b/docs/source/user/index.rst deleted file mode 100644 index 7dfca75..0000000 --- a/docs/source/user/index.rst +++ /dev/null @@ -1,5 +0,0 @@ -User manual -=========== - -Nothing here. Sorry, we're working on the first -version of software. diff --git a/docs/update-translation.sh b/docs/update-translation.sh deleted file mode 100755 index 1969359..0000000 --- a/docs/update-translation.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -make gettext -sphinx-intl update -p build/gettext -l fr -l nl