1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

Merge pull request #1 from YunoHost/master

Update
This commit is contained in:
Titus PiJean 2018-02-17 21:56:59 +01:00 committed by GitHub
commit 89d1eda788
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 4799 additions and 223 deletions

7
.travis.yml Normal file
View file

@ -0,0 +1,7 @@
language: python
python:
- "2.7"
script:
- python -m json.tool official.json
- python -m json.tool community.json
- for i in ./locales/*.json; do python -m json.tool $i || return 1; done

View file

@ -1,12 +1,12 @@
# YunoHost apps directory
<img src="https://yunohost.org/logo.png" width=80>
![roundcube](https://yunohost.org/images/roundcube.png)
![ttrss](https://yunohost.org/images/ttrss.png)
![wordpress](https://yunohost.org/images/wordpress.png)
![transmission](https://yunohost.org/images/transmission.png)
![jappix](https://yunohost.org/images/jappix.png)
<img src="https://yunohost.org/images/freshrss_logo.png" width=60>
<img src="https://yunohost.org/images/Icons_mumble.svg" width=60>
<img src="https://yunohost.org/images/Lutim_small.png" width=50>
@ -35,8 +35,6 @@ sudo yunohost app fetchlist -n community -u https://yunohost.org/community.json
## Contributing
![screenshot](https://raw.githubusercontent.com/YunoHost/apps/master/screenshot.jpg)
#### How to add your app to the community list
* Fork and edit the [community list](https://github.com/YunoHost/apps/tree/master/community.json)
@ -54,26 +52,6 @@ App example addition:
}
```
#### How to propose your app to be integrated in the official applications list
Here is the procedure to request that your app will be part of the list of official applications of YunoHost:
* before everything, having you application joining the list of official applications will make you a maintainer of it and will requires you to ensure this position or to find someone else to do it in the future
* your app must be tested on several architectures (32/64 bits, ARM) or depends on cross-platform systems
* you must be subscribed to the [apps official mailing list](https://list.yunohost.org/cgi-bin/mailman/listinfo/apps) since this is the way that we communicate to apps maintainers
* your application package must have the following scripts:
* a install script, obviously
* a remove script
* an upgrade script if needed
* a backup/restore script if your application stores data
* your application must be installable on a custom path (`domain.tld/custom_path/`) in addition to the root path (`some.domain.tld/`)
* if relevant, your application must be integrated with YunoHost SSO
* the application you have packaged must be free software, as in free speech
* once all those requirements are fulfilled, fork this repository, add your application to the official.json list with the status "validated" following the documentation above, then open a pull request
* we will then start a reviewing process and we will work together to bring your application to a state where we can hopefully include it to the official applications list :)
Since our documentation regarding all those part is not as complete as it should be, don't hesitate to ask questions on the [apps mailing list](https://list.yunohost.org/cgi-bin/mailman/listinfo/apps) regarding those points.
#### Helper script
You can use the <code>add_or_update.py</code> python script to add or update

13
app_levels/en.json Normal file
View file

@ -0,0 +1,13 @@
{
"applevel_0": "Broken",
"applevel_1": "Installable",
"applevel_2": "Installable in all situations",
"applevel_3": "Can be updated",
"applevel_4": "Single Sign On support",
"applevel_5": "Clean",
"applevel_6": "Backup and restore support",
"applevel_7": "Successfully pass functional tests",
"applevel_8": "Respect main guidelines",
"applevel_9": "Respect all guidelines",
"applevel_10": "Package assessed as perfect"
}

13
app_levels/fr.json Normal file
View file

@ -0,0 +1,13 @@
{
"applevel_0": "Cassé",
"applevel_1": "Installable",
"applevel_2": "Installable dans toutes les situations",
"applevel_3": "Peut être mis à jour",
"applevel_4": "Supporte l'authentification unique",
"applevel_5": "Propre",
"applevel_6": "Supporte la sauvegarde et la restauration",
"applevel_7": "Réussit tous les tests fonctionnels",
"applevel_8": "Respecte les principales recommandations",
"applevel_9": "Respecte toutes les recommandations",
"applevel_10": "Package jugé parfait"
}

35
change_level.py Executable file
View file

@ -0,0 +1,35 @@
#!/usr/bin/env python
import os
import sys
import json
if __name__ == '__main__':
if len(sys.argv[1:]) < 3:
print "Usage: ./change_level.py <official.json|community.json> <app_id> <level>"
sys.exit(1)
app_list_name, app_id, level = sys.argv[1:4]
if not os.path.exists(app_list_name):
print "Error: the file '%s' doesn't exist" % app_list_name
sys.exit(1)
app_list = json.load(open(app_list_name))
if app_id not in app_list:
print "Error: app '%s' is not present in %s" % (app_id, app_list_name)
sys.exit(1)
if not level.isdigit():
print "Error: app level must be a number, it's '%s'" % level
sys.exit(1)
if not 0 <= int(level) <= 10:
print "Error: app level must be between 0 and 10, it's '%s'" % level
sys.exit(1)
app_list[app_id]["level"] = int(level)
open(app_list_name, "w").write("\n".join(json.dumps(app_list, indent=4, sort_keys=True).split(" \n")) + "\n")

File diff suppressed because it is too large Load diff

9
dev.json Normal file
View file

@ -0,0 +1,9 @@
{
"testupgrade_ynh": {
"branch": "master",
"level": 0,
"revision": "d0b15fc4fde260083aaffcf399125a0cbe2e820f",
"state": "inprogress",
"url": "https://github.com/YunoHost-apps/testupgrade_ynh"
}
}

View file

@ -0,0 +1,57 @@
import os
import sys
import json
if __name__ == '__main__':
if os.path.exists("locales/en.json"):
print "This script should be run only once, the first time to generate locales/, after that you should use update_translations.py"
print "Abort"
sys.exit(1)
other_langs = {}
keys = []
en = {}
for builded_file in sys.argv[1:]:
builded_file = json.load(open(builded_file, "r"))
for app, data in builded_file.items():
if "en" in data["manifest"]["description"]:
key = "%s_manifest_description" % app
en[key] = data["manifest"]["description"]["en"]
keys.append(key)
for i in data["manifest"]["description"]:
if i not in other_langs:
other_langs[i] = {x: "" for x in keys}
for i, translations in other_langs.items():
translations[key] = data["manifest"]["description"].get(i, "")
for category, questions in data["manifest"]["arguments"].items():
for question in questions:
if "en" not in question["ask"]:
continue
key = "%s_manifest_arguments_%s_%s" % (app, category, question["name"])
en[key] = question["ask"]["en"]
keys.append(key)
for i in question["ask"]:
if i not in other_langs:
other_langs[i] = {x: "" for x in keys}
for i, translations in other_langs.items():
translations[key] = question["ask"].get(i, "")
if not os.path.exists("locales"):
os.makedirs("locales")
open("locales/en.json", "w").write(json.dumps(en, sort_keys=True, indent=4))
for i, translations in other_langs.items():
open("locales/%s.json" % i, "w").write(json.dumps(translations, sort_keys=True, indent=4))

View file

@ -11,7 +11,7 @@ import requests
from dateutil.parser import parse
## Regular expression patterns
# Regular expression patterns
"""GitHub repository URL."""
re_github_repo = re.compile(
@ -24,7 +24,7 @@ re_commit_author = re.compile(
)
## Helpers
# Helpers
def fail(msg, retcode=1):
"""Show failure message and exit."""
@ -32,7 +32,37 @@ def fail(msg, retcode=1):
sys.exit(retcode)
## Main
def include_translations_in_manifest(app_name, manifest):
for i in os.listdir("locales"):
if not i.endswith("json"):
continue
if i == "en.json":
continue
current_lang = i.split(".")[0]
translations = json.load(open(os.path.join("locales", i), "r"))
key = "%s_manifest_description" % app_name
if key in translations and translations[key]:
manifest["description"][current_lang] = translations[key]
for category, questions in manifest["arguments"].items():
for question in questions:
key = "%s_manifest_arguments_%s_%s" % (app_name, category, question["name"])
if key in translations and translations[key]:
print "[ask]", current_lang, key
question["ask"][current_lang] = translations[key]
key = "%s_manifest_arguments_%s_help_%s" % (app_name, category, question["name"])
if key in translations and translations[key]:
print "[help]", current_lang, key
question["help"][current_lang] = translations[key]
return manifest
# Main
# Create argument parser
parser = argparse.ArgumentParser(description='Process YunoHost application list.')
@ -81,23 +111,41 @@ for app, info in apps_list.items():
# Store usefull values
app_url = info['url']
app_rev = info['revision']
app_state = info["state"]
app_level = info.get("level")
previous_state = already_built_file.get(app, {}).get("state", {})
manifest = {}
timestamp = None
if already_built_file.get(app, {}).get("git", {}).get("revision", None) == app_rev and already_built_file.get(app, {}).get("git", {}).get("url") == app_url:
previous_rev = already_built_file.get(app, {}).get("git", {}).get("revision", None)
previous_url = already_built_file.get(app, {}).get("git", {}).get("url")
previous_level = already_built_file.get(app, {}).get("level")
if previous_rev == app_rev and previous_url == app_url:
print("%s[%s] is already up to date in target output, ignore" % (app, app_rev))
result_dict[app] = already_built_file[app]
if previous_state != app_state:
result_dict[app]["state"] = app_state
print("... but has changed of state, updating it from '%s' to '%s'" % (previous_state, app_state))
if previous_level != app_level or app_level is None:
result_dict[app]["level"] = app_level
print("... but has changed of level, updating it from '%s' to '%s'" % (previous_level, app_level))
print "update translations but don't download anything"
result_dict[app]['manifest'] = include_translations_in_manifest(app, result_dict[app]['manifest'])
continue
## Hosted on GitHub
# Hosted on GitHub
github_repo = re_github_repo.match(app_url)
if github_repo:
owner = github_repo.group('owner')
repo = github_repo.group('repo')
raw_url = 'https://raw.githubusercontent.com/%s/%s/%s/manifest.json' % (
owner, repo, app_rev
owner, repo, app_rev
)
try:
# Retrieve and load manifest
@ -112,7 +160,7 @@ for app, info in apps_list.items():
continue
api_url = 'https://api.github.com/repos/%s/%s/commits/%s' % (
owner, repo, app_rev
owner, repo, app_rev
)
try:
# Retrieve last commit information
@ -128,7 +176,8 @@ for app, info in apps_list.items():
else:
commit_date = parse(info2['commit']['author']['date'])
timestamp = int(time.mktime(commit_date.timetuple()))
## Git repository with HTTP/HTTPS (Gogs, GitLab, ...)
# Git repository with HTTP/HTTPS (Gogs, GitLab, ...)
elif app_url.startswith('http') and app_url.endswith('.git'):
raw_url = '%s/raw/%s/manifest.json' % (app_url[:-4], app_rev)
try:
@ -144,7 +193,7 @@ for app, info in apps_list.items():
continue
obj_url = '%s/objects/%s/%s' % (
app_url, app_rev[0:2], app_rev[2:]
app_url, app_rev[0:2], app_rev[2:]
)
try:
# Retrieve last commit information
@ -191,15 +240,16 @@ for app, info in apps_list.items():
'url': app_url
},
'lastUpdate': timestamp,
'manifest': manifest,
'state': info['state']
'manifest': include_translations_in_manifest(manifest['id'], manifest),
'state': info['state'],
'level': info.get('level', '?')
}
except KeyError as e:
print("-> Error: invalid app info or manifest, %s" % e)
continue
# Write resulting file
with open(args.output , 'w') as f:
with open(args.output, 'w') as f:
f.write(json.dumps(result_dict, sort_keys=True))
print("\nDone! Written in %s" % args.output)

754
locales/de.json Normal file
View file

@ -0,0 +1,754 @@
{
"20euros_manifest_arguments_install_domain": "",
"20euros_manifest_arguments_install_is_public": "",
"20euros_manifest_arguments_install_path": "",
"20euros_manifest_description": "",
"243_manifest_arguments_install_domain": "",
"243_manifest_arguments_install_is_public": "",
"243_manifest_arguments_install_path": "",
"243_manifest_description": "",
"LBCAlerte_manifest_arguments_install_domain": "",
"LBCAlerte_manifest_arguments_install_is_public": "",
"LBCAlerte_manifest_arguments_install_password": "",
"LBCAlerte_manifest_arguments_install_path": "",
"LBCAlerte_manifest_description": "",
"abantecart_manifest_arguments_install_admin_name": "",
"abantecart_manifest_arguments_install_admin_pass": "",
"abantecart_manifest_arguments_install_domain": "",
"abantecart_manifest_arguments_install_is_public": "",
"abantecart_manifest_arguments_install_path": "",
"abantecart_manifest_description": "",
"adhocserver_manifest_description": "",
"adminer_manifest_arguments_install_admin": "",
"adminer_manifest_arguments_install_domain": "",
"adminer_manifest_arguments_install_path": "",
"adminer_manifest_description": "",
"agendav_manifest_arguments_install_domain": "",
"agendav_manifest_arguments_install_language": "",
"agendav_manifest_arguments_install_path": "",
"agendav_manifest_description": "",
"ajaxgoogleapis_manifest_arguments_install_public_site": "",
"ajaxgoogleapis_manifest_description": "",
"ampache_manifest_arguments_install_admin": "",
"ampache_manifest_arguments_install_domain": "",
"ampache_manifest_arguments_install_path": "",
"ampache_manifest_description": "",
"askbot_manifest_arguments_install_admin": "",
"askbot_manifest_arguments_install_domain": "",
"askbot_manifest_arguments_install_path": "",
"askbot_manifest_description": "",
"baikal_manifest_arguments_install_domain": "",
"baikal_manifest_arguments_install_password": "",
"baikal_manifest_arguments_install_path": "",
"baikal_manifest_description": "",
"bicbucstriim_manifest_arguments_install_admin": "",
"bicbucstriim_manifest_arguments_install_domain": "",
"bicbucstriim_manifest_arguments_install_is_public": "",
"bicbucstriim_manifest_arguments_install_login": "",
"bicbucstriim_manifest_arguments_install_path": "",
"bicbucstriim_manifest_description": "",
"bolt_manifest_arguments_install_domain": "",
"bolt_manifest_arguments_install_path": "",
"bolt_manifest_arguments_install_public_site": "",
"bolt_manifest_description": "",
"bozon_manifest_arguments_install_admin": "",
"bozon_manifest_arguments_install_domain": "",
"bozon_manifest_arguments_install_filesize": "",
"bozon_manifest_arguments_install_is_public": "",
"bozon_manifest_arguments_install_language": "",
"bozon_manifest_arguments_install_password": "",
"bozon_manifest_arguments_install_path": "",
"bozon_manifest_description": "",
"btsync_manifest_arguments_install_domain": "",
"btsync_manifest_arguments_install_path": "",
"btsync_manifest_arguments_install_platform": "",
"btsync_manifest_description": "",
"cesium_manifest_arguments_install_domain": "",
"cesium_manifest_arguments_install_is_public": "",
"cesium_manifest_arguments_install_path": "",
"cesium_manifest_description": "",
"chtickynotes_manifest_arguments_install_domain": "",
"chtickynotes_manifest_arguments_install_path": "",
"chtickynotes_manifest_description": "",
"cops_manifest_arguments_install_basicauthcreate": "",
"cops_manifest_arguments_install_basicauthname": "",
"cops_manifest_arguments_install_basicauthpass": "",
"cops_manifest_arguments_install_calibre": "",
"cops_manifest_arguments_install_domain": "",
"cops_manifest_arguments_install_is_public": "",
"cops_manifest_arguments_install_path": "",
"cops_manifest_description": "",
"couchpotato_manifest_arguments_install_domain": "",
"couchpotato_manifest_arguments_install_fork": "",
"couchpotato_manifest_arguments_install_host": "",
"couchpotato_manifest_arguments_install_method": "",
"couchpotato_manifest_arguments_install_path": "",
"couchpotato_manifest_arguments_install_port": "",
"couchpotato_manifest_arguments_install_public": "",
"couchpotato_manifest_arguments_remove_data": "",
"couchpotato_manifest_description": "",
"cubiks2048_manifest_arguments_install_domain": "",
"cubiks2048_manifest_arguments_install_is_public": "",
"cubiks2048_manifest_arguments_install_path": "",
"cubiks2048_manifest_description": "",
"diaspora_manifest_arguments_install_domain": "",
"diaspora_manifest_arguments_install_site_public": "",
"diaspora_manifest_description": "",
"dockercontainer_manifest_arguments_install_command": "",
"dockercontainer_manifest_arguments_install_datacontainer": "",
"dockercontainer_manifest_arguments_install_name": "",
"dockercontainer_manifest_arguments_install_repository": "",
"dockercontainer_manifest_arguments_install_restart": "",
"dockercontainer_manifest_arguments_install_volume": "",
"dockercontainer_manifest_description": "",
"dockerrstudio_manifest_arguments_install_domain": "",
"dockerrstudio_manifest_arguments_install_password": "",
"dockerrstudio_manifest_arguments_install_path": "",
"dockerrstudio_manifest_arguments_install_user": "",
"dockerrstudio_manifest_description": "",
"dockerui_manifest_arguments_install_domain": "",
"dockerui_manifest_arguments_install_path": "",
"dockerui_manifest_description": "",
"dokuwiki_manifest_arguments_install_admin": "",
"dokuwiki_manifest_arguments_install_domain": "",
"dokuwiki_manifest_arguments_install_is_public": "",
"dokuwiki_manifest_arguments_install_path": "",
"dokuwiki_manifest_description": "DokuWiki ist ein standardkonformes, einfach zu benutzendes Wiki und zielt haupts\u00e4chlich auf die Erstellung von Dokumentationen aller Art ab.",
"dolibarr_manifest_arguments_install_domain": "",
"dolibarr_manifest_arguments_install_path": "",
"dolibarr_manifest_description": "",
"dotclear2_manifest_arguments_install_admin": "",
"dotclear2_manifest_arguments_install_domain": "",
"dotclear2_manifest_arguments_install_is_public": "",
"dotclear2_manifest_arguments_install_password": "",
"dotclear2_manifest_arguments_install_path": "",
"dotclear2_manifest_description": "",
"duniter_manifest_arguments_install_admin": "",
"duniter_manifest_arguments_install_domain": "",
"duniter_manifest_arguments_install_is_cesium_public": "",
"duniter_manifest_arguments_install_port": "",
"duniter_manifest_arguments_install_sync_node": "",
"duniter_manifest_arguments_install_sync_port": "",
"duniter_manifest_description": "",
"emailpoubelle_manifest_arguments_install_admin": "",
"emailpoubelle_manifest_arguments_install_domain": "",
"emailpoubelle_manifest_arguments_install_path": "",
"emailpoubelle_manifest_arguments_install_public_site": "",
"emailpoubelle_manifest_description": "",
"ethercalc_manifest_arguments_install_domain": "",
"ethercalc_manifest_arguments_install_expire": "",
"ethercalc_manifest_arguments_install_path": "",
"ethercalc_manifest_arguments_install_public_site": "",
"ethercalc_manifest_description": "",
"etherpad_mypads_manifest_arguments_install_abiword": "",
"etherpad_mypads_manifest_arguments_install_admin": "",
"etherpad_mypads_manifest_arguments_install_domain": "",
"etherpad_mypads_manifest_arguments_install_is_public": "",
"etherpad_mypads_manifest_arguments_install_language": "",
"etherpad_mypads_manifest_arguments_install_password": "",
"etherpad_mypads_manifest_description": "",
"etherpadlite_manifest_arguments_install_domain": "",
"etherpadlite_manifest_arguments_install_path": "",
"etherpadlite_manifest_arguments_install_public_site": "",
"etherpadlite_manifest_description": "",
"ffsync_manifest_arguments_install_domain": "",
"ffsync_manifest_arguments_install_path": "",
"ffsync_manifest_description": "",
"filebin_manifest_arguments_install_domain": "",
"filebin_manifest_arguments_install_is_public": "",
"filebin_manifest_arguments_install_path": "",
"filebin_manifest_description": "",
"flarum_manifest_arguments_install_admin": "",
"flarum_manifest_arguments_install_adminpass": "",
"flarum_manifest_arguments_install_domain": "",
"flarum_manifest_arguments_install_is_public": "",
"flarum_manifest_arguments_install_path": "",
"flarum_manifest_arguments_install_title": "",
"flarum_manifest_description": "",
"framagames_manifest_arguments_install_domain": "",
"framagames_manifest_arguments_install_is_public": "",
"framagames_manifest_arguments_install_path": "",
"framagames_manifest_description": "",
"freeboard_manifest_arguments_install_admin": "",
"freeboard_manifest_arguments_install_adv_html": "",
"freeboard_manifest_arguments_install_dash": "",
"freeboard_manifest_arguments_install_dash_bool": "",
"freeboard_manifest_arguments_install_domain": "",
"freeboard_manifest_arguments_install_is_public": "",
"freeboard_manifest_arguments_install_path": "",
"freeboard_manifest_description": "",
"freshrss_manifest_arguments_install_admin": "",
"freshrss_manifest_arguments_install_domain": "",
"freshrss_manifest_arguments_install_path": "",
"freshrss_manifest_description": "",
"friendica_manifest_arguments_install_admin": "",
"friendica_manifest_arguments_install_domain": "",
"friendica_manifest_arguments_install_path": "",
"friendica_manifest_arguments_install_public_site": "",
"friendica_manifest_description": "",
"ftp_webapp_manifest_arguments_install_admin": "",
"ftp_webapp_manifest_arguments_install_domain": "",
"ftp_webapp_manifest_arguments_install_language": "",
"ftp_webapp_manifest_description": "",
"garradin_manifest_arguments_install_domain": "",
"garradin_manifest_arguments_install_is_public": "",
"garradin_manifest_arguments_install_path": "",
"gateone_manifest_arguments_install_domain": "",
"gateone_manifest_arguments_install_path": "",
"gateone_manifest_description": "",
"ghostblog_manifest_arguments_install_admin": "",
"ghostblog_manifest_arguments_install_domain": "",
"ghostblog_manifest_arguments_install_password": "",
"ghostblog_manifest_arguments_install_path": "",
"ghostblog_manifest_description": "",
"gitolite_manifest_arguments_install_admin": "",
"gitolite_manifest_arguments_install_adminpubkey": "",
"gitolite_manifest_description": "",
"gitweb_manifest_arguments_install_admin": "",
"gitweb_manifest_arguments_install_domain": "",
"gitweb_manifest_arguments_install_path": "",
"gitweb_manifest_arguments_install_public_site": "",
"gitweb_manifest_description": "",
"glowingbear_manifest_arguments_install_domain": "",
"glowingbear_manifest_arguments_install_is_public": "",
"glowingbear_manifest_arguments_install_path": "",
"glowingbear_manifest_description": "",
"glpi_manifest_arguments_install_admin": "",
"glpi_manifest_arguments_install_domain": "",
"glpi_manifest_arguments_install_language": "",
"glpi_manifest_arguments_install_path": "",
"glpi_manifest_description": "",
"gnusocial_manifest_arguments_install_admin": "",
"gnusocial_manifest_arguments_install_domain": "",
"gnusocial_manifest_arguments_install_name": "",
"gnusocial_manifest_arguments_install_profile": "",
"gnusocial_manifest_description": "",
"gogs_manifest_arguments_install_admin": "",
"gogs_manifest_arguments_install_domain": "",
"gogs_manifest_arguments_install_path": "",
"gogs_manifest_arguments_install_public_site": "",
"gogs_manifest_description": "",
"grafana_manifest_arguments_install_admin": "",
"grafana_manifest_arguments_install_domain": "",
"grafana_manifest_arguments_install_is_public": "",
"grafana_manifest_arguments_install_path": "",
"grafana_manifest_description": "",
"haste_manifest_arguments_install_domain": "",
"haste_manifest_arguments_install_is_public": "",
"haste_manifest_arguments_install_path": "",
"haste_manifest_description": "",
"headphones_manifest_arguments_install_domain": "",
"headphones_manifest_arguments_install_fork": "",
"headphones_manifest_arguments_install_host": "",
"headphones_manifest_arguments_install_method": "",
"headphones_manifest_arguments_install_options": "",
"headphones_manifest_arguments_install_path": "",
"headphones_manifest_arguments_install_port": "",
"headphones_manifest_arguments_install_public": "",
"headphones_manifest_arguments_remove_data": "",
"headphones_manifest_description": "",
"hextris_manifest_arguments_install_domain": "",
"hextris_manifest_arguments_install_is_public": "",
"hextris_manifest_arguments_install_path": "",
"hextris_manifest_description": "",
"hotspot_manifest_arguments_install_domain": "",
"hotspot_manifest_arguments_install_firmware_nonfree": "",
"hotspot_manifest_arguments_install_path": "",
"hotspot_manifest_arguments_install_wifi_passphrase": "",
"hotspot_manifest_arguments_install_wifi_ssid": "",
"hotspot_manifest_description": "",
"htmltool_manifest_arguments_install_domain": "",
"htmltool_manifest_arguments_install_is_public": "",
"htmltool_manifest_arguments_install_path": "",
"htmltool_manifest_description": "",
"htpc-manager_manifest_arguments_install_domain": "",
"htpc-manager_manifest_arguments_install_path": "",
"htpc-manager_manifest_description": "",
"hubzilla_manifest_arguments_install_admin": "",
"hubzilla_manifest_arguments_install_adminemail": "",
"hubzilla_manifest_arguments_install_domain": "",
"hubzilla_manifest_arguments_install_is_public": "",
"hubzilla_manifest_description": "",
"huginn_manifest_arguments_install_admin": "",
"huginn_manifest_arguments_install_domain": "",
"huginn_manifest_arguments_install_invitation": "",
"huginn_manifest_arguments_install_is_public": "",
"huginn_manifest_arguments_install_password": "",
"huginn_manifest_arguments_install_path": "",
"huginn_manifest_description": "",
"ihatemoney_manifest_arguments_install_domain": "",
"ihatemoney_manifest_arguments_install_is_public": "",
"ihatemoney_manifest_arguments_install_path": "",
"ihatemoney_manifest_description": "",
"jappix_manifest_arguments_install_domain": "",
"jappix_manifest_arguments_install_language": "",
"jappix_manifest_arguments_install_name": "",
"jappix_manifest_arguments_install_path": "",
"jappix_manifest_description": "",
"jappix_mini_manifest_arguments_install_domain": "",
"jappix_mini_manifest_arguments_install_is_public": "",
"jappix_mini_manifest_arguments_install_muc": "",
"jappix_mini_manifest_arguments_install_path": "",
"jappix_mini_manifest_arguments_install_user": "",
"jappix_mini_manifest_description": "",
"jeedom_manifest_arguments_install_admin": "",
"jeedom_manifest_arguments_install_domain": "",
"jeedom_manifest_arguments_install_path": "",
"jeedom_manifest_arguments_install_sudo": "",
"jeedom_manifest_arguments_install_zwave": "",
"jeedom_manifest_description": "",
"jenkins_manifest_arguments_install_domain": "",
"jenkins_manifest_arguments_install_is_public": "",
"jenkins_manifest_arguments_install_path": "",
"jenkins_manifest_description": "",
"jirafeau_manifest_arguments_install_admin_user": "",
"jirafeau_manifest_arguments_install_domain": "",
"jirafeau_manifest_arguments_install_is_public": "",
"jirafeau_manifest_arguments_install_path": "",
"jirafeau_manifest_arguments_install_upload_password": "",
"jirafeau_manifest_description": "",
"jitsi_manifest_arguments_install_domain": "",
"jitsi_manifest_arguments_install_path": "",
"jitsi_manifest_description": "",
"kanboard_manifest_arguments_install_admin": "",
"kanboard_manifest_arguments_install_domain": "",
"kanboard_manifest_arguments_install_is_public": "",
"kanboard_manifest_arguments_install_path": "",
"kanboard_manifest_description": "",
"keeweb_manifest_arguments_install_domain": "",
"keeweb_manifest_arguments_install_is_public": "",
"keeweb_manifest_arguments_install_path": "",
"keeweb_manifest_description": "",
"kiwiirc_manifest_arguments_install_domain": "",
"kiwiirc_manifest_arguments_install_path": "",
"kiwiirc_manifest_arguments_install_public_site": "",
"kiwiirc_manifest_description": "",
"laverna_manifest_arguments_install_admin": "",
"laverna_manifest_arguments_install_domain": "",
"laverna_manifest_arguments_install_is_public": "",
"laverna_manifest_arguments_install_path": "",
"laverna_manifest_description": "",
"leed_manifest_arguments_install_admin": "",
"leed_manifest_arguments_install_domain": "",
"leed_manifest_arguments_install_is_public": "",
"leed_manifest_arguments_install_language": "",
"leed_manifest_arguments_install_market": "",
"leed_manifest_arguments_install_password": "",
"leed_manifest_arguments_install_path": "",
"leed_manifest_description": "",
"lektor_manifest_arguments_install_admin_user": "",
"lektor_manifest_arguments_install_domain": "",
"lektor_manifest_arguments_install_name": "",
"lektor_manifest_arguments_install_path": "",
"lektor_manifest_arguments_install_ssh_pub_key": "",
"lektor_manifest_description": "",
"limesurvey_manifest_arguments_install_admin": "",
"limesurvey_manifest_arguments_install_domain": "",
"limesurvey_manifest_arguments_install_language": "",
"limesurvey_manifest_arguments_install_path": "",
"limesurvey_manifest_description": "",
"linuxdash_manifest_arguments_install_domain": "",
"linuxdash_manifest_arguments_install_path": "",
"linuxdash_manifest_arguments_install_user": "",
"linuxdash_manifest_description": "",
"lutim_manifest_arguments_install_admin": "",
"lutim_manifest_arguments_install_always_encrypt": "",
"lutim_manifest_arguments_install_domain": "",
"lutim_manifest_arguments_install_is_public": "",
"lutim_manifest_arguments_install_path": "",
"lutim_manifest_description": "",
"lychee_manifest_arguments_install_admin_pwd": "",
"lychee_manifest_arguments_install_admin_user": "",
"lychee_manifest_arguments_install_domain": "",
"lychee_manifest_arguments_install_path": "",
"lychee_manifest_description": "",
"mailman_manifest_arguments_install_admin": "",
"mailman_manifest_arguments_install_adminPass": "",
"mailman_manifest_arguments_install_domain": "",
"mailman_manifest_arguments_install_is_public": "",
"mailman_manifest_arguments_install_language": "",
"mailman_manifest_arguments_install_listPrefix": "",
"mailman_manifest_arguments_install_path": "",
"mailman_manifest_description": "",
"mattermost_manifest_arguments_install_domain": "",
"mattermost_manifest_arguments_install_public_site": "",
"mattermost_manifest_description": "",
"mediagoblin_manifest_arguments_install_admin": "",
"mediagoblin_manifest_arguments_install_domain": "",
"mediagoblin_manifest_arguments_install_path": "",
"mediagoblin_manifest_arguments_install_public": "",
"mediagoblin_manifest_description": "",
"mediawiki_manifest_arguments_install_domain": "",
"mediawiki_manifest_arguments_install_is_public": "",
"mediawiki_manifest_arguments_install_language": "",
"mediawiki_manifest_arguments_install_path": "",
"mediawiki_manifest_arguments_install_wikiname": "",
"mediawiki_manifest_description": "",
"minchat_manifest_arguments_install_domain": "",
"minchat_manifest_arguments_install_ispublic": "",
"minchat_manifest_arguments_install_path": "",
"minchat_manifest_description": "",
"minidlna_manifest_arguments_install_version": "",
"minidlna_manifest_description": "",
"miniflux_manifest_arguments_install_admin": "",
"miniflux_manifest_arguments_install_domain": "",
"miniflux_manifest_arguments_install_path": "",
"miniflux_manifest_description": "",
"monit_manifest_arguments_install_domain": "",
"monit_manifest_arguments_install_path": "",
"monit_manifest_description": "",
"monitorix_manifest_arguments_install_domain": "",
"monitorix_manifest_arguments_install_path": "",
"monitorix_manifest_description": "",
"movim_manifest_arguments_install_admin": "",
"movim_manifest_arguments_install_domain": "",
"movim_manifest_arguments_install_language": "",
"movim_manifest_arguments_install_password": "",
"movim_manifest_arguments_install_path": "",
"movim_manifest_arguments_install_port": "",
"movim_manifest_arguments_install_ssoenabled": "",
"movim_manifest_description": "",
"multi_webapp_manifest_arguments_install_admin": "",
"multi_webapp_manifest_arguments_install_domain": "",
"multi_webapp_manifest_arguments_install_is_public": "",
"multi_webapp_manifest_arguments_install_path": "",
"multi_webapp_manifest_arguments_install_sql": "",
"multi_webapp_manifest_description": "",
"mumble_admin_plugin_manifest_arguments_install_admin": "",
"mumble_admin_plugin_manifest_arguments_install_admin_email": "",
"mumble_admin_plugin_manifest_arguments_install_admin_pass": "",
"mumble_admin_plugin_manifest_arguments_install_domain": "",
"mumble_admin_plugin_manifest_arguments_install_path": "",
"mumble_admin_plugin_manifest_description": "",
"mumbleserver_manifest_arguments_install_password": "",
"mumbleserver_manifest_arguments_install_port": "",
"mumbleserver_manifest_arguments_install_registername": "",
"mumbleserver_manifest_arguments_install_server_login_password": "",
"mumbleserver_manifest_arguments_install_welcometext": "",
"mumbleserver_manifest_description": "",
"munin_manifest_arguments_install_domain": "",
"munin_manifest_arguments_install_path": "",
"munin_manifest_description": "",
"my_webapp_manifest_arguments_install_domain": "",
"my_webapp_manifest_arguments_install_is_public": "",
"my_webapp_manifest_arguments_install_password": "",
"my_webapp_manifest_arguments_install_path": "",
"my_webapp_manifest_arguments_install_with_mysql": "",
"my_webapp_manifest_description": "",
"mycryptochat_manifest_arguments_install_domain": "",
"mycryptochat_manifest_arguments_install_is_public": "",
"mycryptochat_manifest_arguments_install_path": "",
"mycryptochat_manifest_description": "",
"netdata_manifest_arguments_install_domain": "",
"netdata_manifest_arguments_install_is_public": "",
"netdata_manifest_arguments_install_path": "",
"netdata_manifest_description": "",
"nextcloud_manifest_arguments_install_admin": "",
"nextcloud_manifest_arguments_install_domain": "",
"nextcloud_manifest_arguments_install_path": "",
"nextcloud_manifest_arguments_install_user_home": "",
"nextcloud_manifest_description": "",
"noalyss_manifest_arguments_install_domain": "",
"noalyss_manifest_arguments_install_path": "",
"noalyss_manifest_description": "",
"odoo_manifest_arguments_install_admin_password": "",
"odoo_manifest_arguments_install_database_password": "",
"odoo_manifest_arguments_install_domain": "",
"odoo_manifest_arguments_install_lang": "",
"odoo_manifest_arguments_install_odoo_version": "",
"odoo_manifest_description": "",
"ofbiz_manifest_arguments_install_admin": "",
"ofbiz_manifest_arguments_install_domain": "",
"ofbiz_manifest_arguments_install_path": "",
"ofbiz_manifest_description": "",
"openidsimplesamlphp_manifest_arguments_install_domain": "",
"openidsimplesamlphp_manifest_arguments_install_path": "",
"openidsimplesamlphp_manifest_description": "",
"opennote_manifest_arguments_install_admin": "",
"opennote_manifest_arguments_install_domain": "",
"opennote_manifest_arguments_install_is_public": "",
"opennote_manifest_arguments_install_path": "",
"opennote_manifest_description": "",
"opensondage_manifest_arguments_install_admin": "W\u00e4hlen Sie bitte den OpenSondageadministrator (muss ein vorhandener YunoHost Nutzer sein)",
"opensondage_manifest_arguments_install_domain": "W\u00e4hlen Sie bitte einen Domain f\u00fcr OpenSondage",
"opensondage_manifest_arguments_install_is_public": "Kann einen nicht eingeloggter Nutzer einen Umfrage erstellen?",
"opensondage_manifest_arguments_install_language": "W\u00e4hlen Sie bitte die Standardsprache f\u00fcr OpenSondage.",
"opensondage_manifest_arguments_install_path": "Tragen Sie bitte den Pfad f\u00fcr OpenSondage ein",
"opensondage_manifest_description": "OpenSondage ist ein Online-Dienst, der Ihnen bei der Absprache von Terminen oder der Entscheidungsfindung hilft.",
"openvpn_manifest_arguments_install_domain": "",
"openvpn_manifest_arguments_install_path": "",
"openvpn_manifest_description": "",
"openwrt_manifest_arguments_install_domain": "",
"openwrt_manifest_arguments_install_path": "",
"openwrt_manifest_arguments_install_server": "",
"openwrt_manifest_description": "",
"owncloud_manifest_arguments_install_admin": "",
"owncloud_manifest_arguments_install_domain": "",
"owncloud_manifest_arguments_install_path": "",
"owncloud_manifest_arguments_install_user_home": "",
"owncloud_manifest_description": "",
"phpBB_manifest_arguments_install_admin_email": "",
"phpBB_manifest_arguments_install_admin_login": "",
"phpBB_manifest_arguments_install_admin_pwd": "",
"phpBB_manifest_arguments_install_curl_inst": "",
"phpBB_manifest_arguments_install_domain": "",
"phpBB_manifest_arguments_install_is_public": "",
"phpBB_manifest_arguments_install_lang": "",
"phpBB_manifest_arguments_install_path": "",
"phpBB_manifest_description": "",
"phpldapadmin_manifest_arguments_install_admin": "",
"phpldapadmin_manifest_arguments_install_domain": "",
"phpldapadmin_manifest_arguments_install_path": "",
"phpldapadmin_manifest_description": "",
"phpmyadmin_manifest_arguments_install_admin": "",
"phpmyadmin_manifest_arguments_install_domain": "",
"phpmyadmin_manifest_arguments_install_path": "",
"phpmyadmin_manifest_description": "",
"phpsysinfo_manifest_arguments_install_display_mode": "",
"phpsysinfo_manifest_arguments_install_domain": "",
"phpsysinfo_manifest_arguments_install_is_public": "",
"phpsysinfo_manifest_arguments_install_language": "",
"phpsysinfo_manifest_arguments_install_path": "",
"phpsysinfo_manifest_description": "",
"piratebox_manifest_arguments_install_domain": "",
"piratebox_manifest_arguments_install_opt_chat": "",
"piratebox_manifest_arguments_install_opt_deleting": "",
"piratebox_manifest_arguments_install_opt_domain": "",
"piratebox_manifest_arguments_install_opt_name": "",
"piratebox_manifest_arguments_install_opt_renaming": "",
"piratebox_manifest_arguments_install_path": "",
"piratebox_manifest_description": "",
"piwigo_manifest_arguments_install_admin": "",
"piwigo_manifest_arguments_install_domain": "",
"piwigo_manifest_arguments_install_is_public": "",
"piwigo_manifest_arguments_install_language": "",
"piwigo_manifest_arguments_install_path": "",
"piwigo_manifest_description": "",
"piwik_manifest_arguments_install_admin": "",
"piwik_manifest_arguments_install_domain": "",
"piwik_manifest_arguments_install_option_geoip": "",
"piwik_manifest_arguments_install_option_log": "",
"piwik_manifest_arguments_install_path": "",
"piwik_manifest_description": "",
"plexmediaserver_manifest_arguments_install_domain": "",
"plexmediaserver_manifest_arguments_install_path": "",
"plexmediaserver_manifest_description": "",
"pluxml_manifest_arguments_install_admin": "",
"pluxml_manifest_arguments_install_default_lang": "",
"pluxml_manifest_arguments_install_domain": "",
"pluxml_manifest_arguments_install_password": "",
"pluxml_manifest_arguments_install_path": "",
"pluxml_manifest_arguments_install_public_site": "",
"pluxml_manifest_description": "",
"proftpd_manifest_arguments_install_domain": "",
"proftpd_manifest_arguments_install_password": "",
"proftpd_manifest_description": "",
"pydio_manifest_arguments_install_admin": "",
"pydio_manifest_arguments_install_domain": "",
"pydio_manifest_arguments_install_path": "",
"pydio_manifest_description": "",
"radicale_manifest_arguments_install_admin": "",
"radicale_manifest_arguments_install_domain": "",
"radicale_manifest_arguments_install_infcloud": "",
"radicale_manifest_arguments_install_language": "",
"radicale_manifest_arguments_install_path": "",
"radicale_manifest_description": "",
"rainloop_manifest_arguments_install_domain": "",
"rainloop_manifest_arguments_install_is_public": "",
"rainloop_manifest_arguments_install_lang": "",
"rainloop_manifest_arguments_install_ldap": "",
"rainloop_manifest_arguments_install_password": "",
"rainloop_manifest_arguments_install_path": "",
"rainloop_manifest_description": "",
"redirect_manifest_arguments_install_domain": "",
"redirect_manifest_arguments_install_is_public": "",
"redirect_manifest_arguments_install_path": "",
"redirect_manifest_arguments_install_redirect_path": "",
"redirect_manifest_arguments_install_redirect_type": "",
"redirect_manifest_description": "",
"riot_manifest_arguments_install_default_home_server": "",
"riot_manifest_arguments_install_domain": "",
"riot_manifest_arguments_install_is_public": "",
"riot_manifest_arguments_install_path": "",
"riot_manifest_description": "",
"roadiz_manifest_arguments_install_admin_name": "",
"roadiz_manifest_arguments_install_admin_pass": "",
"roadiz_manifest_arguments_install_domain": "",
"roadiz_manifest_arguments_install_is_public": "",
"roadiz_manifest_arguments_install_path": "",
"roadiz_manifest_description": "",
"roundcube_manifest_arguments_install_domain": "",
"roundcube_manifest_arguments_install_path": "",
"roundcube_manifest_arguments_install_with_carddav": "",
"roundcube_manifest_description": "",
"rutorrent_manifest_arguments_install_data_dir": "",
"rutorrent_manifest_arguments_install_domain": "",
"rutorrent_manifest_arguments_install_password": "",
"rutorrent_manifest_arguments_install_path": "",
"rutorrent_manifest_description": "",
"scm_manifest_arguments_install_admin": "",
"scm_manifest_arguments_install_admin_passwd": "",
"scm_manifest_arguments_install_domain": "",
"scm_manifest_arguments_install_path": "",
"scm_manifest_description": "",
"scrumblr_manifest_arguments_install_domain": "",
"scrumblr_manifest_arguments_install_is_public": "",
"scrumblr_manifest_arguments_install_path": "",
"scrumblr_manifest_description": "",
"seafile_manifest_arguments_install_admin": "",
"seafile_manifest_arguments_install_admin_password": "",
"seafile_manifest_arguments_install_architecture": "",
"seafile_manifest_arguments_install_domain": "",
"seafile_manifest_arguments_install_path": "",
"seafile_manifest_arguments_install_public_site": "",
"seafile_manifest_arguments_install_server_name": "",
"seafile_manifest_description": "",
"searx_manifest_arguments_install_domain": "",
"searx_manifest_arguments_install_is_public": "",
"searx_manifest_arguments_install_path": "",
"searx_manifest_description": "",
"shaarli_manifest_arguments_install_admin": "",
"shaarli_manifest_arguments_install_domain": "",
"shaarli_manifest_arguments_install_path": "",
"shaarli_manifest_arguments_install_privatelinkbydefault": "",
"shaarli_manifest_arguments_install_public": "",
"shaarli_manifest_arguments_install_title": "",
"shaarli_manifest_description": "",
"shellinabox_manifest_arguments_install_domain": "",
"shellinabox_manifest_arguments_install_path": "",
"shellinabox_manifest_description": "",
"shout_manifest_arguments_install_domain": "",
"shout_manifest_arguments_install_is_public": "",
"shout_manifest_arguments_install_path": "",
"shout_manifest_description": "",
"sickbeard_manifest_arguments_install_domain": "",
"sickbeard_manifest_arguments_install_fork": "",
"sickbeard_manifest_arguments_install_host": "",
"sickbeard_manifest_arguments_install_method": "",
"sickbeard_manifest_arguments_install_options": "",
"sickbeard_manifest_arguments_install_path": "",
"sickbeard_manifest_arguments_install_port": "",
"sickbeard_manifest_arguments_install_public": "",
"sickbeard_manifest_arguments_remove_data": "",
"sickbeard_manifest_description": "",
"sogo_manifest_arguments_install_admin": "",
"sogo_manifest_arguments_install_domain": "",
"sogo_manifest_arguments_install_is_public": "",
"sogo_manifest_description": "",
"sonerezh_manifest_arguments_install_domain": "",
"sonerezh_manifest_arguments_install_email_auth": "",
"sonerezh_manifest_arguments_install_password": "",
"sonerezh_manifest_arguments_install_url_path": "",
"sonerezh_manifest_description": "",
"spip_manifest_arguments_install_admin": "",
"spip_manifest_arguments_install_domain": "",
"spip_manifest_arguments_install_path": "",
"spip_manifest_description": "",
"strut_manifest_arguments_install_domain": "",
"strut_manifest_arguments_install_path": "",
"strut_manifest_arguments_install_public_site": "",
"strut_manifest_description": "",
"subsonic_manifest_arguments_install_admin": "",
"subsonic_manifest_arguments_install_domain": "",
"subsonic_manifest_arguments_install_path": "",
"subsonic_manifest_description": "",
"synapse_manifest_arguments_install_domain": "",
"synapse_manifest_arguments_install_is_public": "",
"synapse_manifest_description": "",
"syncthing_manifest_arguments_install_domain": "",
"syncthing_manifest_arguments_install_path": "",
"syncthing_manifest_description": "",
"tagspaces_manifest_arguments_install_domain": "",
"tagspaces_manifest_arguments_install_is_public": "",
"tagspaces_manifest_arguments_install_last": "",
"tagspaces_manifest_arguments_install_path": "",
"tagspaces_manifest_description": "",
"teampass_manifest_arguments_install_domain": "",
"teampass_manifest_arguments_install_password": "",
"teampass_manifest_arguments_install_path": "",
"teampass_manifest_description": "",
"teamspeak_manifest_arguments_install_System-OS Platform": "",
"teamspeak_manifest_description": "",
"telegram_manifest_arguments_install_admin": "",
"telegram_manifest_arguments_install_domain": "",
"telegram_manifest_arguments_install_path": "",
"telegram_manifest_description": "",
"torclient_manifest_arguments_install_domain": "",
"torclient_manifest_arguments_install_path": "",
"torclient_manifest_description": "",
"torrelay_manifest_arguments_install_contact": "",
"torrelay_manifest_arguments_install_nickname": "",
"torrelay_manifest_arguments_install_policy": "",
"torrelay_manifest_arguments_install_port": "",
"torrelay_manifest_description": "",
"transmission_manifest_arguments_install_domain": "",
"transmission_manifest_arguments_install_path": "",
"transmission_manifest_description": "",
"transwhat_manifest_arguments_install_admin": "",
"transwhat_manifest_arguments_install_architecture": "",
"transwhat_manifest_arguments_install_domain": "",
"transwhat_manifest_arguments_install_path": "",
"transwhat_manifest_description": "",
"ttrss_manifest_arguments_install_domain": "",
"ttrss_manifest_arguments_install_path": "",
"ttrss_manifest_description": "",
"vpnclient_manifest_arguments_install_domain": "",
"vpnclient_manifest_arguments_install_path": "",
"vpnclient_manifest_description": "",
"wallabag_manifest_arguments_install_domain": "",
"wallabag_manifest_arguments_install_path": "",
"wallabag_manifest_description": "",
"webapp_multi_inst_manifest_arguments_install_db_create": "",
"webapp_multi_inst_manifest_arguments_install_db_pwd": "",
"webapp_multi_inst_manifest_arguments_install_domain": "",
"webapp_multi_inst_manifest_arguments_install_is_public": "",
"webapp_multi_inst_manifest_arguments_install_path": "",
"webapp_multi_inst_manifest_description": "",
"webmin_manifest_arguments_install_admin": "",
"webmin_manifest_arguments_install_domain": "",
"webmin_manifest_arguments_install_path": "",
"webmin_manifest_description": "",
"wekan_manifest_arguments_install_admin": "",
"wekan_manifest_arguments_install_domain": "",
"wekan_manifest_arguments_install_is_public": "",
"wekan_manifest_arguments_install_language": "",
"wekan_manifest_arguments_install_path": "",
"wekan_manifest_description": "",
"wordpress_manifest_arguments_install_admin": "",
"wordpress_manifest_arguments_install_domain": "",
"wordpress_manifest_arguments_install_is_public": "",
"wordpress_manifest_arguments_install_language": "",
"wordpress_manifest_arguments_install_multisite": "",
"wordpress_manifest_arguments_install_path": "",
"wordpress_manifest_description": "",
"yifypop_manifest_arguments_install_domain": "",
"yifypop_manifest_arguments_install_path": "",
"yifypop_manifest_description": "",
"ynapticron_manifest_arguments_install_emails": "",
"ynapticron_manifest_description": "",
"yourls_manifest_arguments_install_admin": "",
"yourls_manifest_arguments_install_domain": "",
"yourls_manifest_arguments_install_path": "",
"yourls_manifest_description": "",
"youtube-dl-webui_manifest_arguments_install_domain": "",
"youtube-dl-webui_manifest_arguments_install_download_folder": "",
"youtube-dl-webui_manifest_arguments_install_is_public": "",
"youtube-dl-webui_manifest_arguments_install_path": "",
"youtube-dl-webui_manifest_description": "",
"yunofav_manifest_arguments_install_domain": "",
"yunofav_manifest_arguments_install_path": "",
"yunofav_manifest_description": "",
"z-push_manifest_arguments_install_domain": "",
"z-push_manifest_arguments_install_path": "",
"z-push_manifest_description": "",
"zerobin_manifest_arguments_install_domain": "",
"zerobin_manifest_arguments_install_is_public": "",
"zerobin_manifest_arguments_install_path": "",
"zerobin_manifest_description": "",
"zeronet_manifest_arguments_install_admin": "",
"zeronet_manifest_arguments_install_domain": "",
"zeronet_manifest_description": "",
"zomburl_manifest_arguments_install_domain": "",
"zomburl_manifest_arguments_install_path": "",
"zomburl_manifest_description": ""
}

790
locales/en.json Normal file
View file

@ -0,0 +1,790 @@
{
"20euros_manifest_arguments_install_domain": "Choose a domain for 20euros",
"20euros_manifest_arguments_install_is_public": "Is it a public game?",
"20euros_manifest_arguments_install_path": "Choose a path for 20euros",
"20euros_manifest_description": "2048 - 20euros",
"243_manifest_arguments_install_domain": "Choose a domain for 243",
"243_manifest_arguments_install_is_public": "Is it a public game?",
"243_manifest_arguments_install_path": "Choose a path for 243",
"243_manifest_description": "2048 game clone",
"LBCAlerte_manifest_arguments_install_domain": "Choose a domain name for LBCAlerte",
"LBCAlerte_manifest_arguments_install_is_public": "Is it a public application?",
"LBCAlerte_manifest_arguments_install_password": "Password for admin account",
"LBCAlerte_manifest_arguments_install_path": "Choose a path for LBCAlerte",
"LBCAlerte_manifest_description": "LBCAlerte package for YunoHost.",
"abantecart_manifest_arguments_install_admin_name": "Choose the Abantecart administrator (must be an existing YunoHost user)",
"abantecart_manifest_arguments_install_admin_pass": "Set the password for the Admin user \u2265 5 character",
"abantecart_manifest_arguments_install_domain": "Choose a domain for Abantecart",
"abantecart_manifest_arguments_install_is_public": "Is it a public Abantecart site ?",
"abantecart_manifest_arguments_install_path": "Choose a path for Abantecart",
"abantecart_manifest_description": "Create a E-commerce Website",
"adhocserver_manifest_description": "An adhoc Server for the sony PSP",
"adminer_manifest_arguments_install_admin": "Choose the only allowed admin user",
"adminer_manifest_arguments_install_domain": "Choose a domain for Adminer",
"adminer_manifest_arguments_install_path": "Choose a path for Adminer",
"adminer_manifest_description": "Database management in a single PHP file",
"agendav_manifest_arguments_install_domain": "Choose a domain for AgenDAV",
"agendav_manifest_arguments_install_language": "Default language to be used in AgenDAV",
"agendav_manifest_arguments_install_path": "Choose a path for AgenDAV",
"agendav_manifest_description": "CalDAV web client",
"ajaxgoogleapis_manifest_arguments_install_public_site": "Could non member access this mirror ?",
"ajaxgoogleapis_manifest_description": "This apps create a mirror of ajax.googleapis.com",
"ampache_manifest_arguments_install_admin": "Choose the Ampache administrator (must be an existing YunoHost user)",
"ampache_manifest_arguments_install_domain": "Choose a domain name for Ampache",
"ampache_manifest_arguments_install_path": "Choose a path for Ampache",
"ampache_manifest_description": "A web based audio/video streaming application",
"askbot_manifest_arguments_install_admin": "Choose the Askbot administrator (must be an existing YunoHost user)",
"askbot_manifest_arguments_install_domain": "Choose a domain for Askbot",
"askbot_manifest_arguments_install_path": "Choose a path for Askbot",
"askbot_manifest_description": "Askbot is a Questions & Answers (Q&A) software",
"baikal_manifest_arguments_install_domain": "Choose a domain for Ba\u00efkal",
"baikal_manifest_arguments_install_password": "Set the password for the administration",
"baikal_manifest_arguments_install_path": "Choose a path for Ba\u00efkal",
"baikal_manifest_description": "Lightweight CalDAV+CardDAV server",
"bicbucstriim_manifest_arguments_install_admin": "Choose an admin user",
"bicbucstriim_manifest_arguments_install_domain": "Choose a domain name for BicBucStriim",
"bicbucstriim_manifest_arguments_install_is_public": "Is it a public application?",
"bicbucstriim_manifest_arguments_install_login": "Disable BicBucStriim login ?",
"bicbucstriim_manifest_arguments_install_path": "Choose a path for BicBucStriim",
"bicbucstriim_manifest_description": "BicBucStriim streams books, digital books, providing web-based access to your e-book collection.",
"bolt_manifest_arguments_install_domain": "Choose a domain for Bolt",
"bolt_manifest_arguments_install_path": "Choose a path for Bolt",
"bolt_manifest_arguments_install_public_site": "Is it a public Bolt site?",
"bolt_manifest_description": "Bolt is an open source Content Management Tool, which strives to be as simple and straightforward as possible.",
"bozon_manifest_arguments_install_admin": "Choose an admin user for BoZoN",
"bozon_manifest_arguments_install_domain": "Choose a domain for BoZoN",
"bozon_manifest_arguments_install_filesize": "Define the file upload size limit",
"bozon_manifest_arguments_install_is_public": "Should this application be public ? (if not, sharing file with unregistered users still work)",
"bozon_manifest_arguments_install_language": "Default language",
"bozon_manifest_arguments_install_password": "Choose an admin password for BoZoN",
"bozon_manifest_arguments_install_path": "Choose a path for BoZoN",
"bozon_manifest_description": "Minimalist Drag & drop file sharing app",
"btsync_manifest_arguments_install_domain": "Choose a domain for BitTorrentSync",
"btsync_manifest_arguments_install_path": "Choose a path for BitTorrentSync",
"btsync_manifest_arguments_install_platform": "Choose the BitTorrentSync platform",
"btsync_manifest_description": "BitTorrentSync : synchronize your files using bittorrent",
"cesium_manifest_arguments_install_domain": "Choose a domain name for Cesium",
"cesium_manifest_arguments_install_is_public": "Is it a public application?",
"cesium_manifest_arguments_install_path": "Choose a path for Cesium",
"cesium_manifest_description": "Duniter client to manage wallets, certifications in a libre money.",
"chtickynotes_manifest_arguments_install_domain": "Choisissez un domaine pour ChtickyNotes",
"chtickynotes_manifest_arguments_install_path": "Choisissez un chemin pour ChtickyNotes",
"chtickynotes_manifest_description": "Generic sticky notes for all purpose",
"cops_manifest_arguments_install_basicauthcreate": "Create a basic auth access (only taken into account for a Public app) ? This is required if the app is public so that ereaders to access the OPDS server, for example",
"cops_manifest_arguments_install_basicauthname": "Choose the login name to access the OPDS/HTML server (UNRELATED to YunoHost users)",
"cops_manifest_arguments_install_basicauthpass": "Choose the password to access the OPDS/HTML server",
"cops_manifest_arguments_install_calibre": "Indicate the location of Calibre library. DON'T store it in your /var/www/cops or it will be removed on next upgrade !!",
"cops_manifest_arguments_install_domain": "Choose a domain for COPS library",
"cops_manifest_arguments_install_is_public": "Is it a public website ?",
"cops_manifest_arguments_install_path": "Choose a path to access your COPS library",
"cops_manifest_description": "Calibre OPDS (and HTML) PHP Server",
"couchpotato_manifest_arguments_install_domain": "Choose a domain for CouchPotato",
"couchpotato_manifest_arguments_install_fork": "LOCAL: Source URL of GIT to use",
"couchpotato_manifest_arguments_install_host": "REMOTE: Specify URL for the host",
"couchpotato_manifest_arguments_install_method": "Choose installation method",
"couchpotato_manifest_arguments_install_path": "Choose a path for CouchPotato",
"couchpotato_manifest_arguments_install_port": "LOCAL: Choose the listening port of the app",
"couchpotato_manifest_arguments_install_public": "Is it a public application ?",
"couchpotato_manifest_arguments_remove_data": "Would you like to keep data files ?",
"couchpotato_manifest_description": "Automatic movie downloader",
"cubiks2048_manifest_arguments_install_domain": "Choose a domain for Cubiks-2048",
"cubiks2048_manifest_arguments_install_is_public": "Is it a public game?",
"cubiks2048_manifest_arguments_install_path": "Choose a path for Cubiks-2048",
"cubiks2048_manifest_description": "2048 game clone in 3D",
"diaspora_manifest_arguments_install_domain": "Choose a domain for diaspora*",
"diaspora_manifest_arguments_install_site_public": "Is it a public Diaspora site?",
"diaspora_manifest_description": "Distributed social networking service",
"dockercontainer_manifest_arguments_install_command": "Enter the container's options",
"dockercontainer_manifest_arguments_install_datacontainer": "Do you want to store data in a data volume container? (See https://docs.docker.com/userguide/dockervolumes/)",
"dockercontainer_manifest_arguments_install_name": "Enter the container's name",
"dockercontainer_manifest_arguments_install_repository": "Enter the container's repository (http://registry.hub.docker.com)",
"dockercontainer_manifest_arguments_install_restart": "Do you want the container to be always restarted?",
"dockercontainer_manifest_arguments_install_volume": "Do you want to create the folder /home/yunohost.docker/container-NAME in order to mount it in the container?",
"dockercontainer_manifest_description": "Docker allows to deploy applications which have not yet been integrated with YunoHost",
"dockerrstudio_manifest_arguments_install_domain": "Choose a domain for the RStudio container",
"dockerrstudio_manifest_arguments_install_password": "Choose a password for your RStudio account",
"dockerrstudio_manifest_arguments_install_path": "Choose a path for the RStudio container",
"dockerrstudio_manifest_arguments_install_user": "Choose a login for your RStudio account",
"dockerrstudio_manifest_description": "RStudio is a web development environment for R (statistics). It runs through Docker.",
"dockerui_manifest_arguments_install_domain": "Choose a domain for DockerUI",
"dockerui_manifest_arguments_install_path": "Choose a path for DockerUI",
"dockerui_manifest_description": "Docker allows to deploy applications which have not yet been integrated with YunoHost",
"dokuwiki_manifest_arguments_install_admin": "Choose an admin user",
"dokuwiki_manifest_arguments_install_domain": "Choose a domain for DokuWiki",
"dokuwiki_manifest_arguments_install_is_public": "Is it a public DokuWiki site ?",
"dokuwiki_manifest_arguments_install_path": "Choose a path for DokuWiki",
"dokuwiki_manifest_description": "DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database.",
"dolibarr_manifest_arguments_install_domain": "Choose a domain for Dolibarr",
"dolibarr_manifest_arguments_install_path": "Choose a path for Dolibarr",
"dolibarr_manifest_description": "Dolibarr ERP & CRM is a modern and easy to use web software to manage your business (contacts, invoices, orders, products, stocks, agenda, emailings, etc...).",
"dotclear2_manifest_arguments_install_admin": "Choose a yunohost user as dotclear admin",
"dotclear2_manifest_arguments_install_domain": "Choose a domain for DotClear 2",
"dotclear2_manifest_arguments_install_is_public": "Is it a public application ?",
"dotclear2_manifest_arguments_install_password": "Choose a dotclear password for this user, at least 6 characters",
"dotclear2_manifest_arguments_install_path": "Choose a path for DotClear 2",
"dotclear2_manifest_description": "Blog publishing application",
"duniter_manifest_arguments_install_admin": "Administrator. Must a YunoHost user.",
"duniter_manifest_arguments_install_domain": "Dedicated domain name on which no application must be installed. Install will be done on root path.",
"duniter_manifest_arguments_install_is_cesium_public": "Make Cesium available publicly?",
"duniter_manifest_arguments_install_port": "Port of Duniter node",
"duniter_manifest_arguments_install_sync_node": "Node's address (domain name or IP address) to synchronise with",
"duniter_manifest_arguments_install_sync_port": "Port of synchronization",
"duniter_manifest_description": "Duniter node which permits participate to blockchain writing. Monetary system with universal dividend, libre money, relative theory of the money. This package permit to join an existing money.",
"emailpoubelle_manifest_arguments_install_admin": "Choose an admin user for emailpoubelle",
"emailpoubelle_manifest_arguments_install_domain": "Choose a domain for emailpoubelle",
"emailpoubelle_manifest_arguments_install_path": "Choose a path for emailpoubelle",
"emailpoubelle_manifest_arguments_install_public_site": "Should this application be public ?",
"emailpoubelle_manifest_description": "Create throwable email address redirected to your real one",
"ethercalc_manifest_arguments_install_domain": "Choose a domain for EtherCalc",
"ethercalc_manifest_arguments_install_expire": "Deletes a spreadsheet's content after N days of inactivity. (0 to diasable this feature)",
"ethercalc_manifest_arguments_install_path": "Choose a path for EtherCalc",
"ethercalc_manifest_arguments_install_public_site": "Is it a public EtherCalc ?",
"ethercalc_manifest_description": "Online web spreadsheet editor providing collaborative editing in really real-time",
"etherpad_mypads_manifest_arguments_install_abiword": "Use abiword (~260Mo) to expand export possibilities (pdf, doc) ?",
"etherpad_mypads_manifest_arguments_install_admin": "Choose the Etherpad Mypads administrator (must be an existing YunoHost user)",
"etherpad_mypads_manifest_arguments_install_domain": "Choose a dedicated domain for Etherpad Mypads.",
"etherpad_mypads_manifest_arguments_install_is_public": "Is it a public website?",
"etherpad_mypads_manifest_arguments_install_language": "Choose your language",
"etherpad_mypads_manifest_arguments_install_password": "Set the administrator password (between 8 and 30 characters)",
"etherpad_mypads_manifest_description": "Framapad clone, a online editor providing collaborative editing in real-time.",
"etherpadlite_manifest_arguments_install_domain": "Choose a domain for Etherpad",
"etherpadlite_manifest_arguments_install_path": "Choose a path for Etherpad",
"etherpadlite_manifest_arguments_install_public_site": "Is it a public Etherpad ?",
"etherpadlite_manifest_description": "online editor providing collaborative editing in really real-time",
"ffsync_manifest_arguments_install_domain": "Choose a domain for Firefox-Sync Server",
"ffsync_manifest_arguments_install_path": "Choose a path for Firefox-Sync Server",
"ffsync_manifest_description": "Mozilla\u2019s Sync-Server to host your Firefox account data",
"filebin_manifest_arguments_install_domain": "Choose a domain for Filebin",
"filebin_manifest_arguments_install_is_public": "Is it a public Filebin site ?",
"filebin_manifest_arguments_install_path": "Choose a path for Filebin",
"filebin_manifest_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data - File Edition",
"flarum_manifest_arguments_install_admin": "Choose an admin user",
"flarum_manifest_arguments_install_adminpass": "Put your password",
"flarum_manifest_arguments_install_domain": "Choose a domain name for Flarum",
"flarum_manifest_arguments_install_is_public": "Is it a public application?",
"flarum_manifest_arguments_install_path": "Choose a path for Flarum",
"flarum_manifest_arguments_install_title": "Choose a title for your forum",
"flarum_manifest_description": "Flarum (open-source forum software) package for YunoHost.",
"framagames_manifest_arguments_install_domain": "Choose a domain for your framagames",
"framagames_manifest_arguments_install_is_public": "Is it a public website ?",
"framagames_manifest_arguments_install_path": "Choose a path to access your framagames",
"framagames_manifest_description": "Set of games Framagames from Framasoft",
"freeboard_manifest_arguments_install_admin": "Choose an admin user",
"freeboard_manifest_arguments_install_adv_html": "Use dev Html ? (Permanent dashboard, more plugins...)",
"freeboard_manifest_arguments_install_dash": "Permanent dashboard name, put it in /var/www/your_dashboard/",
"freeboard_manifest_arguments_install_dash_bool": "Use permanent dashboard ? (Requires dev html)",
"freeboard_manifest_arguments_install_domain": "Choose a domain name for your dashboard",
"freeboard_manifest_arguments_install_is_public": "Is it a public application?",
"freeboard_manifest_arguments_install_path": "Choose a path for your dashboard",
"freeboard_manifest_description": "A damn-sexy, open source real-time dashboard builder for IOT and other web mashups. A free open-source alternative to Geckoboard.",
"freshrss_manifest_arguments_install_admin": "Choose the default user (leave empty if none)",
"freshrss_manifest_arguments_install_domain": "Choose a domain for FreshRSS",
"freshrss_manifest_arguments_install_path": "Choose a path for FreshRSS",
"freshrss_manifest_description": "FreshRSS is a selfhostable RSS reader",
"friendica_manifest_arguments_install_admin": "Choose the Friendica administrator (must be an existing YunoHost user)",
"friendica_manifest_arguments_install_domain": "Choose a domain for Friendica",
"friendica_manifest_arguments_install_path": "Choose a path for Friendica",
"friendica_manifest_arguments_install_public_site": "Is it a public Friendica site ?",
"friendica_manifest_description": "Social Communication Server",
"ftp_webapp_manifest_arguments_install_admin": "Choose the YunoHost user who will be able to upload documents via FTP",
"ftp_webapp_manifest_arguments_install_domain": "Choose a domain for your ftp client",
"ftp_webapp_manifest_arguments_install_language": "Choose the language of the ftp client",
"ftp_webapp_manifest_description": "FTP server and client Net2ftp configurated for use with webapp on the custom port 21021",
"garradin_manifest_arguments_install_domain": "Choose a domain for Garradin",
"garradin_manifest_arguments_install_is_public": "Is it a public Garradin site ?",
"garradin_manifest_arguments_install_path": "Choose a path for Garradin",
"gateone_manifest_arguments_install_domain": "Choose a domain for GateOne",
"gateone_manifest_arguments_install_path": "Choose a path for GateOne",
"gateone_manifest_description": "HTML5-powered terminal emulator and SSH client",
"ghostblog_manifest_arguments_install_admin": "Admin user (must be an existing Yunohost user login)",
"ghostblog_manifest_arguments_install_domain": "Choose a domain for Ghost",
"ghostblog_manifest_arguments_install_password": "Admin user password (8 characters minimum)",
"ghostblog_manifest_arguments_install_path": "Choose a path for Ghost",
"ghostblog_manifest_description": "Just a blogging platform",
"gitolite_manifest_arguments_install_admin": "Choose the first allowed admin",
"gitolite_manifest_arguments_install_adminpubkey": "Please put in the SSH public key of the admin",
"gitolite_manifest_description": "Gitolite allows you to setup git hosting on a central server, with very fine-grained access control and many (many!) more powerful features.",
"gitweb_manifest_arguments_install_admin": "Choose an admin user for Gitweb",
"gitweb_manifest_arguments_install_domain": "Choose a domain for Gitweb",
"gitweb_manifest_arguments_install_path": "Choose a path for Gitweb",
"gitweb_manifest_arguments_install_public_site": "Should this application be public ?",
"gitweb_manifest_description": "Web interface to see gitolite repositories",
"glowingbear_manifest_arguments_install_domain": "Choose a domain name for ynhexample",
"glowingbear_manifest_arguments_install_is_public": "Is it a public website?",
"glowingbear_manifest_arguments_install_path": "Choose a path for your WebApp",
"glowingbear_manifest_description": "A web client for WeeChat.",
"glpi_manifest_arguments_install_admin": "Choose the GLPI administrator (must be an existing YunoHost user)",
"glpi_manifest_arguments_install_domain": "Choose a domain for GLPI",
"glpi_manifest_arguments_install_language": "Choose the language of the GLPI site",
"glpi_manifest_arguments_install_path": "Choose a path for GLPI",
"glpi_manifest_description": "Create a beautiful blog or website easily",
"gnusocial_manifest_arguments_install_admin": "Choose the GNU Social administrator (must be an existing YunoHost user)",
"gnusocial_manifest_arguments_install_domain": "Choose a SUBdomain for GNU Social",
"gnusocial_manifest_arguments_install_name": "Choose a name for the GNU Social node",
"gnusocial_manifest_arguments_install_profile": "What GNU Social profile?",
"gnusocial_manifest_description": "Create a federated comunication node",
"gogs_manifest_arguments_install_admin": "Choose the Gogs administrator (must be an existing YunoHost user)",
"gogs_manifest_arguments_install_domain": "Choose a domain for Gogs",
"gogs_manifest_arguments_install_path": "Choose a path for Gogs",
"gogs_manifest_arguments_install_public_site": "Is it a public site ?",
"gogs_manifest_description": "A self-hosted Git service written in Go",
"grafana_manifest_arguments_install_admin": "Choose an admin user",
"grafana_manifest_arguments_install_domain": "Choose a domain for Grafana",
"grafana_manifest_arguments_install_is_public": "Is it a public application?",
"grafana_manifest_arguments_install_path": "Choose a path for Grafana",
"grafana_manifest_description": "Beautiful metric & analytic dashboards for monitoring",
"grav_manifest_arguments_install_admin": "Choose the SPIP administrator (must be an existing YunoHost user)",
"grav_manifest_arguments_install_domain": "Choose a domain name for SPIP",
"grav_manifest_arguments_install_is_public": "Is it a public SPIP site ?",
"grav_manifest_arguments_install_language": "Choose the application language",
"grav_manifest_arguments_install_multisite": "Enable multisite option ?",
"grav_manifest_arguments_install_path": "Choose a path for SPIP",
"grav_manifest_description": "Grav - Grav is a modern open source flat-file CMS",
"haste_manifest_arguments_install_domain": "Choose a domain name for Haste",
"haste_manifest_arguments_install_is_public": "Is it a public site? (you won't be able to use haste command easily if not)",
"haste_manifest_arguments_install_path": "Choose a path for Haste, only / is allowed.",
"haste_manifest_description": "Haste is an open-source pastebin software written in node.js",
"headphones_manifest_arguments_install_domain": "Choose a domain for Headphones",
"headphones_manifest_arguments_install_fork": "LOCAL: Source URL of GIT to use",
"headphones_manifest_arguments_install_host": "REMOTE: Specify URL for the host",
"headphones_manifest_arguments_install_method": "Choose installation method",
"headphones_manifest_arguments_install_options": "LOCAL: Choose a downloader to configure",
"headphones_manifest_arguments_install_path": "Choose a path for Headphones",
"headphones_manifest_arguments_install_port": "LOCAL: Choose the listening port of the app",
"headphones_manifest_arguments_install_public": "Is it a public application ?",
"headphones_manifest_arguments_remove_data": "Would you like to keep data files ?",
"headphones_manifest_description": "Automatic music downloader",
"hextris_manifest_arguments_install_domain": "Choose a domain for Hextris",
"hextris_manifest_arguments_install_is_public": "Is it a public site ?",
"hextris_manifest_arguments_install_path": "Choose a path for Hextris",
"hextris_manifest_description": "A fast paced puzzle game.",
"hotspot_manifest_arguments_install_domain": "Choose a domain for the web administration",
"hotspot_manifest_arguments_install_firmware_nonfree": "Install non-free firmwares - in addition to the free ones - for the wifi dongle (yes/no)",
"hotspot_manifest_arguments_install_path": "Choose a path for the web administration",
"hotspot_manifest_arguments_install_wifi_passphrase": "Choose a wifi password (at least 8 characters for WPA2)",
"hotspot_manifest_arguments_install_wifi_ssid": "Choose a wifi name (SSID)",
"hotspot_manifest_description": "Wifi Hotspot",
"htmltool_manifest_arguments_install_domain": "Choose a domain for HTML Tools",
"htmltool_manifest_arguments_install_is_public": "Is it a public Tools site ?",
"htmltool_manifest_arguments_install_path": "Choose a path for HTML Tools",
"htmltool_manifest_description": "An easy HTML toolset",
"htpc-manager_manifest_arguments_install_domain": "Choose a domain for HTPC Manager",
"htpc-manager_manifest_arguments_install_path": "Choose a path for HTPC Manager",
"htpc-manager_manifest_description": "Manage your HTPC from anywhere",
"hubzilla_manifest_arguments_install_admin": "Choose an admin user",
"hubzilla_manifest_arguments_install_adminemail": "Email address for the Hubzilla hub admin",
"hubzilla_manifest_arguments_install_domain": "Choose a domain for your Hubzilla hub. Hubzilla must run in the root of this domain.",
"hubzilla_manifest_arguments_install_is_public": "Is it a public application ?",
"hubzilla_manifest_description": "Hubzilla is a decentralized publication platform and social network.",
"huginn_manifest_arguments_install_admin": "Choose an admin user",
"huginn_manifest_arguments_install_domain": "Choose a domain for huginn",
"huginn_manifest_arguments_install_invitation": "Choose an invitation code for new users",
"huginn_manifest_arguments_install_is_public": "Is it a public application ?",
"huginn_manifest_arguments_install_password": "Choose an admin password",
"huginn_manifest_arguments_install_path": "Choose a path for huginn",
"huginn_manifest_description": " Build agents that monitor and act on your behalf. Your agents are standing by!",
"ihatemoney_manifest_arguments_install_domain": "Choose a domain for ihatemoney",
"ihatemoney_manifest_arguments_install_is_public": "Is it a public website ? (even if service is public, each project is protected by a password)",
"ihatemoney_manifest_arguments_install_path": "Choose a path for ihatemoney",
"ihatemoney_manifest_description": "A simple shared budget manager web application",
"jappix_manifest_arguments_install_domain": "Choose a domain for Jappix",
"jappix_manifest_arguments_install_language": "Choose the default language of Jappix",
"jappix_manifest_arguments_install_name": "Choose a name for Jappix",
"jappix_manifest_arguments_install_path": "Choose a path for Jappix",
"jappix_manifest_description": "A free social network",
"jappix_mini_manifest_arguments_install_domain": "Choose a domain for Jappix Mini",
"jappix_mini_manifest_arguments_install_is_public": "Make this website public?",
"jappix_mini_manifest_arguments_install_muc": "Which chat room should Jappix Mini join? Answer 'No' if you don't want it to join a chat room.",
"jappix_mini_manifest_arguments_install_path": "Choose a path for Jappix Mini",
"jappix_mini_manifest_arguments_install_user": "Which user should Jappix Mini join? Answer 'No' to join no user. Next step is for joining a chat room.",
"jappix_mini_manifest_description": "Jappix Mini XMPP chat website integration.",
"jeedom_manifest_arguments_install_admin": "Choisissez un utilisateur YunoHost pour \u00eatre admin",
"jeedom_manifest_arguments_install_domain": "Choose a domain for Jeedom",
"jeedom_manifest_arguments_install_path": "Choisissez un chemin pour Jeedom",
"jeedom_manifest_arguments_install_sudo": "Acceptez-vous de donner les droits sudo \u00e0 l'utilisateur www-data (web) ? Ces droits sont n\u00e9cessaires au bon fonctionnement de Jeedom. Ils comportent toutefois un risque de s\u00e9curit\u00e9 important si vous avez d'autres applications YunoHost accessibles en ligne. Ces applications auront les droits administrateurs et les attaquants pourraient donc les exploiter pour prendre le controle de votre serveur.",
"jeedom_manifest_arguments_install_zwave": "Souhaitez-vous installer les d\u00e9pendences OpenZWave pour les modules domotiques ZWave ?",
"jeedom_manifest_description": "Jeedom is a home automation application",
"jenkins_manifest_arguments_install_domain": "Choose a domain for Jenkins",
"jenkins_manifest_arguments_install_is_public": "Is it a public site?",
"jenkins_manifest_arguments_install_path": "Choose a path for Jenkins",
"jenkins_manifest_description": "Extendable continuous integration server",
"jirafeau_manifest_arguments_install_admin_user": "Choose an admin user (will be able to access admin.php page)",
"jirafeau_manifest_arguments_install_domain": "Choose a domain for Jirafeau",
"jirafeau_manifest_arguments_install_is_public": "Is it a public Jirafeau site?",
"jirafeau_manifest_arguments_install_path": "Choose a path for Jirafeau",
"jirafeau_manifest_arguments_install_upload_password": "Set the password granting upload permissions (leave empty to allow anybody to upload)",
"jirafeau_manifest_description": "Upload a file in a simple way and give a unique link to it",
"jitsi_manifest_arguments_install_domain": "Choose a domain for Jitsi Meet",
"jitsi_manifest_arguments_install_path": "Choose a path for Jitsi Meet",
"jitsi_manifest_description": "Video conferencing web application",
"kanboard_manifest_arguments_install_admin": "Choose the admin user for Kanboard",
"kanboard_manifest_arguments_install_domain": "Choose a domain for Kanboard",
"kanboard_manifest_arguments_install_is_public": "Is it a public site ?",
"kanboard_manifest_arguments_install_path": "Choose a path for Kanboard",
"kanboard_manifest_description": "Kanboard is a simple visual task board web application",
"keeweb_manifest_arguments_install_domain": "Choose a domain name for Keeweb",
"keeweb_manifest_arguments_install_is_public": "Is it a public application?",
"keeweb_manifest_arguments_install_path": "Choose a path for Keeweb",
"keeweb_manifest_description": "Password manager compatible with KeePass.",
"kiwiirc_manifest_arguments_install_domain": "Choose a domain for KiwiIRC",
"kiwiirc_manifest_arguments_install_path": "Choose a path for KiwiIRC",
"kiwiirc_manifest_arguments_install_public_site": "Is it a public KiwiIRC site ?",
"kiwiirc_manifest_description": "Web IRC client",
"laverna_manifest_arguments_install_admin": "Choose an admin user",
"laverna_manifest_arguments_install_domain": "Choose a domain name for Laverna",
"laverna_manifest_arguments_install_is_public": "Is it a public application?",
"laverna_manifest_arguments_install_path": "Choose a path for Laverna",
"laverna_manifest_description": "Laverna is a JavaScript note taking application with Markdown editor and encryption support. Consider it like open source alternative to Evernote.",
"leed_manifest_arguments_install_admin": "Choose the Leed administrator (must be an existing YunoHost user)",
"leed_manifest_arguments_install_domain": "Choose a domain for Leed",
"leed_manifest_arguments_install_is_public": "Is it a public website ?",
"leed_manifest_arguments_install_language": "Choose your agregator's language",
"leed_manifest_arguments_install_market": "Do you want to activate the Leed Market?",
"leed_manifest_arguments_install_password": "Set the administrator password Leed",
"leed_manifest_arguments_install_path": "Choose a path for Leed",
"leed_manifest_description": "Leed is a minimalistic RSS feed aggregator which allows quick and non-intrusive reading of feeds.",
"lektor_manifest_arguments_install_admin_user": "Choose an admin user (the one who will be able to access the admin interface)",
"lektor_manifest_arguments_install_domain": "Choose a domain for Lektor",
"lektor_manifest_arguments_install_name": "Choose a name for your website",
"lektor_manifest_arguments_install_path": "The path of your website, sadly lektor only works with '/' for a path.",
"lektor_manifest_arguments_install_ssh_pub_key": "A public ssh key to be able to clone the repository (no, no password.).",
"lektor_manifest_description": "Lektor is a static website generator that ships with an admin interface. This package integrate the admin interface into YunoHost SSO.",
"limesurvey_manifest_arguments_install_admin": "Choose the LimeSurvey administrator (must be an existing YunoHost user)",
"limesurvey_manifest_arguments_install_domain": "Choose a domain for LimeSurvey",
"limesurvey_manifest_arguments_install_language": "Choose the default language of this LimeSurvey",
"limesurvey_manifest_arguments_install_path": "Choose a path for LimeSurvey",
"limesurvey_manifest_description": "LimeSurvey is used to create advanced poll.",
"linuxdash_manifest_arguments_install_domain": "Choose a domain name for Linux-Dash",
"linuxdash_manifest_arguments_install_path": "Choose a path for Linux-Dash",
"linuxdash_manifest_arguments_install_user": "Choose the YunoHost user which have access to Linux-Dash",
"linuxdash_manifest_description": "A drop-in, low-overhead monitoring web dashboard for GNU/linux machine.",
"lutim_manifest_arguments_install_admin": "Choose the Lutim administrator (must be an existing YunoHost user)",
"lutim_manifest_arguments_install_always_encrypt": "Force the encryption of images?",
"lutim_manifest_arguments_install_domain": "Choose a domain for Lutim",
"lutim_manifest_arguments_install_is_public": "Uploading images is it public?",
"lutim_manifest_arguments_install_path": "Choose a path for Lutim",
"lutim_manifest_description": "Self hosting images and sharing anonymous application",
"lychee_manifest_arguments_install_admin_pwd": "Choose password for admin user",
"lychee_manifest_arguments_install_admin_user": "Choose login of admin user",
"lychee_manifest_arguments_install_domain": "Choose a domain for Lychee",
"lychee_manifest_arguments_install_path": "Choose a path for lychee",
"lychee_manifest_description": "Self-hosted photo-management done right",
"mailman_manifest_arguments_install_admin": "Choose an admin user",
"mailman_manifest_arguments_install_adminPass": "Choose a mailman administration password",
"mailman_manifest_arguments_install_domain": "Choose a domain for mailman",
"mailman_manifest_arguments_install_is_public": "Is it a public application ?",
"mailman_manifest_arguments_install_language": "Choose a default language for mailman",
"mailman_manifest_arguments_install_listPrefix": "Choose a prefix for mailman lists (i.e. prexif in listname@prefix.yourdomain)",
"mailman_manifest_arguments_install_path": "Choose a path for mailman ",
"mailman_manifest_description": "Free software for managing electronic mail discussion and e-newsletter lists.",
"mattermost_manifest_arguments_install_domain": "Choose a domain for Mattermost",
"mattermost_manifest_arguments_install_public_site": "Can guest users access this chat?",
"mattermost_manifest_description": "An open-source, self-hosted alternative to Slack",
"mediagoblin_manifest_arguments_install_admin": "Choose the administrator (must be an existing YunoHost user)",
"mediagoblin_manifest_arguments_install_domain": "Choose a domain for MediaGoblin",
"mediagoblin_manifest_arguments_install_path": "Choose a path for MediaGoblin",
"mediagoblin_manifest_arguments_install_public": "Is it a public site?",
"mediagoblin_manifest_description": "A free software media publishing platform",
"mediawiki_manifest_arguments_install_domain": "Choose a domain for MediaWiki",
"mediawiki_manifest_arguments_install_is_public": "Is it a public wiki?",
"mediawiki_manifest_arguments_install_language": "Choose the language",
"mediawiki_manifest_arguments_install_path": "Choose a path for MediaWiki",
"mediawiki_manifest_arguments_install_wikiname": "Choose a name for the wiki",
"mediawiki_manifest_description": "Open Source Wiki software",
"minchat_manifest_arguments_install_domain": "Choisissez un domaine pour minchat",
"minchat_manifest_arguments_install_ispublic": "Taper Y si le site est public",
"minchat_manifest_arguments_install_path": "Choisissez un chemin pour minchat",
"minchat_manifest_description": "A minimalist web chat",
"minidlna_manifest_arguments_install_version": "Select the minidlna version to install",
"minidlna_manifest_description": "Light DLNA server to share media files over the LAN",
"miniflux_manifest_arguments_install_admin": "Choose an admin user",
"miniflux_manifest_arguments_install_domain": "Choose a domain for miniflux",
"miniflux_manifest_arguments_install_path": "Choose a path for miniflux",
"miniflux_manifest_description": "Minimal RSS reader.",
"monit_manifest_arguments_install_domain": "Choose a domain for Monit",
"monit_manifest_arguments_install_path": "Choose a path for Monit",
"monit_manifest_description": "Monitoring of processes, files, directories, filesystems and hosts",
"monitorix_manifest_arguments_install_domain": "Choose a domain name for Monitorix",
"monitorix_manifest_arguments_install_path": "Choose a path for Monitorix",
"monitorix_manifest_description": "A monitoring tools",
"movim_manifest_arguments_install_admin": "Pod administrator",
"movim_manifest_arguments_install_domain": "Domain of the pod",
"movim_manifest_arguments_install_language": "Pod language",
"movim_manifest_arguments_install_password": "Administrator password",
"movim_manifest_arguments_install_path": "Path to the pod",
"movim_manifest_arguments_install_port": "Movim daemon port (internal only)",
"movim_manifest_arguments_install_ssoenabled": "Enable SSO support (autologin) ?",
"movim_manifest_description": "The Kickass Social Network",
"multi_webapp_manifest_arguments_install_admin": "Choose the YunoHost user",
"multi_webapp_manifest_arguments_install_domain": "Choose a domain for your Webapp",
"multi_webapp_manifest_arguments_install_is_public": "Is it a public website ?",
"multi_webapp_manifest_arguments_install_path": "Choose a path for your Webapp",
"multi_webapp_manifest_arguments_install_sql": "Create a database?",
"multi_webapp_manifest_description": "Empty App without FTP access",
"mumble_admin_plugin_manifest_arguments_install_admin": "Choose an admin user for MAP",
"mumble_admin_plugin_manifest_arguments_install_admin_email": "Set the admin email for password recovery",
"mumble_admin_plugin_manifest_arguments_install_admin_pass": "Choose an admin password for MAP",
"mumble_admin_plugin_manifest_arguments_install_domain": "Choose a domain for MAP",
"mumble_admin_plugin_manifest_arguments_install_path": "Choose a path for MAP",
"mumble_admin_plugin_manifest_description": "Mumble-server web interface",
"mumbleserver_manifest_arguments_install_password": "Choose a password for the SuperUser. This is different from the server password and allows you to create the first admin.",
"mumbleserver_manifest_arguments_install_port": "Choose a port for your server. Let as default if you don't want to change it",
"mumbleserver_manifest_arguments_install_registername": "Choose a name for the root channel (your mumble server name)",
"mumbleserver_manifest_arguments_install_server_login_password": "Choose a password for your mumble server. This password is given to persons who want to join",
"mumbleserver_manifest_arguments_install_welcometext": "Choose a welcome text for your server",
"mumbleserver_manifest_description": "Mumble is an open source, low-latency, high quality voice chat software primarily intended for use while gaming.",
"munin_manifest_arguments_install_domain": "Choose a domain for Munin",
"munin_manifest_arguments_install_path": "Choose a path for Munin",
"munin_manifest_description": "Outil de supervision de ressources",
"my_webapp_manifest_arguments_install_domain": "Choose a domain for your Webapp",
"my_webapp_manifest_arguments_install_is_public": "Is it a public website?",
"my_webapp_manifest_arguments_install_password": "Set the password for the SFTP access",
"my_webapp_manifest_arguments_install_path": "Choose a path for your Webapp",
"my_webapp_manifest_arguments_install_with_mysql": "Do you need a MySQL database?",
"my_webapp_manifest_description": "Custom Web app with SFTP access",
"mycryptochat_manifest_arguments_install_domain": "Choose a domain for MyCryptoChat",
"mycryptochat_manifest_arguments_install_is_public": "Is it a public site ?",
"mycryptochat_manifest_arguments_install_path": "Choose a path for MyCryptoChat",
"mycryptochat_manifest_description": "Encrypted IM",
"mytinytodo_manifest_arguments_install_domain": "Choose a domain name for mytinytodo",
"mytinytodo_manifest_arguments_install_is_public": "Is it a public application?",
"mytinytodo_manifest_arguments_install_language": "Choose the application language",
"mytinytodo_manifest_arguments_install_path": "Choose a path for mytinytodo",
"mytinytodo_manifest_description": "Simple open source to-do list script.",
"netdata_manifest_arguments_install_domain": "Choose a domain for NetData",
"netdata_manifest_arguments_install_is_public": "Is it a public application?",
"netdata_manifest_arguments_install_path": "Choose a path for NetData",
"netdata_manifest_description": "real-time performance and health monitoring",
"nextcloud_manifest_arguments_install_admin": "Choose the Nextcloud administrator (must be an existing YunoHost user)",
"nextcloud_manifest_arguments_install_domain": "Choose a domain for Nextcloud",
"nextcloud_manifest_arguments_install_path": "Choose a path for Nextcloud",
"nextcloud_manifest_arguments_install_user_home": "Access the users home folder from Nextcloud?",
"nextcloud_manifest_description": "Access & share your files, calendars, contacts, mail & more from any device, on your terms",
"noalyss_manifest_arguments_install_domain": "Choose a domain for NOALYSS",
"noalyss_manifest_arguments_install_path": "Choose a path for NOALYSS",
"noalyss_manifest_description": "Accounting free software (Beligum and French accounting)",
"odoo_manifest_arguments_install_admin_password": "Choose a strong master admin password",
"odoo_manifest_arguments_install_database_password": "Choose a password for the 'admin' account on Odoo",
"odoo_manifest_arguments_install_domain": "Choose a domain for Odoo (Odoo will be installed on its root!)",
"odoo_manifest_arguments_install_lang": "Choose a language for Odoo",
"odoo_manifest_arguments_install_odoo_version": "Which version of Odoo do you want to install?",
"odoo_manifest_description": "Odoo is a suite of business apps (ERP: CRM, Accounting, Point of Sale, HR, Purchases...).",
"ofbiz_manifest_arguments_install_admin": "Choose the OFBiz administrator (must be an existing YunoHost user)",
"ofbiz_manifest_arguments_install_domain": "Choose a domain for Apache-OFBiz",
"ofbiz_manifest_arguments_install_path": "Choose a path for Apache-OFBiz",
"ofbiz_manifest_description": "Apache-OFBiz ERP",
"openidsimplesamlphp_manifest_arguments_install_domain": "Choose a domain for the OpenID provider",
"openidsimplesamlphp_manifest_arguments_install_path": "Choose a path for the OpenID-SimpleSAMLphp provider",
"openidsimplesamlphp_manifest_description": "OpenID provider based on SimpleSAMLphp",
"opennote_manifest_arguments_install_admin": "Choose an admin user",
"opennote_manifest_arguments_install_domain": "Choose a domain name for OpenNote",
"opennote_manifest_arguments_install_is_public": "Is it a public application?",
"opennote_manifest_arguments_install_path": "Choose a path for OpenNote",
"opennote_manifest_description": "OpenNote was built to be an open web-based alternative to Microsoft OneNote (T) and EverNote.",
"opensondage_manifest_arguments_install_admin": "Choose the OpenSondage administrator (must be an existing YunoHost user)",
"opensondage_manifest_arguments_install_domain": "Choose a domain for OpenSondage",
"opensondage_manifest_arguments_install_is_public": "Could non member create poll ?",
"opensondage_manifest_arguments_install_language": "Choose the default language of this OpenSondage",
"opensondage_manifest_arguments_install_path": "Choose a path for OpenSondage",
"opensondage_manifest_description": "OpenSondage is an online service for planning an appointment or making a decision quickly and easily. No registration is required.",
"openvpn_manifest_arguments_install_domain": "Choose a domain for OpenVPN",
"openvpn_manifest_arguments_install_path": "Choose a path for OpenVPN",
"openvpn_manifest_description": "Your Secure and Private Tunnel to the Internet",
"openwrt_manifest_arguments_install_domain": "Choose a domain for OpenWRT",
"openwrt_manifest_arguments_install_path": "Choose a path for OpenWRT",
"openwrt_manifest_arguments_install_server": "Choose IP where OpenWRT is installed",
"openwrt_manifest_description": "Access to OpenWRT",
"owncloud_manifest_arguments_install_admin": "Choose the ownCloud administrator (must be an existing YunoHost user)",
"owncloud_manifest_arguments_install_domain": "Choose a domain for ownCloud",
"owncloud_manifest_arguments_install_path": "Choose a path for ownCloud",
"owncloud_manifest_arguments_install_user_home": "Access the users home folder from ownCloud?",
"owncloud_manifest_description": "Sync & share your files, pictures, music, contacts, calendars, and much more!",
"phpBB_manifest_arguments_install_admin_email": "Indicate phpBB admin email - Please make sure it exists on this server !",
"phpBB_manifest_arguments_install_admin_login": "Indicate phpBB admin login",
"phpBB_manifest_arguments_install_admin_pwd": "Indicate phpBB admin password. At this stage, this password is also used for phpBB MySQL database",
"phpBB_manifest_arguments_install_curl_inst": "Automatically configure phpBB via cURL ? [BROKEN - DO NOT USE]",
"phpBB_manifest_arguments_install_domain": "Choose a domain for phpBB",
"phpBB_manifest_arguments_install_is_public": "Is it a public application ?",
"phpBB_manifest_arguments_install_lang": "Configure phpBB's language",
"phpBB_manifest_arguments_install_path": "Choose a path for phpBB",
"phpBB_manifest_description": "#1 free, opensource bulletin board software",
"phpldapadmin_manifest_arguments_install_admin": "Choose the only allowed admin user",
"phpldapadmin_manifest_arguments_install_domain": "Choose a domain for phpLDAPadmin",
"phpldapadmin_manifest_arguments_install_path": "Choose a path for phpLDAPadmin",
"phpldapadmin_manifest_description": "Manage OpenLDAP database over the web",
"phpmyadmin_manifest_arguments_install_admin": "Choose the only allowed admin user",
"phpmyadmin_manifest_arguments_install_domain": "Choose a domain for phpMyAdmin",
"phpmyadmin_manifest_arguments_install_path": "Choose a path for phpMyAdmin",
"phpmyadmin_manifest_description": "Manage MySQL databases over the web",
"phpsysinfo_manifest_arguments_install_display_mode": "Display Mode?",
"phpsysinfo_manifest_arguments_install_domain": "Choose a domain for PhpSysInfo",
"phpsysinfo_manifest_arguments_install_is_public": "Is it a public WordPress site?",
"phpsysinfo_manifest_arguments_install_language": "Default Language?",
"phpsysinfo_manifest_arguments_install_path": "Choose a path for PhpSysInfo",
"phpsysinfo_manifest_description": "A customizable PHP script that displays information about your system nicely.",
"piratebox_manifest_arguments_install_domain": "Choose a domain for the web administration",
"piratebox_manifest_arguments_install_opt_chat": "Enable the chat? (yes/no)",
"piratebox_manifest_arguments_install_opt_deleting": "Can users delete files? (yes/no)",
"piratebox_manifest_arguments_install_opt_domain": "Choose a fake domain pour the PirateBox",
"piratebox_manifest_arguments_install_opt_name": "Choose a name for the PirateBox",
"piratebox_manifest_arguments_install_opt_renaming": "Can users rename files? (yes/no)",
"piratebox_manifest_arguments_install_path": "Choose a path for the web administration",
"piratebox_manifest_description": "PirateBox",
"piwigo_manifest_arguments_install_admin": "Choose an admin user",
"piwigo_manifest_arguments_install_domain": "Choose a domain for Piwigo",
"piwigo_manifest_arguments_install_is_public": "Is it a public application?",
"piwigo_manifest_arguments_install_language": "Choose the application language",
"piwigo_manifest_arguments_install_path": "Choose a path for Piwigo",
"piwigo_manifest_description": "photo gallery",
"piwik_manifest_arguments_install_admin": "Choose the Piwik administrator (must be an existing YunoHost user)",
"piwik_manifest_arguments_install_domain": "Choose a domain for Piwik",
"piwik_manifest_arguments_install_option_geoip": "Activate the plugin geolocation of visitors.",
"piwik_manifest_arguments_install_option_log": "Enable the analysis of server logs.",
"piwik_manifest_arguments_install_path": "Choose a path for Piwik",
"piwik_manifest_description": "Measurement Software web statistics to analyze traffic to your sites.",
"plexmediaserver_manifest_arguments_install_domain": "Choose a domain for PlexMediaServer",
"plexmediaserver_manifest_arguments_install_path": "Choose a path for PlexMediaServer",
"plexmediaserver_manifest_description": "Media server",
"pluxml_manifest_arguments_install_admin": "Choose an admin user for PluXml",
"pluxml_manifest_arguments_install_default_lang": "Default language",
"pluxml_manifest_arguments_install_domain": "Choose a domain for PluXml",
"pluxml_manifest_arguments_install_is_public": "Should this application be public?",
"pluxml_manifest_arguments_install_password": "Choose an admin password for PluXml",
"pluxml_manifest_arguments_install_path": "Choose a path for PluXml",
"pluxml_manifest_arguments_install_public_site": "Should this application be public?",
"pluxml_manifest_description": "A fast and light blog/CMS storing data in XML and not in database.",
"proftpd_manifest_arguments_install_domain": "Choose a domain for FTP server",
"proftpd_manifest_arguments_install_password": "Choose a password for www-data (if empty, www-data account doesn't enable)",
"proftpd_manifest_description": "",
"pydio_manifest_arguments_install_admin": "Choose the Pydio admin user",
"pydio_manifest_arguments_install_domain": "Choose a domain for Pydio",
"pydio_manifest_arguments_install_path": "Choose a path for Pydio",
"pydio_manifest_description": "File sharing platform",
"radicale_manifest_arguments_install_admin": "Choose the administrator (must be an existing YunoHost user)",
"radicale_manifest_arguments_install_domain": "Choose a domain for Radicale",
"radicale_manifest_arguments_install_infcloud": "Install InfCloud web interface?",
"radicale_manifest_arguments_install_language": "Choose your interface language",
"radicale_manifest_arguments_install_path": "Choose a path for Radicale",
"radicale_manifest_description": "CalDAV (calendar) and CardDAV (contact) synchronization server",
"rainloop_manifest_arguments_install_domain": "Choose a domain for Rainloop",
"rainloop_manifest_arguments_install_is_public": "Is it a public application?",
"rainloop_manifest_arguments_install_lang": "Select default language",
"rainloop_manifest_arguments_install_ldap": "Do you want to add YunoHost users to the recipients suggestions?",
"rainloop_manifest_arguments_install_password": "Choose a strong password for the 'admin' user",
"rainloop_manifest_arguments_install_path": "Choose a path for Rainloop",
"rainloop_manifest_description": "Lightweight multi-account webmail",
"redirect_manifest_arguments_install_domain": "Choose a domain for your redirect",
"redirect_manifest_arguments_install_is_public": "Is it a public redirect ?",
"redirect_manifest_arguments_install_path": "Choose a path for your redirect",
"redirect_manifest_arguments_install_redirect_path": "Redirect destination path",
"redirect_manifest_arguments_install_redirect_type": "Redirect type",
"redirect_manifest_description": "Create a redirection or a proxy to another path.",
"riot_manifest_arguments_install_default_home_server": "Chose a default home server",
"riot_manifest_arguments_install_domain": "Choose a domain for Riot",
"riot_manifest_arguments_install_is_public": "Is it a public server ?",
"riot_manifest_arguments_install_path": "Choose a path for Riot",
"riot_manifest_description": "A web client for matrix",
"roadiz_manifest_arguments_install_admin_name": "Choose the Roadiz administrator (must be an existing YunoHost user)",
"roadiz_manifest_arguments_install_admin_pass": "Set the password for the Admin user \u2265 5 character",
"roadiz_manifest_arguments_install_domain": "Choose a domain for Roadiz",
"roadiz_manifest_arguments_install_is_public": "Is it a public Roadiz site ?",
"roadiz_manifest_arguments_install_path": "Choose a path for Roadiz",
"roadiz_manifest_description": "Create a modern Website",
"roundcube_manifest_arguments_install_domain": "Choose a domain for Roundcube",
"roundcube_manifest_arguments_install_path": "Choose a path for Roundcube",
"roundcube_manifest_arguments_install_with_carddav": "Install CardDAV synchronization plugin?",
"roundcube_manifest_description": "Open Source Webmail software",
"rutorrent_manifest_arguments_install_data_dir": "Choose a folder to store the downloads",
"rutorrent_manifest_arguments_install_domain": "Choose a domain for ruTorrent",
"rutorrent_manifest_arguments_install_password": "Choose a password for the rtorrent system user",
"rutorrent_manifest_arguments_install_path": "Choose a path for ruTorrent",
"rutorrent_manifest_description": "Torrent client",
"scm_manifest_arguments_install_admin": "Choose the SCM-Manager administrator (must be an existing YunoHost user)",
"scm_manifest_arguments_install_admin_passwd": "Choose a password for SCM-Manager administrator",
"scm_manifest_arguments_install_domain": "Choose a domain for SCM-Manager",
"scm_manifest_arguments_install_path": "Choose a path for SCM-Manager",
"scm_manifest_description": "The easiest way to share and manage your Git, Mercurial and Subversion repositories over http",
"scrumblr_manifest_arguments_install_domain": "Choose a domain name for Haste",
"scrumblr_manifest_arguments_install_is_public": "Is it a public site? ",
"scrumblr_manifest_arguments_install_path": "Choose a path for scrumblr, only / is allowed.",
"scrumblr_manifest_description": "Software for notes",
"seafile_manifest_arguments_install_admin": "Choose the admin user for Seafile",
"seafile_manifest_arguments_install_admin_password": "Enter a password for the administrator",
"seafile_manifest_arguments_install_architecture": "What is the server architecture?",
"seafile_manifest_arguments_install_domain": "Choose a domain for Seafile",
"seafile_manifest_arguments_install_path": "Choose a path for Seafile",
"seafile_manifest_arguments_install_public_site": "Is it a public site ? If you want to use a desktop client or the smartphone app, make Seafile public.",
"seafile_manifest_arguments_install_server_name": "Choose a name",
"seafile_manifest_description": "Open Source Cloud Storage",
"searx_manifest_arguments_install_domain": "Choose a domain for Searx",
"searx_manifest_arguments_install_is_public": "Is it a public Searx site ?",
"searx_manifest_arguments_install_path": "Choose a path for Searx",
"searx_manifest_description": "A privacy-respecting, hackable metasearch engine",
"seenthis_manifest_arguments_install_admin": "Choose the SPIP administrator (must be an existing YunoHost user)",
"seenthis_manifest_arguments_install_domain": "Choose a domain name for Seenthis",
"seenthis_manifest_arguments_install_is_public": "Is it a public SPIP site ?",
"seenthis_manifest_arguments_install_language": "Choose the application language",
"seenthis_manifest_arguments_install_path": "Choose a path for Seenthis",
"seenthis_manifest_description": "Seenthis - Short-blogging destin\u00e9 \u00e0 la veille d\u2019actualit\u00e9.",
"shaarli_manifest_arguments_install_admin": "Admin user",
"shaarli_manifest_arguments_install_domain": "Choose a domain for Shaarli",
"shaarli_manifest_arguments_install_path": "Choose a path for Shaarli",
"shaarli_manifest_arguments_install_privatelinkbydefault": "Are new links private by default ?",
"shaarli_manifest_arguments_install_public": "Is it a public Shaarli site ?",
"shaarli_manifest_arguments_install_title": "Choose a title for Shaarli's page",
"shaarli_manifest_description": "The personal, minimalist, super-fast, no-database delicious clone",
"shellinabox_manifest_arguments_install_domain": "Choose a domain for Shell In A Box",
"shellinabox_manifest_arguments_install_path": "Choose a path for Shell In A Box",
"shellinabox_manifest_description": "Web based AJAX terminal emulator",
"shout_manifest_arguments_install_domain": "Choose a domain for Shout",
"shout_manifest_arguments_install_is_public": "Is it a public instance ?",
"shout_manifest_arguments_install_path": "Choose a path for Shout",
"shout_manifest_description": "Web IRC client",
"sickbeard_manifest_arguments_install_domain": "Choose a domain for Sickbeard",
"sickbeard_manifest_arguments_install_fork": "LOCAL: Source URL of GIT to use",
"sickbeard_manifest_arguments_install_host": "REMOTE: Specify URL for the host",
"sickbeard_manifest_arguments_install_method": "Choose installation method",
"sickbeard_manifest_arguments_install_options": "LOCAL: Choose a downloader to configure",
"sickbeard_manifest_arguments_install_path": "Choose a path for Sickbeard",
"sickbeard_manifest_arguments_install_port": "LOCAL: Choose the listening port of the app",
"sickbeard_manifest_arguments_install_public": "Is it a public application ?",
"sickbeard_manifest_arguments_remove_data": "Would you like to keep data files ?",
"sickbeard_manifest_description": "Automatic TV show downloader",
"sogo_manifest_arguments_install_admin": "Choose an admin user",
"sogo_manifest_arguments_install_domain": "Choose a domain for sogo",
"sogo_manifest_arguments_install_is_public": "Is it a public application?",
"sogo_manifest_description": "Sogo is an opensource groupware for E-Mail, Contacts and Calender.",
"sonerezh_manifest_arguments_install_domain": "Domain name for Sonerezh",
"sonerezh_manifest_arguments_install_email_auth": "Email address which will be used for authentication",
"sonerezh_manifest_arguments_install_password": "Password to authenticate on Sonerezh (length \u2265 8)",
"sonerezh_manifest_arguments_install_url_path": "Path for Sonerezh",
"sonerezh_manifest_description": "Self-hosted, web-based application to stream music, everywhere.",
"spip2_manifest_arguments_install_admin": "Choose the SPIP administrator (must be an existing YunoHost user)",
"spip2_manifest_arguments_install_domain": "Choose a domain name for SPIP",
"spip2_manifest_arguments_install_is_public": "Is it a public SPIP site ?",
"spip2_manifest_arguments_install_language": "Choose the application language",
"spip2_manifest_arguments_install_path": "Choose a path for SPIP",
"spip2_manifest_description": "SPIP - publishing system for the Internet",
"spip_manifest_arguments_install_admin": "Choose the SPIP administrator (must be an existing YunoHost user)",
"spip_manifest_arguments_install_domain": "Choose a domain name for SPIP",
"spip_manifest_arguments_install_is_public": "Is it a public SPIP site ?",
"spip_manifest_arguments_install_language": "Choose the application language",
"spip_manifest_arguments_install_ldap": "LDAP Connection",
"spip_manifest_arguments_install_path": "Choose a path for SPIP",
"spip_manifest_description": "SPIP - publishing system for the Internet",
"staticwebapp_manifest_arguments_install_domain": "Choose a domain for your Webapp",
"staticwebapp_manifest_arguments_install_is_public": "Is it a public website ?",
"staticwebapp_manifest_arguments_install_path": "Choose a path for your Webapp",
"staticwebapp_manifest_description": "Minimal web application for static files (vhost)",
"strut_manifest_arguments_install_domain": "Choose a domain for Strut",
"strut_manifest_arguments_install_path": "Choose a path for Strut",
"strut_manifest_arguments_install_public_site": "Could non member create presentations ?",
"strut_manifest_description": "Strut is a slide editor creating impress.js presentations.",
"subsonic_manifest_arguments_install_admin": "Choose the Subsonic administrator (must be an existing YunoHost user)",
"subsonic_manifest_arguments_install_domain": "Choose a domain for Subsonic",
"subsonic_manifest_arguments_install_path": "Choose a path for Subsonic",
"subsonic_manifest_description": "Subsonic is an open source, web-based media server.",
"synapse_manifest_arguments_install_domain": "Choose a domain for Synapse",
"synapse_manifest_arguments_install_is_public": "Is it a public server ?",
"synapse_manifest_description": "Instant messaging server who use matrix",
"syncthing_manifest_arguments_install_domain": "Choose a domain for Syncthing",
"syncthing_manifest_arguments_install_path": "Choose a path for Syncthing",
"syncthing_manifest_description": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.",
"tagspaces_manifest_arguments_install_domain": "Choose a domain for TagSpaces",
"tagspaces_manifest_arguments_install_is_public": "Is it a public TagSpaces? (note: TagSpaces is just a viewing tool, it does not store your data by itself)",
"tagspaces_manifest_arguments_install_last": "Do you wish to install the very latest version of TagSpaces or the YunoHost-tested one? (Note: it is riskier the latest source version)",
"tagspaces_manifest_arguments_install_path": "Choose a path for TagSpaces",
"tagspaces_manifest_description": "TagSpaces is an open source personal data manager. It helps you organize files with tags on every platform.",
"teampass_manifest_arguments_install_domain": "Choose a domain for Teampass",
"teampass_manifest_arguments_install_password": "Choose a password for the admin",
"teampass_manifest_arguments_install_path": "Choose a path for Teampass",
"teampass_manifest_description": "Passwords Manager",
"teamspeak_manifest_arguments_install_System-OS Platform": "64 bit or 32 bit? (x64 vs x86)",
"teamspeak_manifest_description": "Cross-platform voice communication server",
"telegram_manifest_arguments_install_admin": "Choose the Telegram administrator (must be an existing YunoHost user)",
"telegram_manifest_arguments_install_domain": "Choose a domain for Telegram",
"telegram_manifest_arguments_install_path": "Choose a path for Telegram",
"telegram_manifest_description": "Telegram - a new era of messaging",
"testupgrade_manifest_arguments_install_domain": "Choose a domain for TestUpgrade",
"testupgrade_manifest_arguments_install_is_public": "Is it a public site ?",
"testupgrade_manifest_arguments_install_path": "Choose a path for TestUpgrade",
"testupgrade_manifest_description": "Dummy app for testing upgrade. Development purpose.",
"torclient_manifest_arguments_install_domain": "Choose a domain for the web administration",
"torclient_manifest_arguments_install_path": "Choose a path for the web administration",
"torclient_manifest_description": "TOR Client",
"torrelay_manifest_arguments_install_contact": "Choose an email address to be contacted on",
"torrelay_manifest_arguments_install_nickname": "Choose a nickname for your tor relay",
"torrelay_manifest_arguments_install_policy": "Choose if you want to be an exit node or not. If you don't know what it is, you should set it to No",
"torrelay_manifest_arguments_install_port": "Choose a port on which Tor will listen on",
"torrelay_manifest_description": "Tor relays are also referred to as routers or nodes. They receive traffic on the Tor network and pass it along. Check out the Tor website for a more detailed explanation of how Tor works.",
"transmission_manifest_arguments_install_domain": "Choose a domain for Transmission",
"transmission_manifest_arguments_install_path": "Choose a path for Transmission",
"transmission_manifest_description": "A Fast, Easy, and Free BitTorrent Client",
"transwhat_manifest_arguments_install_admin": "Choose a admin user number (it must be a whatsapp user",
"transwhat_manifest_arguments_install_architecture": "What is the server architecture?",
"transwhat_manifest_arguments_install_domain": "Choose a domain for your Transwhat",
"transwhat_manifest_arguments_install_path": "Choose a path for your transwhat",
"transwhat_manifest_description": "A getway to whatsapp from Jabber",
"ttrss_manifest_arguments_install_domain": "Choose a domain for Tiny-Tiny-RSS",
"ttrss_manifest_arguments_install_path": "Choose a path for Tiny-Tiny-RSS",
"ttrss_manifest_description": "A PHP and Ajax feed reader",
"vpnclient_manifest_arguments_install_domain": "Choose a domain for the web administration",
"vpnclient_manifest_arguments_install_path": "Choose a path for the web administration",
"vpnclient_manifest_description": "VPN Client",
"wallabag_manifest_arguments_install_domain": "Choose a domain for Wallabag",
"wallabag_manifest_arguments_install_path": "Choose a path for Wallabag",
"wallabag_manifest_description": "A self hostable read-it-later app",
"webapp_multi_inst_manifest_arguments_install_db_create": "Should we create a database for this app ? The database name and user will be $domain$path such as domainorgsite",
"webapp_multi_inst_manifest_arguments_install_db_pwd": "Choose a STRONG password to access the database",
"webapp_multi_inst_manifest_arguments_install_domain": "Choose a domain for your Webapp",
"webapp_multi_inst_manifest_arguments_install_is_public": "Is it a public website ?",
"webapp_multi_inst_manifest_arguments_install_path": "Choose a path for your Webapp",
"webapp_multi_inst_manifest_description": "Web App Multi Instances without FTP access",
"webmin_manifest_arguments_install_admin": "Choose the Webmin administrator (must be an existing YunoHost user)",
"webmin_manifest_arguments_install_domain": "Choose a domain for Webmin",
"webmin_manifest_arguments_install_path": "Choose a path for Webmin",
"webmin_manifest_description": "Webmin",
"wekan_manifest_arguments_install_admin": "Choose an admin user",
"wekan_manifest_arguments_install_domain": "Choose a domain name for Wekan",
"wekan_manifest_arguments_install_is_public": "Is it a public application?",
"wekan_manifest_arguments_install_language": "Choose the application language",
"wekan_manifest_arguments_install_path": "Choose a path for Wekan",
"wekan_manifest_description": "Trello-like kanban",
"wordpress_manifest_arguments_install_admin": "Choose the WordPress administrator (must be an existing YunoHost user)",
"wordpress_manifest_arguments_install_domain": "Choose a domain for WordPress",
"wordpress_manifest_arguments_install_is_public": "Is it a public WordPress site ?",
"wordpress_manifest_arguments_install_language": "Choose the language of the WordPress site",
"wordpress_manifest_arguments_install_multisite": "Enable multisite option ?",
"wordpress_manifest_arguments_install_path": "Choose a path for WordPress",
"wordpress_manifest_description": "Create a beautiful blog or website easily",
"yifypop_manifest_arguments_install_domain": "Choose a domain for yify-pop",
"yifypop_manifest_arguments_install_path": "Choose a path for your Webapp",
"yifypop_manifest_description": "Inspired by Popcorn Time, a node web server to stream torrents from YIFY.",
"ynapticron_manifest_arguments_install_emails": "Email addresses the notifications will be send to (space separated).",
"ynapticron_manifest_description": "Be notified on packages to upgrade on your system.",
"yourls_manifest_arguments_install_admin": "Choose the Yourls administrator (must be an existing YunoHost user)",
"yourls_manifest_arguments_install_domain": "Choose a domain for Yourls",
"yourls_manifest_arguments_install_path": "Choose a path for Yourls",
"yourls_manifest_description": "An URL shortening service",
"youtube-dl-webui_manifest_arguments_install_domain": "Choose a domain for Youtube-dl-WebUI",
"youtube-dl-webui_manifest_arguments_install_download_folder": "Choose a folder where video and music will be downloaded",
"youtube-dl-webui_manifest_arguments_install_is_public": "Is it a public application ?",
"youtube-dl-webui_manifest_arguments_install_path": "Choose a path for Youtube-dl-WebUI",
"youtube-dl-webui_manifest_description": "Web interface for youtube-dl",
"yunofav_manifest_arguments_install_domain": "Choose a domain for Yunofav",
"yunofav_manifest_arguments_install_path": "Choose a path for Yunofav",
"yunofav_manifest_description": "A page of favorite links for Yunohost",
"z-push_manifest_arguments_install_domain": "Choose a domain for Z-push",
"z-push_manifest_arguments_install_path": "No choice, it must be /Microsoft-Server-ActiveSync",
"z-push_manifest_description": "Z-Push is an Exchange ActiveSync fronted written in php which lets you synchronize emails (imap/smtp backend) and calendar/contacts (carddav and caldav backend)",
"zerobin_manifest_arguments_install_domain": "Choose a domain for Zerobin",
"zerobin_manifest_arguments_install_is_public": "Is it a public Zerobin site ?",
"zerobin_manifest_arguments_install_path": "Choose a path for Zerobin",
"zerobin_manifest_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data",
"zeronet_manifest_arguments_install_admin": "Choose an admin user (the one who will be able to access the admin interface)",
"zeronet_manifest_arguments_install_domain": "Choose a sub domain name for ynhexample",
"zeronet_manifest_description": "Decentralized websites using Bitcoin crypto and BitTorrent network",
"zomburl_manifest_arguments_install_domain": "Choose a domain for Zomburl",
"zomburl_manifest_arguments_install_path": "Choose a path for Zomburl",
"zomburl_manifest_description": "An URL shortening service"
}

754
locales/es.json Normal file
View file

@ -0,0 +1,754 @@
{
"20euros_manifest_arguments_install_domain": "",
"20euros_manifest_arguments_install_is_public": "",
"20euros_manifest_arguments_install_path": "",
"20euros_manifest_description": "",
"243_manifest_arguments_install_domain": "",
"243_manifest_arguments_install_is_public": "",
"243_manifest_arguments_install_path": "",
"243_manifest_description": "",
"LBCAlerte_manifest_arguments_install_domain": "",
"LBCAlerte_manifest_arguments_install_is_public": "",
"LBCAlerte_manifest_arguments_install_password": "",
"LBCAlerte_manifest_arguments_install_path": "",
"LBCAlerte_manifest_description": "",
"abantecart_manifest_arguments_install_admin_name": "",
"abantecart_manifest_arguments_install_admin_pass": "",
"abantecart_manifest_arguments_install_domain": "",
"abantecart_manifest_arguments_install_is_public": "",
"abantecart_manifest_arguments_install_path": "",
"abantecart_manifest_description": "",
"adhocserver_manifest_description": "",
"adminer_manifest_arguments_install_admin": "",
"adminer_manifest_arguments_install_domain": "",
"adminer_manifest_arguments_install_path": "",
"adminer_manifest_description": "",
"agendav_manifest_arguments_install_domain": "",
"agendav_manifest_arguments_install_language": "",
"agendav_manifest_arguments_install_path": "",
"agendav_manifest_description": "",
"ajaxgoogleapis_manifest_arguments_install_public_site": "",
"ajaxgoogleapis_manifest_description": "",
"ampache_manifest_arguments_install_admin": "",
"ampache_manifest_arguments_install_domain": "",
"ampache_manifest_arguments_install_path": "",
"ampache_manifest_description": "",
"askbot_manifest_arguments_install_admin": "",
"askbot_manifest_arguments_install_domain": "",
"askbot_manifest_arguments_install_path": "",
"askbot_manifest_description": "",
"baikal_manifest_arguments_install_domain": "",
"baikal_manifest_arguments_install_password": "",
"baikal_manifest_arguments_install_path": "",
"baikal_manifest_description": "",
"bicbucstriim_manifest_arguments_install_admin": "",
"bicbucstriim_manifest_arguments_install_domain": "",
"bicbucstriim_manifest_arguments_install_is_public": "",
"bicbucstriim_manifest_arguments_install_login": "",
"bicbucstriim_manifest_arguments_install_path": "",
"bicbucstriim_manifest_description": "",
"bolt_manifest_arguments_install_domain": "",
"bolt_manifest_arguments_install_path": "",
"bolt_manifest_arguments_install_public_site": "",
"bolt_manifest_description": "",
"bozon_manifest_arguments_install_admin": "",
"bozon_manifest_arguments_install_domain": "",
"bozon_manifest_arguments_install_filesize": "",
"bozon_manifest_arguments_install_is_public": "",
"bozon_manifest_arguments_install_language": "",
"bozon_manifest_arguments_install_password": "",
"bozon_manifest_arguments_install_path": "",
"bozon_manifest_description": "",
"btsync_manifest_arguments_install_domain": "",
"btsync_manifest_arguments_install_path": "",
"btsync_manifest_arguments_install_platform": "",
"btsync_manifest_description": "",
"cesium_manifest_arguments_install_domain": "",
"cesium_manifest_arguments_install_is_public": "",
"cesium_manifest_arguments_install_path": "",
"cesium_manifest_description": "",
"chtickynotes_manifest_arguments_install_domain": "",
"chtickynotes_manifest_arguments_install_path": "",
"chtickynotes_manifest_description": "",
"cops_manifest_arguments_install_basicauthcreate": "",
"cops_manifest_arguments_install_basicauthname": "",
"cops_manifest_arguments_install_basicauthpass": "",
"cops_manifest_arguments_install_calibre": "",
"cops_manifest_arguments_install_domain": "",
"cops_manifest_arguments_install_is_public": "",
"cops_manifest_arguments_install_path": "",
"cops_manifest_description": "",
"couchpotato_manifest_arguments_install_domain": "",
"couchpotato_manifest_arguments_install_fork": "",
"couchpotato_manifest_arguments_install_host": "",
"couchpotato_manifest_arguments_install_method": "",
"couchpotato_manifest_arguments_install_path": "",
"couchpotato_manifest_arguments_install_port": "",
"couchpotato_manifest_arguments_install_public": "",
"couchpotato_manifest_arguments_remove_data": "",
"couchpotato_manifest_description": "",
"cubiks2048_manifest_arguments_install_domain": "",
"cubiks2048_manifest_arguments_install_is_public": "",
"cubiks2048_manifest_arguments_install_path": "",
"cubiks2048_manifest_description": "",
"diaspora_manifest_arguments_install_domain": "",
"diaspora_manifest_arguments_install_site_public": "",
"diaspora_manifest_description": "",
"dockercontainer_manifest_arguments_install_command": "",
"dockercontainer_manifest_arguments_install_datacontainer": "",
"dockercontainer_manifest_arguments_install_name": "",
"dockercontainer_manifest_arguments_install_repository": "",
"dockercontainer_manifest_arguments_install_restart": "",
"dockercontainer_manifest_arguments_install_volume": "",
"dockercontainer_manifest_description": "",
"dockerrstudio_manifest_arguments_install_domain": "",
"dockerrstudio_manifest_arguments_install_password": "",
"dockerrstudio_manifest_arguments_install_path": "",
"dockerrstudio_manifest_arguments_install_user": "",
"dockerrstudio_manifest_description": "",
"dockerui_manifest_arguments_install_domain": "",
"dockerui_manifest_arguments_install_path": "",
"dockerui_manifest_description": "",
"dokuwiki_manifest_arguments_install_admin": "",
"dokuwiki_manifest_arguments_install_domain": "",
"dokuwiki_manifest_arguments_install_is_public": "",
"dokuwiki_manifest_arguments_install_path": "",
"dokuwiki_manifest_description": "DokuWiki es un sistema de Wiki de uso sencillicimo y compatible con los est\u00e1ndares.",
"dolibarr_manifest_arguments_install_domain": "",
"dolibarr_manifest_arguments_install_path": "",
"dolibarr_manifest_description": "",
"dotclear2_manifest_arguments_install_admin": "",
"dotclear2_manifest_arguments_install_domain": "",
"dotclear2_manifest_arguments_install_is_public": "",
"dotclear2_manifest_arguments_install_password": "",
"dotclear2_manifest_arguments_install_path": "",
"dotclear2_manifest_description": "",
"duniter_manifest_arguments_install_admin": "",
"duniter_manifest_arguments_install_domain": "",
"duniter_manifest_arguments_install_is_cesium_public": "",
"duniter_manifest_arguments_install_port": "",
"duniter_manifest_arguments_install_sync_node": "",
"duniter_manifest_arguments_install_sync_port": "",
"duniter_manifest_description": "",
"emailpoubelle_manifest_arguments_install_admin": "",
"emailpoubelle_manifest_arguments_install_domain": "",
"emailpoubelle_manifest_arguments_install_path": "",
"emailpoubelle_manifest_arguments_install_public_site": "",
"emailpoubelle_manifest_description": "",
"ethercalc_manifest_arguments_install_domain": "",
"ethercalc_manifest_arguments_install_expire": "",
"ethercalc_manifest_arguments_install_path": "",
"ethercalc_manifest_arguments_install_public_site": "",
"ethercalc_manifest_description": "",
"etherpad_mypads_manifest_arguments_install_abiword": "",
"etherpad_mypads_manifest_arguments_install_admin": "",
"etherpad_mypads_manifest_arguments_install_domain": "",
"etherpad_mypads_manifest_arguments_install_is_public": "",
"etherpad_mypads_manifest_arguments_install_language": "",
"etherpad_mypads_manifest_arguments_install_password": "",
"etherpad_mypads_manifest_description": "",
"etherpadlite_manifest_arguments_install_domain": "",
"etherpadlite_manifest_arguments_install_path": "",
"etherpadlite_manifest_arguments_install_public_site": "",
"etherpadlite_manifest_description": "",
"ffsync_manifest_arguments_install_domain": "",
"ffsync_manifest_arguments_install_path": "",
"ffsync_manifest_description": "",
"filebin_manifest_arguments_install_domain": "",
"filebin_manifest_arguments_install_is_public": "",
"filebin_manifest_arguments_install_path": "",
"filebin_manifest_description": "",
"flarum_manifest_arguments_install_admin": "",
"flarum_manifest_arguments_install_adminpass": "",
"flarum_manifest_arguments_install_domain": "",
"flarum_manifest_arguments_install_is_public": "",
"flarum_manifest_arguments_install_path": "",
"flarum_manifest_arguments_install_title": "",
"flarum_manifest_description": "",
"framagames_manifest_arguments_install_domain": "",
"framagames_manifest_arguments_install_is_public": "",
"framagames_manifest_arguments_install_path": "",
"framagames_manifest_description": "",
"freeboard_manifest_arguments_install_admin": "",
"freeboard_manifest_arguments_install_adv_html": "",
"freeboard_manifest_arguments_install_dash": "",
"freeboard_manifest_arguments_install_dash_bool": "",
"freeboard_manifest_arguments_install_domain": "",
"freeboard_manifest_arguments_install_is_public": "",
"freeboard_manifest_arguments_install_path": "",
"freeboard_manifest_description": "",
"freshrss_manifest_arguments_install_admin": "",
"freshrss_manifest_arguments_install_domain": "",
"freshrss_manifest_arguments_install_path": "",
"freshrss_manifest_description": "",
"friendica_manifest_arguments_install_admin": "",
"friendica_manifest_arguments_install_domain": "",
"friendica_manifest_arguments_install_path": "",
"friendica_manifest_arguments_install_public_site": "",
"friendica_manifest_description": "",
"ftp_webapp_manifest_arguments_install_admin": "",
"ftp_webapp_manifest_arguments_install_domain": "",
"ftp_webapp_manifest_arguments_install_language": "",
"ftp_webapp_manifest_description": "",
"garradin_manifest_arguments_install_domain": "",
"garradin_manifest_arguments_install_is_public": "",
"garradin_manifest_arguments_install_path": "",
"gateone_manifest_arguments_install_domain": "",
"gateone_manifest_arguments_install_path": "",
"gateone_manifest_description": "",
"ghostblog_manifest_arguments_install_admin": "",
"ghostblog_manifest_arguments_install_domain": "",
"ghostblog_manifest_arguments_install_password": "",
"ghostblog_manifest_arguments_install_path": "",
"ghostblog_manifest_description": "",
"gitolite_manifest_arguments_install_admin": "",
"gitolite_manifest_arguments_install_adminpubkey": "",
"gitolite_manifest_description": "",
"gitweb_manifest_arguments_install_admin": "",
"gitweb_manifest_arguments_install_domain": "",
"gitweb_manifest_arguments_install_path": "",
"gitweb_manifest_arguments_install_public_site": "",
"gitweb_manifest_description": "",
"glowingbear_manifest_arguments_install_domain": "",
"glowingbear_manifest_arguments_install_is_public": "",
"glowingbear_manifest_arguments_install_path": "",
"glowingbear_manifest_description": "",
"glpi_manifest_arguments_install_admin": "",
"glpi_manifest_arguments_install_domain": "",
"glpi_manifest_arguments_install_language": "",
"glpi_manifest_arguments_install_path": "",
"glpi_manifest_description": "",
"gnusocial_manifest_arguments_install_admin": "Escoge un adminitrador para GNU Social (debe ser un usuario existente en Yunuhost)",
"gnusocial_manifest_arguments_install_domain": "Escoge un SUBdominio para GNU Social",
"gnusocial_manifest_arguments_install_name": "Escoge un nombre para el nodo GNU Social",
"gnusocial_manifest_arguments_install_profile": "\u00bfQu\u00e9 perfil de GNU Social?",
"gnusocial_manifest_description": "Crea un nodo de comunicaci\u00f3n federado",
"gogs_manifest_arguments_install_admin": "",
"gogs_manifest_arguments_install_domain": "",
"gogs_manifest_arguments_install_path": "",
"gogs_manifest_arguments_install_public_site": "",
"gogs_manifest_description": "",
"grafana_manifest_arguments_install_admin": "",
"grafana_manifest_arguments_install_domain": "",
"grafana_manifest_arguments_install_is_public": "",
"grafana_manifest_arguments_install_path": "",
"grafana_manifest_description": "",
"haste_manifest_arguments_install_domain": "",
"haste_manifest_arguments_install_is_public": "",
"haste_manifest_arguments_install_path": "",
"haste_manifest_description": "",
"headphones_manifest_arguments_install_domain": "",
"headphones_manifest_arguments_install_fork": "",
"headphones_manifest_arguments_install_host": "",
"headphones_manifest_arguments_install_method": "",
"headphones_manifest_arguments_install_options": "",
"headphones_manifest_arguments_install_path": "",
"headphones_manifest_arguments_install_port": "",
"headphones_manifest_arguments_install_public": "",
"headphones_manifest_arguments_remove_data": "",
"headphones_manifest_description": "",
"hextris_manifest_arguments_install_domain": "",
"hextris_manifest_arguments_install_is_public": "",
"hextris_manifest_arguments_install_path": "",
"hextris_manifest_description": "",
"hotspot_manifest_arguments_install_domain": "",
"hotspot_manifest_arguments_install_firmware_nonfree": "",
"hotspot_manifest_arguments_install_path": "",
"hotspot_manifest_arguments_install_wifi_passphrase": "",
"hotspot_manifest_arguments_install_wifi_ssid": "",
"hotspot_manifest_description": "",
"htmltool_manifest_arguments_install_domain": "",
"htmltool_manifest_arguments_install_is_public": "",
"htmltool_manifest_arguments_install_path": "",
"htmltool_manifest_description": "",
"htpc-manager_manifest_arguments_install_domain": "",
"htpc-manager_manifest_arguments_install_path": "",
"htpc-manager_manifest_description": "",
"hubzilla_manifest_arguments_install_admin": "",
"hubzilla_manifest_arguments_install_adminemail": "",
"hubzilla_manifest_arguments_install_domain": "",
"hubzilla_manifest_arguments_install_is_public": "",
"hubzilla_manifest_description": "",
"huginn_manifest_arguments_install_admin": "",
"huginn_manifest_arguments_install_domain": "",
"huginn_manifest_arguments_install_invitation": "",
"huginn_manifest_arguments_install_is_public": "",
"huginn_manifest_arguments_install_password": "",
"huginn_manifest_arguments_install_path": "",
"huginn_manifest_description": "",
"ihatemoney_manifest_arguments_install_domain": "",
"ihatemoney_manifest_arguments_install_is_public": "",
"ihatemoney_manifest_arguments_install_path": "",
"ihatemoney_manifest_description": "",
"jappix_manifest_arguments_install_domain": "",
"jappix_manifest_arguments_install_language": "",
"jappix_manifest_arguments_install_name": "",
"jappix_manifest_arguments_install_path": "",
"jappix_manifest_description": "",
"jappix_mini_manifest_arguments_install_domain": "",
"jappix_mini_manifest_arguments_install_is_public": "",
"jappix_mini_manifest_arguments_install_muc": "",
"jappix_mini_manifest_arguments_install_path": "",
"jappix_mini_manifest_arguments_install_user": "",
"jappix_mini_manifest_description": "",
"jeedom_manifest_arguments_install_admin": "",
"jeedom_manifest_arguments_install_domain": "",
"jeedom_manifest_arguments_install_path": "",
"jeedom_manifest_arguments_install_sudo": "",
"jeedom_manifest_arguments_install_zwave": "",
"jeedom_manifest_description": "",
"jenkins_manifest_arguments_install_domain": "",
"jenkins_manifest_arguments_install_is_public": "",
"jenkins_manifest_arguments_install_path": "",
"jenkins_manifest_description": "",
"jirafeau_manifest_arguments_install_admin_user": "",
"jirafeau_manifest_arguments_install_domain": "",
"jirafeau_manifest_arguments_install_is_public": "",
"jirafeau_manifest_arguments_install_path": "",
"jirafeau_manifest_arguments_install_upload_password": "",
"jirafeau_manifest_description": "",
"jitsi_manifest_arguments_install_domain": "",
"jitsi_manifest_arguments_install_path": "",
"jitsi_manifest_description": "",
"kanboard_manifest_arguments_install_admin": "",
"kanboard_manifest_arguments_install_domain": "",
"kanboard_manifest_arguments_install_is_public": "",
"kanboard_manifest_arguments_install_path": "",
"kanboard_manifest_description": "",
"keeweb_manifest_arguments_install_domain": "",
"keeweb_manifest_arguments_install_is_public": "",
"keeweb_manifest_arguments_install_path": "",
"keeweb_manifest_description": "",
"kiwiirc_manifest_arguments_install_domain": "",
"kiwiirc_manifest_arguments_install_path": "",
"kiwiirc_manifest_arguments_install_public_site": "",
"kiwiirc_manifest_description": "",
"laverna_manifest_arguments_install_admin": "",
"laverna_manifest_arguments_install_domain": "",
"laverna_manifest_arguments_install_is_public": "",
"laverna_manifest_arguments_install_path": "",
"laverna_manifest_description": "",
"leed_manifest_arguments_install_admin": "",
"leed_manifest_arguments_install_domain": "",
"leed_manifest_arguments_install_is_public": "",
"leed_manifest_arguments_install_language": "",
"leed_manifest_arguments_install_market": "",
"leed_manifest_arguments_install_password": "",
"leed_manifest_arguments_install_path": "",
"leed_manifest_description": "",
"lektor_manifest_arguments_install_admin_user": "",
"lektor_manifest_arguments_install_domain": "",
"lektor_manifest_arguments_install_name": "",
"lektor_manifest_arguments_install_path": "",
"lektor_manifest_arguments_install_ssh_pub_key": "",
"lektor_manifest_description": "",
"limesurvey_manifest_arguments_install_admin": "",
"limesurvey_manifest_arguments_install_domain": "",
"limesurvey_manifest_arguments_install_language": "",
"limesurvey_manifest_arguments_install_path": "",
"limesurvey_manifest_description": "",
"linuxdash_manifest_arguments_install_domain": "",
"linuxdash_manifest_arguments_install_path": "",
"linuxdash_manifest_arguments_install_user": "",
"linuxdash_manifest_description": "",
"lutim_manifest_arguments_install_admin": "",
"lutim_manifest_arguments_install_always_encrypt": "",
"lutim_manifest_arguments_install_domain": "",
"lutim_manifest_arguments_install_is_public": "",
"lutim_manifest_arguments_install_path": "",
"lutim_manifest_description": "",
"lychee_manifest_arguments_install_admin_pwd": "",
"lychee_manifest_arguments_install_admin_user": "",
"lychee_manifest_arguments_install_domain": "",
"lychee_manifest_arguments_install_path": "",
"lychee_manifest_description": "",
"mailman_manifest_arguments_install_admin": "",
"mailman_manifest_arguments_install_adminPass": "",
"mailman_manifest_arguments_install_domain": "",
"mailman_manifest_arguments_install_is_public": "",
"mailman_manifest_arguments_install_language": "",
"mailman_manifest_arguments_install_listPrefix": "",
"mailman_manifest_arguments_install_path": "",
"mailman_manifest_description": "",
"mattermost_manifest_arguments_install_domain": "",
"mattermost_manifest_arguments_install_public_site": "",
"mattermost_manifest_description": "",
"mediagoblin_manifest_arguments_install_admin": "",
"mediagoblin_manifest_arguments_install_domain": "",
"mediagoblin_manifest_arguments_install_path": "",
"mediagoblin_manifest_arguments_install_public": "",
"mediagoblin_manifest_description": "",
"mediawiki_manifest_arguments_install_domain": "",
"mediawiki_manifest_arguments_install_is_public": "",
"mediawiki_manifest_arguments_install_language": "",
"mediawiki_manifest_arguments_install_path": "",
"mediawiki_manifest_arguments_install_wikiname": "",
"mediawiki_manifest_description": "",
"minchat_manifest_arguments_install_domain": "",
"minchat_manifest_arguments_install_ispublic": "",
"minchat_manifest_arguments_install_path": "",
"minchat_manifest_description": "",
"minidlna_manifest_arguments_install_version": "",
"minidlna_manifest_description": "",
"miniflux_manifest_arguments_install_admin": "",
"miniflux_manifest_arguments_install_domain": "",
"miniflux_manifest_arguments_install_path": "",
"miniflux_manifest_description": "",
"monit_manifest_arguments_install_domain": "",
"monit_manifest_arguments_install_path": "",
"monit_manifest_description": "",
"monitorix_manifest_arguments_install_domain": "",
"monitorix_manifest_arguments_install_path": "",
"monitorix_manifest_description": "",
"movim_manifest_arguments_install_admin": "",
"movim_manifest_arguments_install_domain": "",
"movim_manifest_arguments_install_language": "",
"movim_manifest_arguments_install_password": "",
"movim_manifest_arguments_install_path": "",
"movim_manifest_arguments_install_port": "",
"movim_manifest_arguments_install_ssoenabled": "",
"movim_manifest_description": "",
"multi_webapp_manifest_arguments_install_admin": "",
"multi_webapp_manifest_arguments_install_domain": "",
"multi_webapp_manifest_arguments_install_is_public": "",
"multi_webapp_manifest_arguments_install_path": "",
"multi_webapp_manifest_arguments_install_sql": "",
"multi_webapp_manifest_description": "",
"mumble_admin_plugin_manifest_arguments_install_admin": "",
"mumble_admin_plugin_manifest_arguments_install_admin_email": "",
"mumble_admin_plugin_manifest_arguments_install_admin_pass": "",
"mumble_admin_plugin_manifest_arguments_install_domain": "",
"mumble_admin_plugin_manifest_arguments_install_path": "",
"mumble_admin_plugin_manifest_description": "",
"mumbleserver_manifest_arguments_install_password": "",
"mumbleserver_manifest_arguments_install_port": "",
"mumbleserver_manifest_arguments_install_registername": "",
"mumbleserver_manifest_arguments_install_server_login_password": "",
"mumbleserver_manifest_arguments_install_welcometext": "",
"mumbleserver_manifest_description": "",
"munin_manifest_arguments_install_domain": "",
"munin_manifest_arguments_install_path": "",
"munin_manifest_description": "",
"my_webapp_manifest_arguments_install_domain": "",
"my_webapp_manifest_arguments_install_is_public": "",
"my_webapp_manifest_arguments_install_password": "",
"my_webapp_manifest_arguments_install_path": "",
"my_webapp_manifest_arguments_install_with_mysql": "",
"my_webapp_manifest_description": "",
"mycryptochat_manifest_arguments_install_domain": "",
"mycryptochat_manifest_arguments_install_is_public": "",
"mycryptochat_manifest_arguments_install_path": "",
"mycryptochat_manifest_description": "",
"netdata_manifest_arguments_install_domain": "",
"netdata_manifest_arguments_install_is_public": "",
"netdata_manifest_arguments_install_path": "",
"netdata_manifest_description": "",
"nextcloud_manifest_arguments_install_admin": "",
"nextcloud_manifest_arguments_install_domain": "",
"nextcloud_manifest_arguments_install_path": "",
"nextcloud_manifest_arguments_install_user_home": "",
"nextcloud_manifest_description": "",
"noalyss_manifest_arguments_install_domain": "",
"noalyss_manifest_arguments_install_path": "",
"noalyss_manifest_description": "",
"odoo_manifest_arguments_install_admin_password": "",
"odoo_manifest_arguments_install_database_password": "",
"odoo_manifest_arguments_install_domain": "",
"odoo_manifest_arguments_install_lang": "",
"odoo_manifest_arguments_install_odoo_version": "",
"odoo_manifest_description": "",
"ofbiz_manifest_arguments_install_admin": "",
"ofbiz_manifest_arguments_install_domain": "",
"ofbiz_manifest_arguments_install_path": "",
"ofbiz_manifest_description": "",
"openidsimplesamlphp_manifest_arguments_install_domain": "",
"openidsimplesamlphp_manifest_arguments_install_path": "",
"openidsimplesamlphp_manifest_description": "",
"opennote_manifest_arguments_install_admin": "",
"opennote_manifest_arguments_install_domain": "",
"opennote_manifest_arguments_install_is_public": "",
"opennote_manifest_arguments_install_path": "",
"opennote_manifest_description": "",
"opensondage_manifest_arguments_install_admin": "",
"opensondage_manifest_arguments_install_domain": "",
"opensondage_manifest_arguments_install_is_public": "",
"opensondage_manifest_arguments_install_language": "",
"opensondage_manifest_arguments_install_path": "",
"opensondage_manifest_description": "",
"openvpn_manifest_arguments_install_domain": "",
"openvpn_manifest_arguments_install_path": "",
"openvpn_manifest_description": "",
"openwrt_manifest_arguments_install_domain": "",
"openwrt_manifest_arguments_install_path": "",
"openwrt_manifest_arguments_install_server": "",
"openwrt_manifest_description": "",
"owncloud_manifest_arguments_install_admin": "",
"owncloud_manifest_arguments_install_domain": "",
"owncloud_manifest_arguments_install_path": "",
"owncloud_manifest_arguments_install_user_home": "",
"owncloud_manifest_description": "",
"phpBB_manifest_arguments_install_admin_email": "",
"phpBB_manifest_arguments_install_admin_login": "",
"phpBB_manifest_arguments_install_admin_pwd": "",
"phpBB_manifest_arguments_install_curl_inst": "",
"phpBB_manifest_arguments_install_domain": "",
"phpBB_manifest_arguments_install_is_public": "",
"phpBB_manifest_arguments_install_lang": "",
"phpBB_manifest_arguments_install_path": "",
"phpBB_manifest_description": "",
"phpldapadmin_manifest_arguments_install_admin": "",
"phpldapadmin_manifest_arguments_install_domain": "",
"phpldapadmin_manifest_arguments_install_path": "",
"phpldapadmin_manifest_description": "",
"phpmyadmin_manifest_arguments_install_admin": "",
"phpmyadmin_manifest_arguments_install_domain": "",
"phpmyadmin_manifest_arguments_install_path": "",
"phpmyadmin_manifest_description": "",
"phpsysinfo_manifest_arguments_install_display_mode": "",
"phpsysinfo_manifest_arguments_install_domain": "",
"phpsysinfo_manifest_arguments_install_is_public": "",
"phpsysinfo_manifest_arguments_install_language": "",
"phpsysinfo_manifest_arguments_install_path": "",
"phpsysinfo_manifest_description": "",
"piratebox_manifest_arguments_install_domain": "",
"piratebox_manifest_arguments_install_opt_chat": "",
"piratebox_manifest_arguments_install_opt_deleting": "",
"piratebox_manifest_arguments_install_opt_domain": "",
"piratebox_manifest_arguments_install_opt_name": "",
"piratebox_manifest_arguments_install_opt_renaming": "",
"piratebox_manifest_arguments_install_path": "",
"piratebox_manifest_description": "",
"piwigo_manifest_arguments_install_admin": "",
"piwigo_manifest_arguments_install_domain": "",
"piwigo_manifest_arguments_install_is_public": "",
"piwigo_manifest_arguments_install_language": "",
"piwigo_manifest_arguments_install_path": "",
"piwigo_manifest_description": "",
"piwik_manifest_arguments_install_admin": "",
"piwik_manifest_arguments_install_domain": "",
"piwik_manifest_arguments_install_option_geoip": "",
"piwik_manifest_arguments_install_option_log": "",
"piwik_manifest_arguments_install_path": "",
"piwik_manifest_description": "",
"plexmediaserver_manifest_arguments_install_domain": "",
"plexmediaserver_manifest_arguments_install_path": "",
"plexmediaserver_manifest_description": "",
"pluxml_manifest_arguments_install_admin": "",
"pluxml_manifest_arguments_install_default_lang": "",
"pluxml_manifest_arguments_install_domain": "",
"pluxml_manifest_arguments_install_password": "",
"pluxml_manifest_arguments_install_path": "",
"pluxml_manifest_arguments_install_public_site": "",
"pluxml_manifest_description": "",
"proftpd_manifest_arguments_install_domain": "",
"proftpd_manifest_arguments_install_password": "",
"proftpd_manifest_description": "",
"pydio_manifest_arguments_install_admin": "",
"pydio_manifest_arguments_install_domain": "",
"pydio_manifest_arguments_install_path": "",
"pydio_manifest_description": "",
"radicale_manifest_arguments_install_admin": "",
"radicale_manifest_arguments_install_domain": "",
"radicale_manifest_arguments_install_infcloud": "",
"radicale_manifest_arguments_install_language": "",
"radicale_manifest_arguments_install_path": "",
"radicale_manifest_description": "",
"rainloop_manifest_arguments_install_domain": "",
"rainloop_manifest_arguments_install_is_public": "",
"rainloop_manifest_arguments_install_lang": "",
"rainloop_manifest_arguments_install_ldap": "",
"rainloop_manifest_arguments_install_password": "",
"rainloop_manifest_arguments_install_path": "",
"rainloop_manifest_description": "",
"redirect_manifest_arguments_install_domain": "",
"redirect_manifest_arguments_install_is_public": "",
"redirect_manifest_arguments_install_path": "",
"redirect_manifest_arguments_install_redirect_path": "",
"redirect_manifest_arguments_install_redirect_type": "",
"redirect_manifest_description": "",
"riot_manifest_arguments_install_default_home_server": "",
"riot_manifest_arguments_install_domain": "",
"riot_manifest_arguments_install_is_public": "",
"riot_manifest_arguments_install_path": "",
"riot_manifest_description": "",
"roadiz_manifest_arguments_install_admin_name": "",
"roadiz_manifest_arguments_install_admin_pass": "",
"roadiz_manifest_arguments_install_domain": "",
"roadiz_manifest_arguments_install_is_public": "",
"roadiz_manifest_arguments_install_path": "",
"roadiz_manifest_description": "",
"roundcube_manifest_arguments_install_domain": "",
"roundcube_manifest_arguments_install_path": "",
"roundcube_manifest_arguments_install_with_carddav": "",
"roundcube_manifest_description": "",
"rutorrent_manifest_arguments_install_data_dir": "",
"rutorrent_manifest_arguments_install_domain": "",
"rutorrent_manifest_arguments_install_password": "",
"rutorrent_manifest_arguments_install_path": "",
"rutorrent_manifest_description": "",
"scm_manifest_arguments_install_admin": "",
"scm_manifest_arguments_install_admin_passwd": "",
"scm_manifest_arguments_install_domain": "",
"scm_manifest_arguments_install_path": "",
"scm_manifest_description": "",
"scrumblr_manifest_arguments_install_domain": "",
"scrumblr_manifest_arguments_install_is_public": "",
"scrumblr_manifest_arguments_install_path": "",
"scrumblr_manifest_description": "",
"seafile_manifest_arguments_install_admin": "",
"seafile_manifest_arguments_install_admin_password": "",
"seafile_manifest_arguments_install_architecture": "",
"seafile_manifest_arguments_install_domain": "",
"seafile_manifest_arguments_install_path": "",
"seafile_manifest_arguments_install_public_site": "",
"seafile_manifest_arguments_install_server_name": "",
"seafile_manifest_description": "",
"searx_manifest_arguments_install_domain": "",
"searx_manifest_arguments_install_is_public": "",
"searx_manifest_arguments_install_path": "",
"searx_manifest_description": "",
"shaarli_manifest_arguments_install_admin": "",
"shaarli_manifest_arguments_install_domain": "",
"shaarli_manifest_arguments_install_path": "",
"shaarli_manifest_arguments_install_privatelinkbydefault": "",
"shaarli_manifest_arguments_install_public": "",
"shaarli_manifest_arguments_install_title": "",
"shaarli_manifest_description": "",
"shellinabox_manifest_arguments_install_domain": "",
"shellinabox_manifest_arguments_install_path": "",
"shellinabox_manifest_description": "",
"shout_manifest_arguments_install_domain": "",
"shout_manifest_arguments_install_is_public": "",
"shout_manifest_arguments_install_path": "",
"shout_manifest_description": "",
"sickbeard_manifest_arguments_install_domain": "",
"sickbeard_manifest_arguments_install_fork": "",
"sickbeard_manifest_arguments_install_host": "",
"sickbeard_manifest_arguments_install_method": "",
"sickbeard_manifest_arguments_install_options": "",
"sickbeard_manifest_arguments_install_path": "",
"sickbeard_manifest_arguments_install_port": "",
"sickbeard_manifest_arguments_install_public": "",
"sickbeard_manifest_arguments_remove_data": "",
"sickbeard_manifest_description": "",
"sogo_manifest_arguments_install_admin": "",
"sogo_manifest_arguments_install_domain": "",
"sogo_manifest_arguments_install_is_public": "",
"sogo_manifest_description": "",
"sonerezh_manifest_arguments_install_domain": "",
"sonerezh_manifest_arguments_install_email_auth": "",
"sonerezh_manifest_arguments_install_password": "",
"sonerezh_manifest_arguments_install_url_path": "",
"sonerezh_manifest_description": "",
"spip_manifest_arguments_install_admin": "",
"spip_manifest_arguments_install_domain": "",
"spip_manifest_arguments_install_path": "",
"spip_manifest_description": "",
"strut_manifest_arguments_install_domain": "",
"strut_manifest_arguments_install_path": "",
"strut_manifest_arguments_install_public_site": "",
"strut_manifest_description": "",
"subsonic_manifest_arguments_install_admin": "",
"subsonic_manifest_arguments_install_domain": "",
"subsonic_manifest_arguments_install_path": "",
"subsonic_manifest_description": "",
"synapse_manifest_arguments_install_domain": "",
"synapse_manifest_arguments_install_is_public": "",
"synapse_manifest_description": "",
"syncthing_manifest_arguments_install_domain": "",
"syncthing_manifest_arguments_install_path": "",
"syncthing_manifest_description": "",
"tagspaces_manifest_arguments_install_domain": "",
"tagspaces_manifest_arguments_install_is_public": "",
"tagspaces_manifest_arguments_install_last": "",
"tagspaces_manifest_arguments_install_path": "",
"tagspaces_manifest_description": "",
"teampass_manifest_arguments_install_domain": "",
"teampass_manifest_arguments_install_password": "",
"teampass_manifest_arguments_install_path": "",
"teampass_manifest_description": "",
"teamspeak_manifest_arguments_install_System-OS Platform": "",
"teamspeak_manifest_description": "",
"telegram_manifest_arguments_install_admin": "",
"telegram_manifest_arguments_install_domain": "",
"telegram_manifest_arguments_install_path": "",
"telegram_manifest_description": "",
"torclient_manifest_arguments_install_domain": "",
"torclient_manifest_arguments_install_path": "",
"torclient_manifest_description": "",
"torrelay_manifest_arguments_install_contact": "",
"torrelay_manifest_arguments_install_nickname": "",
"torrelay_manifest_arguments_install_policy": "",
"torrelay_manifest_arguments_install_port": "",
"torrelay_manifest_description": "",
"transmission_manifest_arguments_install_domain": "",
"transmission_manifest_arguments_install_path": "",
"transmission_manifest_description": "",
"transwhat_manifest_arguments_install_admin": "",
"transwhat_manifest_arguments_install_architecture": "",
"transwhat_manifest_arguments_install_domain": "",
"transwhat_manifest_arguments_install_path": "",
"transwhat_manifest_description": "",
"ttrss_manifest_arguments_install_domain": "",
"ttrss_manifest_arguments_install_path": "",
"ttrss_manifest_description": "",
"vpnclient_manifest_arguments_install_domain": "",
"vpnclient_manifest_arguments_install_path": "",
"vpnclient_manifest_description": "",
"wallabag_manifest_arguments_install_domain": "",
"wallabag_manifest_arguments_install_path": "",
"wallabag_manifest_description": "",
"webapp_multi_inst_manifest_arguments_install_db_create": "",
"webapp_multi_inst_manifest_arguments_install_db_pwd": "",
"webapp_multi_inst_manifest_arguments_install_domain": "",
"webapp_multi_inst_manifest_arguments_install_is_public": "",
"webapp_multi_inst_manifest_arguments_install_path": "",
"webapp_multi_inst_manifest_description": "",
"webmin_manifest_arguments_install_admin": "",
"webmin_manifest_arguments_install_domain": "",
"webmin_manifest_arguments_install_path": "",
"webmin_manifest_description": "",
"wekan_manifest_arguments_install_admin": "",
"wekan_manifest_arguments_install_domain": "",
"wekan_manifest_arguments_install_is_public": "",
"wekan_manifest_arguments_install_language": "",
"wekan_manifest_arguments_install_path": "",
"wekan_manifest_description": "",
"wordpress_manifest_arguments_install_admin": "",
"wordpress_manifest_arguments_install_domain": "",
"wordpress_manifest_arguments_install_is_public": "",
"wordpress_manifest_arguments_install_language": "",
"wordpress_manifest_arguments_install_multisite": "",
"wordpress_manifest_arguments_install_path": "",
"wordpress_manifest_description": "",
"yifypop_manifest_arguments_install_domain": "",
"yifypop_manifest_arguments_install_path": "",
"yifypop_manifest_description": "",
"ynapticron_manifest_arguments_install_emails": "",
"ynapticron_manifest_description": "",
"yourls_manifest_arguments_install_admin": "",
"yourls_manifest_arguments_install_domain": "",
"yourls_manifest_arguments_install_path": "",
"yourls_manifest_description": "",
"youtube-dl-webui_manifest_arguments_install_domain": "",
"youtube-dl-webui_manifest_arguments_install_download_folder": "",
"youtube-dl-webui_manifest_arguments_install_is_public": "",
"youtube-dl-webui_manifest_arguments_install_path": "",
"youtube-dl-webui_manifest_description": "",
"yunofav_manifest_arguments_install_domain": "",
"yunofav_manifest_arguments_install_path": "",
"yunofav_manifest_description": "",
"z-push_manifest_arguments_install_domain": "",
"z-push_manifest_arguments_install_path": "",
"z-push_manifest_description": "",
"zerobin_manifest_arguments_install_domain": "",
"zerobin_manifest_arguments_install_is_public": "",
"zerobin_manifest_arguments_install_path": "",
"zerobin_manifest_description": "",
"zeronet_manifest_arguments_install_admin": "",
"zeronet_manifest_arguments_install_domain": "",
"zeronet_manifest_description": "",
"zomburl_manifest_arguments_install_domain": "",
"zomburl_manifest_arguments_install_path": "",
"zomburl_manifest_description": ""
}

754
locales/fr.json Normal file
View file

@ -0,0 +1,754 @@
{
"20euros_manifest_arguments_install_domain": "Choisissez un nom de domaine pour 20euros",
"20euros_manifest_arguments_install_is_public": "Est-ce un jeu public ?",
"20euros_manifest_arguments_install_path": "Choisissez un chemin pour 20euros",
"20euros_manifest_description": "2048 - 20euros",
"243_manifest_arguments_install_domain": "Choisissez un nom de domaine pour 243",
"243_manifest_arguments_install_is_public": "Est-ce un jeu public ?",
"243_manifest_arguments_install_path": "Choisissez un chemin pour 243",
"243_manifest_description": "Clone du jeu 2048",
"LBCAlerte_manifest_arguments_install_domain": "Choisissez un nom de domaine pour LBCAlerte",
"LBCAlerte_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"LBCAlerte_manifest_arguments_install_password": "Mot de passe compte admin",
"LBCAlerte_manifest_arguments_install_path": "Choisissez un chemin pour LBCAlerte",
"LBCAlerte_manifest_description": "Application LBCAlerte pour YunoHost.",
"abantecart_manifest_arguments_install_admin_name": "Choisissez l'administrateur de Abantecart (doit être un utilisateur YunoHost existant)",
"abantecart_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l'Administrateur. ≥ cinq charactères",
"abantecart_manifest_arguments_install_domain": "Choisissez un domaine pour Abantecart",
"abantecart_manifest_arguments_install_is_public": "Est-ce un site public ?",
"abantecart_manifest_arguments_install_path": "Choisissez un chemin pour Abantecart",
"abantecart_manifest_description": "Créer un site ecommerce",
"adhocserver_manifest_description": "Un serveur adhoc pour la PSP de sony",
"adminer_manifest_arguments_install_admin": "Choisissez l'unique utilisateur autorisé",
"adminer_manifest_arguments_install_domain": "Choisissez un domaine pour Adminer",
"adminer_manifest_arguments_install_path": "Choisissez un chemin pour Adminer",
"adminer_manifest_description": "Gestionnaire de base de données en un seul fichier PHP",
"agendav_manifest_arguments_install_domain": "Choisissez un domaine pour AgenDAV",
"agendav_manifest_arguments_install_language": "Langue par défaut à utiliser dans AgenDAV",
"agendav_manifest_arguments_install_path": "Choisissez un chemin pour AgenDAV",
"agendav_manifest_description": "Client web pour CalDAV",
"ajaxgoogleapis_manifest_arguments_install_public_site": "Une personne non membre peut elle accéder à ce mirroir ?",
"ajaxgoogleapis_manifest_description": "Cette application créé un mirroir de ajax.googleapis.com",
"ampache_manifest_arguments_install_admin": "Administrateur du serveur Ampache (doit etre un utilisateur Yunohost existant)",
"ampache_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Ampache",
"ampache_manifest_arguments_install_path": "Choisissez un chemin pour Ampache",
"ampache_manifest_description": "Une application de streaming audio et vidéo",
"askbot_manifest_arguments_install_admin": "Choisissez l'administrateur d'OAskbot (doit être un utilisateur YunoHost déjà existant)",
"askbot_manifest_arguments_install_domain": "Choisissez un domaine pour Askbot",
"askbot_manifest_arguments_install_path": "Choisissez un chemin pour Askbot",
"askbot_manifest_description": "Askbot est un système de Questions et Réponses",
"baikal_manifest_arguments_install_domain": "Choisissez un domaine pour Baïkal",
"baikal_manifest_arguments_install_password": "Définissez le mot de passe pour l'administration",
"baikal_manifest_arguments_install_path": "Choisissez un chemin pour Baïkal",
"baikal_manifest_description": "Serveur CalDAV+CardDAV léger",
"bicbucstriim_manifest_arguments_install_admin": "Choisissez ladministrateur",
"bicbucstriim_manifest_arguments_install_domain": "Choisissez un nom de domaine pour BicBucStriim",
"bicbucstriim_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"bicbucstriim_manifest_arguments_install_login": "Désactiver l'authentification BicBucStriim ?",
"bicbucstriim_manifest_arguments_install_path": "Choisissez un chemin pour BicBucStriim",
"bicbucstriim_manifest_description": "BicBucStriim est une interface web pour accéder à votre collection d'e-book.",
"bolt_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Bolt",
"bolt_manifest_arguments_install_path": "",
"bolt_manifest_arguments_install_public_site": "",
"bolt_manifest_description": "",
"bozon_manifest_arguments_install_admin": "Choisissez un administrateur pour BoZoN",
"bozon_manifest_arguments_install_domain": "Choisissez un domaine pour BoZoN",
"bozon_manifest_arguments_install_filesize": "Définissez la taille limite de téléchargement",
"bozon_manifest_arguments_install_is_public": "Est-ce que cette application doit être visible publiquement ? (dans le cas contraire, le partage de fichiers avec des utilisateurs externes fonctionnera tout de même)",
"bozon_manifest_arguments_install_language": "Langue par défaut",
"bozon_manifest_arguments_install_password": "Choisissez un mot de passe administrateur pour BoZoN",
"bozon_manifest_arguments_install_path": "Choisissez un chemin pour BoZoN",
"bozon_manifest_description": "Application minimaliste de partage de fichiers",
"btsync_manifest_arguments_install_domain": "",
"btsync_manifest_arguments_install_path": "",
"btsync_manifest_arguments_install_platform": "",
"btsync_manifest_description": "BitTorrent Sync : synchronisation de répertoire par torrent",
"cesium_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Césium",
"cesium_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"cesium_manifest_arguments_install_path": "Choisissez un chemin pour Césium",
"cesium_manifest_description": "Client Duniter pour gérer ses portes-monnaie, les certifications au sein dune monnaie libre.",
"chtickynotes_manifest_arguments_install_domain": "",
"chtickynotes_manifest_arguments_install_path": "",
"chtickynotes_manifest_description": "Des post-its génériques à tout faire",
"cops_manifest_arguments_install_basicauthcreate": "Créer un accès par authentification basique (Uniquement pris en compte pour une app Publique) ? Ceci est requis si votre bibliothèque est publique et que vous voulez accéder au serveur OPDS avec votre liseuse ou application mobile",
"cops_manifest_arguments_install_basicauthname": "Indiquez le nom d'utilisateur pour accéder au serveur OPDS/HTML (NON lié lié aux utilisateurs YunoHost)",
"cops_manifest_arguments_install_basicauthpass": "Renseignez le mot de passe pour accéder au serveur OPDS/HTML",
"cops_manifest_arguments_install_calibre": "Indiquez le chemin de votre bibliotheque Calibre. Ne la mettez pas dans /var/www/cops ou elle sera supprimée à la prochaine upgrade !!!",
"cops_manifest_arguments_install_domain": "Choisissez un domaine pour votre bibliotheque COPS",
"cops_manifest_arguments_install_is_public": "Est-ce un site publique ?",
"cops_manifest_arguments_install_path": "Choisissez un chemin pour acceder a votre bibliotheque COPS",
"cops_manifest_description": "Calibre OPDS (et HTML) PHP Serveur",
"couchpotato_manifest_arguments_install_domain": "Choisissez un domaine pour CouchPotato",
"couchpotato_manifest_arguments_install_fork": "LOCAL: URL du GIT source à utiliser",
"couchpotato_manifest_arguments_install_host": "REMOTE: Indiquez l'URL de l'hôte",
"couchpotato_manifest_arguments_install_method": "Choisissez le type d'installation",
"couchpotato_manifest_arguments_install_path": "Choisissez un chemin pour CouchPotato",
"couchpotato_manifest_arguments_install_port": "LOCAL: Choisissez le port d'écoute de l'application",
"couchpotato_manifest_arguments_install_public": "Est-ce une application publique ?",
"couchpotato_manifest_arguments_remove_data": "Souhaitez-vous conserver les données ?",
"couchpotato_manifest_description": "Téléchargement automatisé de film",
"cubiks2048_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Cubiks-2048",
"cubiks2048_manifest_arguments_install_is_public": "Est-ce un jeu public ?",
"cubiks2048_manifest_arguments_install_path": "Choisissez un chemin pour Cubiks-2048",
"cubiks2048_manifest_description": "Clone du jeu 2048 en 3D",
"diaspora_manifest_arguments_install_domain": "Choisissez un domaine pour diaspora*",
"diaspora_manifest_arguments_install_site_public": "Est-ce un site public ?",
"diaspora_manifest_description": "Service de réseau social distribué",
"dockercontainer_manifest_arguments_install_command": "Entrez les options du conteneur",
"dockercontainer_manifest_arguments_install_datacontainer": "Souhaitez-vous activer la fonctionnalité de backup s'appuyant sur des conteneurs de données ? (Voir explications sur GitHub)",
"dockercontainer_manifest_arguments_install_name": "Entrez le nom du conteneur",
"dockercontainer_manifest_arguments_install_repository": "Entrez le dépôt du conteneur (http://registry.hub.docker.com)",
"dockercontainer_manifest_arguments_install_restart": "Souhaitez-vous que le conteneur soit automatiquement redémarré ?",
"dockercontainer_manifest_arguments_install_volume": "Souhaitez-vous créer le dossier /home/yunohost.docker/container-NAME afin de pouvoir le monter dans le conteneur ?",
"dockercontainer_manifest_description": "Docker permet de déployer des applications qui n'ont pas encore été intégrées à YunoHost",
"dockerrstudio_manifest_arguments_install_domain": "Choisissez un domaine pour le conteneur RStudio",
"dockerrstudio_manifest_arguments_install_password": "Veuillez choisir un mot de passe pour votre compte RStudio",
"dockerrstudio_manifest_arguments_install_path": "Choisissez un chemin pour le conteneur RStudio",
"dockerrstudio_manifest_arguments_install_user": "Veuillez choisir un identifiant pour votre compte RStudio",
"dockerrstudio_manifest_description": "RStudio est un environnement de développement web pour R (statistiques). Il est exécuté via Docker.",
"dockerui_manifest_arguments_install_domain": "Choisissez un domaine pour DockerUI",
"dockerui_manifest_arguments_install_path": "Choisissez un chemin pour DockerUI",
"dockerui_manifest_description": "Docker permet de déployer des applications qui n'ont pas encore été intégrées à YunoHost",
"dokuwiki_manifest_arguments_install_admin": "Choisissez l'administrateur",
"dokuwiki_manifest_arguments_install_domain": "Choisissez un domaine pour DokuWiki",
"dokuwiki_manifest_arguments_install_is_public": "Est-ce un site public ?",
"dokuwiki_manifest_arguments_install_path": "Choisissez un chemin pour DokuWiki",
"dokuwiki_manifest_description": "DokuWiki est un wiki Open Source simple à utiliser et très polyvalent qui n'exige aucune base de données.",
"dolibarr_manifest_arguments_install_domain": "",
"dolibarr_manifest_arguments_install_path": "",
"dolibarr_manifest_description": "Dolibarr ERP & CRM est un logiciel moderne de gestion de votre activité professionnelle ou associative (contacts, factures, commandes, stocks, agenda, etc...).",
"dotclear2_manifest_arguments_install_admin": "",
"dotclear2_manifest_arguments_install_domain": "",
"dotclear2_manifest_arguments_install_is_public": "",
"dotclear2_manifest_arguments_install_password": "",
"dotclear2_manifest_arguments_install_path": "",
"dotclear2_manifest_description": "Moteur de blog",
"duniter_manifest_arguments_install_admin": "Administrateur. Ce doit être un utilisateur YunoHost",
"duniter_manifest_arguments_install_domain": "Nom de domaine dédié sur lequel aucune application ne doit être installée. Linstallation sera faite à la racine.",
"duniter_manifest_arguments_install_is_cesium_public": "Permettre à Cesium d'être consulté publiquement ?",
"duniter_manifest_arguments_install_port": "Port du nœud Duniter",
"duniter_manifest_arguments_install_sync_node": "Adresse du nœud (nom de domaine ou adresse IP) avec lequel se synchroniser",
"duniter_manifest_arguments_install_sync_port": "Port de synchronisation",
"duniter_manifest_description": "Nœud Duniter qui permet de participer à lécriture de blocs. Système monétaire à dividende universel, monnaie libre, thérorie relative de la monnaie. Ce paquet permet de rejoindre une monnaie déjà existante.",
"emailpoubelle_manifest_arguments_install_admin": "Choisissez un administrateur pour emailpoubelle",
"emailpoubelle_manifest_arguments_install_domain": "Choisissez un domaine pour emailpoubelle",
"emailpoubelle_manifest_arguments_install_path": "Choisissez un chemin pour emailpoubelle",
"emailpoubelle_manifest_arguments_install_public_site": "Est-ce que cette application doit être visible publiquement ?",
"emailpoubelle_manifest_description": "Créez des adresses email jetables qui redirigent les mails vers votre adresse réelle",
"ethercalc_manifest_arguments_install_domain": "Choisissez un domaine pour EterCalc",
"ethercalc_manifest_arguments_install_expire": "Suppression après N jours d'inactivités. (0 pour désactiver cette fonctionnalité)",
"ethercalc_manifest_arguments_install_path": "Choisissez un chemin pour EterCalc",
"ethercalc_manifest_arguments_install_public_site": "Des personnes n'ayant pas de compte Yunohost peuvent elles utiliser ce EtherCalc ?",
"ethercalc_manifest_description": "Feuille de calcul collaborative en ligne",
"etherpad_mypads_manifest_arguments_install_abiword": "Utiliser abiword (~260Mo) pour étendre les possibilités d'export (pdf, doc) ?",
"etherpad_mypads_manifest_arguments_install_admin": "Administrateur du site (doit être un utilisateur YunoHost existant)",
"etherpad_mypads_manifest_arguments_install_domain": "Choisissez un domaine dédié pour Etherpad Mypads.",
"etherpad_mypads_manifest_arguments_install_is_public": "Est-ce un site public ?",
"etherpad_mypads_manifest_arguments_install_language": "Choisissez la langue",
"etherpad_mypads_manifest_arguments_install_password": "Définissez le mot de passe administrateur (entre 8 et 30 caractères)",
"etherpad_mypads_manifest_description": "Clone de Framapad, un éditeur en ligne fournissant l'édition collaborative en temps réel.",
"etherpadlite_manifest_arguments_install_domain": "",
"etherpadlite_manifest_arguments_install_path": "",
"etherpadlite_manifest_arguments_install_public_site": "",
"etherpadlite_manifest_description": "",
"ffsync_manifest_arguments_install_domain": "Choisissez un domaine pour Firefox-Sync",
"ffsync_manifest_arguments_install_path": "Choisissez un chemin pour Firefox-Sync",
"ffsync_manifest_description": "Le serveur de synchronisation de Mozilla, pour héberger vos données Firefox",
"filebin_manifest_arguments_install_domain": "Choisissez un domaine pour Filebin",
"filebin_manifest_arguments_install_is_public": "Est-ce un site public ?",
"filebin_manifest_arguments_install_path": "Choisissez un chemin pour Filebin",
"filebin_manifest_description": "Un pastebin minimaliste, libre et où le serveur n'a aucune connaissance des données copiées - En Version pour Fichiers",
"flarum_manifest_arguments_install_admin": "Choisissez ladministrateur",
"flarum_manifest_arguments_install_adminpass": "Insérez votre mot de passe",
"flarum_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Flarum",
"flarum_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"flarum_manifest_arguments_install_path": "Choisissez un chemin pour Flarum",
"flarum_manifest_arguments_install_title": "Choisissez un titre pour votre forum",
"flarum_manifest_description": "Package Flarum (système de forum libre) pour YunoHost.",
"framagames_manifest_arguments_install_domain": "Choisissez un domaine pour vos framagames",
"framagames_manifest_arguments_install_is_public": "Est-ce un site publique ?",
"framagames_manifest_arguments_install_path": "Choisissez un chemin pour acceder a vos framagames",
"framagames_manifest_description": "Ensemble de jeux Framagames venant de Framasoft",
"freeboard_manifest_arguments_install_admin": "Choisissez ladministrateur",
"freeboard_manifest_arguments_install_adv_html": "Utilisé l'Html développeur ? (Dashboard permanent, plus de plugins...)",
"freeboard_manifest_arguments_install_dash": "Dashboard permanent, à placer dand /var/www/votre_dashboard/",
"freeboard_manifest_arguments_install_dash_bool": "Utilisé un dashoard permanent ? (Dev Html requis)",
"freeboard_manifest_arguments_install_domain": "Choisissez un nom de domaine pour votre dashboard",
"freeboard_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"freeboard_manifest_arguments_install_path": "Choisissez un chemin pour votre dashboard",
"freeboard_manifest_description": "Créateur de dashboard fait pour l'IOT.",
"freshrss_manifest_arguments_install_admin": "Choisissez l'utilisateur par defaut (laissez vide si aucun)",
"freshrss_manifest_arguments_install_domain": "Choisissez un domaine pour FreshRSS",
"freshrss_manifest_arguments_install_path": "Choisissez un chemin pour FreshRSS",
"freshrss_manifest_description": "FreshRSS est un agrégateur de flux RSS à auto-héberger",
"friendica_manifest_arguments_install_admin": "Choisissez l'administrateur pour Friendica (l'utilisateur YunoHost doit exister)",
"friendica_manifest_arguments_install_domain": "Choisissez un domaine pour Friendica",
"friendica_manifest_arguments_install_path": "Choisissez un chemain pour Friendica",
"friendica_manifest_arguments_install_public_site": "Est-ce un site public ?",
"friendica_manifest_description": "Serveur de Communication Social",
"ftp_webapp_manifest_arguments_install_admin": "Choisissez l'utilisateur YunoHost qui sera capable d'envoyer des documents via FTP",
"ftp_webapp_manifest_arguments_install_domain": "Choisissez un domaine pour votre client ftp",
"ftp_webapp_manifest_arguments_install_language": "Choisissez la langue du client ftp",
"ftp_webapp_manifest_description": "Serveur FTP et client Net2ftp configuré pour être utilisé avec les webapp sur le port personnalisé 21021",
"garradin_manifest_arguments_install_domain": "Choisissez un domaine pour Garradin",
"garradin_manifest_arguments_install_is_public": "Est-ce un site public ?",
"garradin_manifest_arguments_install_path": "Choisissez un chemin pour Garradin",
"gateone_manifest_arguments_install_domain": "Choisissez un domaine pour GateOne",
"gateone_manifest_arguments_install_path": "Choisissez un chemin pour GateOne",
"gateone_manifest_description": "Émulateur de terminal et client SSH en HTML5",
"ghostblog_manifest_arguments_install_admin": "Administrateur du site (doit être un utilisateur Yunohost existant)",
"ghostblog_manifest_arguments_install_domain": "Choisissez un domaine pour Ghost",
"ghostblog_manifest_arguments_install_password": "Mot de passe de l'administrateur (8 caractères minimum)",
"ghostblog_manifest_arguments_install_path": "Choisissez un path pour Ghost",
"ghostblog_manifest_description": "Plateforme de blogging",
"gitolite_manifest_arguments_install_admin": "Choisissez le premier utilisateur autorisé",
"gitolite_manifest_arguments_install_adminpubkey": "Veuillez coller ici la clé SSH publique de l'administrateur",
"gitolite_manifest_description": "Gitolite vous permet de configurer un serveur git, avec un contrôle des accès très fin et beaucoup plus de fonctionnalités puissantes.",
"gitweb_manifest_arguments_install_admin": "Choisissez un administrateur pour Gitweb",
"gitweb_manifest_arguments_install_domain": "Choisissez un domaine pour Gitweb",
"gitweb_manifest_arguments_install_path": "Choisissez un chemin pour Gitweb",
"gitweb_manifest_arguments_install_public_site": "Est-ce que cette application doit être visible publiquement ?",
"gitweb_manifest_description": "Une interface web pour consulter les dépôts gitolite",
"glowingbear_manifest_arguments_install_domain": "Choisissez un nom de domaine pour ynhexample",
"glowingbear_manifest_arguments_install_is_public": "Est-ce un site public ?",
"glowingbear_manifest_arguments_install_path": "Choisissez un chemin pour votre WebApp",
"glowingbear_manifest_description": "Un client Web pour WeeChat.",
"glpi_manifest_arguments_install_admin": "Administrateur du site (doit être un utilisateur YunoHost existant)",
"glpi_manifest_arguments_install_domain": "Choisissez un domaine pour GLPI",
"glpi_manifest_arguments_install_language": "Choissisez la langue du GLPI",
"glpi_manifest_arguments_install_path": "Choisissez un chemin pour GLPI",
"glpi_manifest_description": "Logiciel de création de blog ou de site Web",
"gnusocial_manifest_arguments_install_admin": "",
"gnusocial_manifest_arguments_install_domain": "",
"gnusocial_manifest_arguments_install_name": "",
"gnusocial_manifest_arguments_install_profile": "",
"gnusocial_manifest_description": "",
"gogs_manifest_arguments_install_admin": "Choisissez l'administrateur de Gogs (doit être un utilisateur YunoHost existant)",
"gogs_manifest_arguments_install_domain": "Choisissez un domaine pour Gogs",
"gogs_manifest_arguments_install_path": "Choisissez un chemin pour Gogs",
"gogs_manifest_arguments_install_public_site": "Est-ce un site public ?",
"gogs_manifest_description": "A self-hosted Git service written in Go",
"grafana_manifest_arguments_install_admin": "Choisissez l'administrateur",
"grafana_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Grafana",
"grafana_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"grafana_manifest_arguments_install_path": "Choisissez un chemin pour Grafana",
"grafana_manifest_description": "Tableaux de bords de supervision",
"haste_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Haste",
"haste_manifest_arguments_install_is_public": "Est-ce un site publique ? (si non, vous ne pourrez pas utiliser la commande haste facilement)",
"haste_manifest_arguments_install_path": "Choisissez un chemin pour Haste, seul / est autorisé.",
"haste_manifest_description": "Haste is an open-source pastebin software written in node.js",
"headphones_manifest_arguments_install_domain": "Choisissez un domaine pour Headphones",
"headphones_manifest_arguments_install_fork": "LOCAL: URL du GIT source à utiliser",
"headphones_manifest_arguments_install_host": "REMOTE: Indiquez l'URL de l'hôte",
"headphones_manifest_arguments_install_method": "Choisissez le type d'installation",
"headphones_manifest_arguments_install_options": "LOCAL: Choisissez un client de téléchargement",
"headphones_manifest_arguments_install_path": "Choisissez un chemin pour Headphones",
"headphones_manifest_arguments_install_port": "LOCAL: Choisissez le port d'écoute de l'application",
"headphones_manifest_arguments_install_public": "Est-ce une application publique ?",
"headphones_manifest_arguments_remove_data": "Souhaitez-vous conserver les données ?",
"headphones_manifest_description": "Téléchargement automatisé de musique",
"hextris_manifest_arguments_install_domain": "Choisissez un domaine pour Hextris",
"hextris_manifest_arguments_install_is_public": "Est-ce un site public ?",
"hextris_manifest_arguments_install_path": "Choisissez un chemin pour Hextris",
"hextris_manifest_description": "Un jeu de puzzle très rapide",
"hotspot_manifest_arguments_install_domain": "Choisissez un domaine pour l'administration web",
"hotspot_manifest_arguments_install_firmware_nonfree": "Installer des firmwares non-libres (en plus des libres) pour la clé USB wifi (yes/no)",
"hotspot_manifest_arguments_install_path": "Choissez un chemin pour l'administration web",
"hotspot_manifest_arguments_install_wifi_passphrase": "Choisissez un mot de passe wifi (au minimum 8 caractères pour le WPA2)",
"hotspot_manifest_arguments_install_wifi_ssid": "Choisissez un nom pour le wifi (SSID)",
"hotspot_manifest_description": "Hotspot Wifi",
"htmltool_manifest_arguments_install_domain": "Choisissez un domaine pour HTML Tools",
"htmltool_manifest_arguments_install_is_public": "Est-ce un site public ?",
"htmltool_manifest_arguments_install_path": "Choisissez un chemin pour HTML Tools",
"htmltool_manifest_description": "Un ensemble d'outils HTML simple et pratique",
"htpc-manager_manifest_arguments_install_domain": "Choisissez un domaine pour HTPC Manager",
"htpc-manager_manifest_arguments_install_path": "Choisissez un chemin pour HTPC Manager",
"htpc-manager_manifest_description": "Piloter votre HTPC où vous souhaitez",
"hubzilla_manifest_arguments_install_admin": "",
"hubzilla_manifest_arguments_install_adminemail": "",
"hubzilla_manifest_arguments_install_domain": "",
"hubzilla_manifest_arguments_install_is_public": "",
"hubzilla_manifest_description": "",
"huginn_manifest_arguments_install_admin": "",
"huginn_manifest_arguments_install_domain": "",
"huginn_manifest_arguments_install_invitation": "",
"huginn_manifest_arguments_install_is_public": "",
"huginn_manifest_arguments_install_password": "",
"huginn_manifest_arguments_install_path": "",
"huginn_manifest_description": "",
"ihatemoney_manifest_arguments_install_domain": "Choisir un domaine pour ihatemoney",
"ihatemoney_manifest_arguments_install_is_public": "Le service est-il public ? (même dans ce cas, chaque projet est protégé par un mot de passe)",
"ihatemoney_manifest_arguments_install_path": "Choisir un chemin pour ihatemoney",
"ihatemoney_manifest_description": "Une application web de comptes partagés à plusieurs",
"jappix_manifest_arguments_install_domain": "Choisissez un domaine pour Jappix",
"jappix_manifest_arguments_install_language": "Choissisez la langue par défaut de Jappix",
"jappix_manifest_arguments_install_name": "Choisissez un nom pour Jappix",
"jappix_manifest_arguments_install_path": "Choisissez un chemin pour Jappix",
"jappix_manifest_description": "Un réseau social libre",
"jappix_mini_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Jappix Mini",
"jappix_mini_manifest_arguments_install_is_public": "Rendre ce site publique ?",
"jappix_mini_manifest_arguments_install_muc": "Jappix Mini doit rejoindre quel salon de discussion ? Répondre « No » pour quil ne rejoindre aucun salon de discussion.",
"jappix_mini_manifest_arguments_install_path": "Choisissez un chemin pour Jappix Mini",
"jappix_mini_manifest_arguments_install_user": "Jappix Mini doit rejoindre quel utilisateur ? Répondre « No » pour quil ne rejoigne aucun utilisateur. Létape suivante est pour rejoindre un salon de discussion.",
"jappix_mini_manifest_description": "Intégration du Jappix Mini chat XMPP",
"jeedom_manifest_arguments_install_admin": "",
"jeedom_manifest_arguments_install_domain": "Choisissez un domaine pour Jeedom",
"jeedom_manifest_arguments_install_path": "",
"jeedom_manifest_arguments_install_sudo": "",
"jeedom_manifest_arguments_install_zwave": "",
"jeedom_manifest_description": "Jeedom est une application de domotique",
"jenkins_manifest_arguments_install_domain": "Choisissez un domaine pour Jenkins",
"jenkins_manifest_arguments_install_is_public": "Est-ce un site public ?",
"jenkins_manifest_arguments_install_path": "Choisissez un chemin pour Jenkins",
"jenkins_manifest_description": "Extendable continuous integration server",
"jirafeau_manifest_arguments_install_admin_user": "Choisissez l'administrateur (seul autorisé à accéder à la page admin.php)",
"jirafeau_manifest_arguments_install_domain": "Choisissez un domaine pour Jirafeau",
"jirafeau_manifest_arguments_install_is_public": "Est-ce un site public ?",
"jirafeau_manifest_arguments_install_path": "Choisissez un chemin pour Jirafeau",
"jirafeau_manifest_arguments_install_upload_password": "Définissez le mot de passe permettant l'accès à l'envoi de fichiers (laissez vide pour autoriser tout le monde)",
"jirafeau_manifest_description": "Hébergez simplement un fichier et partagez-le avec un lien unique",
"jitsi_manifest_arguments_install_domain": "Choisissez un domaine pour Jitsi Meet",
"jitsi_manifest_arguments_install_path": "Choisissez un chemin pour Jitsi Meet",
"jitsi_manifest_description": "Application web de conférence vidéo",
"kanboard_manifest_arguments_install_admin": "Choisissez l'administrateur de Kanboard",
"kanboard_manifest_arguments_install_domain": "Choisissez un domaine pour Kanboard",
"kanboard_manifest_arguments_install_is_public": "Est-ce un site public ?",
"kanboard_manifest_arguments_install_path": "Choisissez un chemin pour Kanboard",
"kanboard_manifest_description": "Kanboard est une application web de management de tâches simples",
"keeweb_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Keeweb",
"keeweb_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"keeweb_manifest_arguments_install_path": "Choisissez un chemin pour Keeweb",
"keeweb_manifest_description": "Gestionnaire de mots de passe compatible avec KeePass.",
"kiwiirc_manifest_arguments_install_domain": "Choisissez un domaine pour KiwiIRC",
"kiwiirc_manifest_arguments_install_path": "Choisissez un path pour KiwiIRC",
"kiwiirc_manifest_arguments_install_public_site": "Est-ce un site public ?",
"kiwiirc_manifest_description": "Client Web pour IRC",
"laverna_manifest_arguments_install_admin": "Choisissez ladministrateur",
"laverna_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Laverna",
"laverna_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"laverna_manifest_arguments_install_path": "Choisissez un chemin pour Laverna",
"laverna_manifest_description": "Laverna is a JavaScript note taking application with Markdown editor and encryption support. Consider it like open source alternative to Evernote.",
"leed_manifest_arguments_install_admin": "Choisissez un administrateur Leed (doit être un utilisateur YunoHost)",
"leed_manifest_arguments_install_domain": "Choisissez un domaine pour Leed",
"leed_manifest_arguments_install_is_public": "Est-ce un site public ?",
"leed_manifest_arguments_install_language": "Choisissez la langue de votre agrégateur",
"leed_manifest_arguments_install_market": "Voulez-vous activer le Leed Market ?",
"leed_manifest_arguments_install_password": "Définissez le mot de passe administrateur de Leed",
"leed_manifest_arguments_install_path": "Choisissez un chemin pour Leed",
"leed_manifest_description": "Leed est un agrégateur RSS minimaliste qui permet la consultation de flux RSS de manière rapide et non intrusive.",
"lektor_manifest_arguments_install_admin_user": "Choisissez l'administrateur (seul autorisé à accéder à l'interface d'administration)",
"lektor_manifest_arguments_install_domain": "",
"lektor_manifest_arguments_install_name": "",
"lektor_manifest_arguments_install_path": "",
"lektor_manifest_arguments_install_ssh_pub_key": "",
"lektor_manifest_description": "Lektor est générateur de site web statique livré avec une interface d'administration. Ce paquet intègre l'interface d'administration dans le SSO de YunoHost.",
"limesurvey_manifest_arguments_install_admin": "Choisissez l'administrateur de LimeSurvey (doit être un utilisateur YunoHost)",
"limesurvey_manifest_arguments_install_domain": "Choisissez un nom de domaine pour LimeSurvey",
"limesurvey_manifest_arguments_install_language": "Choisissez la langue par défault de LimeSurvey",
"limesurvey_manifest_arguments_install_path": "Choisissez l'adresse pour LimeSurvey",
"limesurvey_manifest_description": "LimeSurvey est un outil de création et diffusion de sondage en ligne.",
"linuxdash_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Linux-Dash",
"linuxdash_manifest_arguments_install_path": "Choisissez un chemin pour Linux-Dash",
"linuxdash_manifest_arguments_install_user": "Choisissez lutilisateur YunoHost qui a accès à Linux-Dash",
"linuxdash_manifest_description": "Tableau de bord léger pour le monitoring dun serveur GNU/linux.",
"lutim_manifest_arguments_install_admin": "Choisissez un administrateur Lutim (doit être un utilisateur YunoHost)",
"lutim_manifest_arguments_install_always_encrypt": "Forcer le chiffrement des images ?",
"lutim_manifest_arguments_install_domain": "Choisissez un domaine pour Lutim",
"lutim_manifest_arguments_install_is_public": "L'upload des images est-il public ?",
"lutim_manifest_arguments_install_path": "Choisissez un chemin pour Lutim",
"lutim_manifest_description": "Application d'hébergement et de partage d'images anonyme",
"lychee_manifest_arguments_install_admin_pwd": "",
"lychee_manifest_arguments_install_admin_user": "",
"lychee_manifest_arguments_install_domain": "",
"lychee_manifest_arguments_install_path": "",
"lychee_manifest_description": "Gestionnaire de photos autohebergé",
"mailman_manifest_arguments_install_admin": "",
"mailman_manifest_arguments_install_adminPass": "",
"mailman_manifest_arguments_install_domain": "",
"mailman_manifest_arguments_install_is_public": "",
"mailman_manifest_arguments_install_language": "",
"mailman_manifest_arguments_install_listPrefix": "",
"mailman_manifest_arguments_install_path": "",
"mailman_manifest_description": "Logiciel libre pour gérer des listes de diffusion et newsletters.",
"mattermost_manifest_arguments_install_domain": "Choisissez un domaine pour Mattermost",
"mattermost_manifest_arguments_install_public_site": "Les utilisateurs non-enregistrés peuvent-ils accéder à ce chat ?",
"mattermost_manifest_description": "Une alternative open-source et self-hostée à Slack",
"mediagoblin_manifest_arguments_install_admin": "Administrateur du site (doit être un utilisateur YunoHost existant)",
"mediagoblin_manifest_arguments_install_domain": "Choisissez un domaine pour MediaGoblin",
"mediagoblin_manifest_arguments_install_path": "Choisissez un chemin pour MediaGoblin",
"mediagoblin_manifest_arguments_install_public": "Est-ce un site public ?",
"mediagoblin_manifest_description": "Plateforme de diffusion de différents types de multimédia",
"mediawiki_manifest_arguments_install_domain": "Choisissez un domaine pour MediaWiki",
"mediawiki_manifest_arguments_install_is_public": "Est-ce un wiki public ?",
"mediawiki_manifest_arguments_install_language": "Choisissez la langue",
"mediawiki_manifest_arguments_install_path": "Choisissez un chemin pour MediaWiki",
"mediawiki_manifest_arguments_install_wikiname": "Choisissez un nom pour le wiki",
"mediawiki_manifest_description": "Wiki Open Source",
"minchat_manifest_arguments_install_domain": "",
"minchat_manifest_arguments_install_ispublic": "",
"minchat_manifest_arguments_install_path": "",
"minchat_manifest_description": "Un web chat minimaliste",
"minidlna_manifest_arguments_install_version": "Choix de la version de minidlna à installer",
"minidlna_manifest_description": "Serveur DLNA léger pour partager les fichiers multimédia sur le réseau local",
"miniflux_manifest_arguments_install_admin": "",
"miniflux_manifest_arguments_install_domain": "",
"miniflux_manifest_arguments_install_path": "",
"miniflux_manifest_description": "",
"monit_manifest_arguments_install_domain": "Choisissez un domaine pour Monit",
"monit_manifest_arguments_install_path": "Choisissez un chemin pour Monit",
"monit_manifest_description": "Supervision de process, fichiers, répertoires, systèmes de fichiers and hôtes",
"monitorix_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Monitorix",
"monitorix_manifest_arguments_install_path": "Choisissez un chemin pour Monitorix",
"monitorix_manifest_description": "Un outils de monitoring",
"movim_manifest_arguments_install_admin": "Administrateur du pod",
"movim_manifest_arguments_install_domain": "Domaine du pod",
"movim_manifest_arguments_install_language": "Langue du pod",
"movim_manifest_arguments_install_password": "Mot de passe administrateur",
"movim_manifest_arguments_install_path": "Chemin vers le pod",
"movim_manifest_arguments_install_port": "Port du daemon Movim (interne uniquement)",
"movim_manifest_arguments_install_ssoenabled": "Activer le support SSO (connexin auto) ?",
"movim_manifest_description": "",
"multi_webapp_manifest_arguments_install_admin": "Choisissez l'utilisateur YunoHost associé",
"multi_webapp_manifest_arguments_install_domain": "Choisissez un domaine pour votre Webapp",
"multi_webapp_manifest_arguments_install_is_public": "Est-ce un site public ?",
"multi_webapp_manifest_arguments_install_path": "Choisissez un chemin pour votre Webapp",
"multi_webapp_manifest_arguments_install_sql": "Créer une base de données?",
"multi_webapp_manifest_description": "App vide sans accès FTP",
"mumble_admin_plugin_manifest_arguments_install_admin": "Choisissez un administrateur pour MAP",
"mumble_admin_plugin_manifest_arguments_install_admin_email": "Entrez une adresse pour la récupération de mot de passe",
"mumble_admin_plugin_manifest_arguments_install_admin_pass": "Choisissez le mot de passe administrateur",
"mumble_admin_plugin_manifest_arguments_install_domain": "Choisissez un domaine pour MAP",
"mumble_admin_plugin_manifest_arguments_install_path": "Choisissez un chemin pour MAP",
"mumble_admin_plugin_manifest_description": "Interface web pour administrer un serveur mumble.",
"mumbleserver_manifest_arguments_install_password": "Choisissez un mot de passe pour le SuperUser. Il est différent du mot de passe du serveur et permet de créer le premier Administrateur.",
"mumbleserver_manifest_arguments_install_port": "Entrez un port pour votre serveur. Laissez par défaut si vous ne voulez pas en changer",
"mumbleserver_manifest_arguments_install_registername": "Entrez un nom pour le channel racine (le nom de votre serveur mumble)",
"mumbleserver_manifest_arguments_install_server_login_password": "Choisissez un mot de passe pour votre serveur Mumble. Ce mot de passe sera donné aux personnes qui veulent rejoindre le serveur",
"mumbleserver_manifest_arguments_install_welcometext": "Choisissez un message de bienvenue pour le serveur",
"mumbleserver_manifest_description": "Mumble est un logiciel libre de voix sur IP (VoIP), son principal usage étant la communication pendant les parties de jeux en réseau.",
"munin_manifest_arguments_install_domain": "Choisissez un domaine pour Munin",
"munin_manifest_arguments_install_path": "Choisissez un path pour Munin",
"munin_manifest_description": "Resource monitoring tool ",
"my_webapp_manifest_arguments_install_domain": "Choisissez un domaine pour votre Webapp",
"my_webapp_manifest_arguments_install_is_public": "Est-ce un site public ?",
"my_webapp_manifest_arguments_install_password": "Définissez le mot de passe pour l'accès SFTP",
"my_webapp_manifest_arguments_install_path": "Choisissez un chemin pour votre Webapp",
"my_webapp_manifest_arguments_install_with_mysql": "Avez-vous besoin d'une base de données MySQL ?",
"my_webapp_manifest_description": "Application Web personnalisée avec accès SFTP",
"mycryptochat_manifest_arguments_install_domain": "",
"mycryptochat_manifest_arguments_install_is_public": "Est-ce un site public ?",
"mycryptochat_manifest_arguments_install_path": "",
"mycryptochat_manifest_description": "Messagerie Instantanée chiffrée",
"netdata_manifest_arguments_install_domain": "Choisissez un nom de domaine pour NetData",
"netdata_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"netdata_manifest_arguments_install_path": "Choisissez un chemin pour NetData",
"netdata_manifest_description": "Monitoring serveur en temps reel",
"nextcloud_manifest_arguments_install_admin": "Choisissez l'administrateur de Nextcloud (doit être un utilisateur YunoHost existant)",
"nextcloud_manifest_arguments_install_domain": "Choisissez un domaine pour Nextcloud",
"nextcloud_manifest_arguments_install_path": "Choisissez un chemin pour Nextcloud",
"nextcloud_manifest_arguments_install_user_home": "Accéder au dossier personnel des utilisateurs depuis Nextcloud ?",
"nextcloud_manifest_description": "Consultez et partagez vos fichiers, agendas, carnets d'adresses, emails et bien plus depuis les appareils de votre choix, sous vos conditions",
"noalyss_manifest_arguments_install_domain": "",
"noalyss_manifest_arguments_install_path": "",
"noalyss_manifest_description": "Logiciel libre de comptabilité (comptabilité Belge et Française)",
"odoo_manifest_arguments_install_admin_password": "Choisissez un mot de passe maître fort pour l'administration",
"odoo_manifest_arguments_install_database_password": "Choisissez un mot de passe pour le compte 'admin' d'Odoo",
"odoo_manifest_arguments_install_domain": "Choisissez un domaine pour Odoo (Odoo sera installé dans sa racine !)",
"odoo_manifest_arguments_install_lang": "Choisissez une langue pour Odoo",
"odoo_manifest_arguments_install_odoo_version": "Quelle version d'Odoo souhaitez-vous installer ?",
"odoo_manifest_description": "Odoo est une collection d'apps de gestion d'entreprise (ERP : CRM, Comptabilité, Point de Vente, RH, Achats, ...).",
"ofbiz_manifest_arguments_install_admin": "Choisissez l'administrateur OFBiz (doit être un utilisateur YunoHost existant)",
"ofbiz_manifest_arguments_install_domain": "Choisissez un domaine pour Apache-OFBiz",
"ofbiz_manifest_arguments_install_path": "Choisissez un chemin d'accès pour Apache-OFBiz",
"ofbiz_manifest_description": "L'ERP de gestion d'entreprise Apache-OFBiz",
"openidsimplesamlphp_manifest_arguments_install_domain": "Choisissez un domaine pour le fournisseur OpenID",
"openidsimplesamlphp_manifest_arguments_install_path": "Choisissez un chemin pour le fournisseur OpenID-SimpleSAMLphp",
"openidsimplesamlphp_manifest_description": "Fournisseur OpenID basé sur SimpleSAMLphp",
"opennote_manifest_arguments_install_admin": "Choisissez ladministrateur",
"opennote_manifest_arguments_install_domain": "Choisissez un nom de domaine pour OpenNote",
"opennote_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"opennote_manifest_arguments_install_path": "Choisissez un chemin pour OpenNote",
"opennote_manifest_description": "OpenNote est une alternative web à Microsoft OneNote (T) and EverNote.",
"opensondage_manifest_arguments_install_admin": "Choisissez l'administrateur d'OpenSondage (doit être un utilisateur YunoHost)",
"opensondage_manifest_arguments_install_domain": "Choisissez un nom de domaine pour OpenSondage",
"opensondage_manifest_arguments_install_is_public": "Une personne non membre peut elle créer un sondage ?",
"opensondage_manifest_arguments_install_language": "Choisissez la langue par défault d'OpenSondage",
"opensondage_manifest_arguments_install_path": "Choisissez l'adresse pour OpenSondage",
"opensondage_manifest_description": "OpenSondage sert à faire des sondages sans authentification pour trouver une date de réunion qui convienne à toutes les personnes concernées.",
"openvpn_manifest_arguments_install_domain": "Choisissez un domaine pour OpenVPN",
"openvpn_manifest_arguments_install_path": "Choisissez un chemin pour OpenVPN",
"openvpn_manifest_description": "Votre tunnel privé et sécurisé vers Internet",
"openwrt_manifest_arguments_install_domain": "",
"openwrt_manifest_arguments_install_path": "",
"openwrt_manifest_arguments_install_server": "",
"openwrt_manifest_description": "Accès à OpenWRT ",
"owncloud_manifest_arguments_install_admin": "Choisissez l'administrateur d'ownCloud (doit être un utilisateur YunoHost déjà existant)",
"owncloud_manifest_arguments_install_domain": "Choisissez un domaine pour ownCloud",
"owncloud_manifest_arguments_install_path": "Choisissez un chemin pour ownCloud",
"owncloud_manifest_arguments_install_user_home": "Accéder au dossier personnel des utilisateurs depuis ownCloud ?",
"owncloud_manifest_description": "Synchronisez et partagez vos fichiers, images, musiques, contacts, calendriers, et bien plus !",
"phpBB_manifest_arguments_install_admin_email": "Renseignez un e-mail pour l'admin phpBB",
"phpBB_manifest_arguments_install_admin_login": "Renseignez un login pour l'admin phpBB",
"phpBB_manifest_arguments_install_admin_pwd": "Renseignez un mot de passe pour l'admin phpBB. Pour l'instant, ce mot de passe est également utilisé pour la base de donnée MySQL de phpBB",
"phpBB_manifest_arguments_install_curl_inst": "Configurer phpBB automatiquement via cURL ? [CASSE - NE PAS UTILISER]",
"phpBB_manifest_arguments_install_domain": "Choisissez un domaine pour phpBB",
"phpBB_manifest_arguments_install_is_public": "Est-ce une page publique ?",
"phpBB_manifest_arguments_install_lang": "Configurer la langue de phpBB",
"phpBB_manifest_arguments_install_path": "Choisissez un chemin pour phpBB",
"phpBB_manifest_description": "Le 1er logiciel de forum libre et gratuit",
"phpldapadmin_manifest_arguments_install_admin": "Choisissez l'unique utilisateur autorisé",
"phpldapadmin_manifest_arguments_install_domain": "Choisissez un domaine pour phpLDAPadmin",
"phpldapadmin_manifest_arguments_install_path": "Choisissez un chemin pour phpLDAPadmin",
"phpldapadmin_manifest_description": "Application web de gestion de la base OpenLDAP",
"phpmyadmin_manifest_arguments_install_admin": "Choisissez l'unique utilisateur autorisé",
"phpmyadmin_manifest_arguments_install_domain": "Choisissez un domaine pour phpMyAdmin",
"phpmyadmin_manifest_arguments_install_path": "Choisissez un chemin pour phpMyAdmin",
"phpmyadmin_manifest_description": "Application web de gestion des bases de données MySQL",
"phpsysinfo_manifest_arguments_install_display_mode": "Mode d'affichage ?",
"phpsysinfo_manifest_arguments_install_domain": "Choisissez un domaine pour PhpSysInfo",
"phpsysinfo_manifest_arguments_install_is_public": "Est-ce un site public ?",
"phpsysinfo_manifest_arguments_install_language": "Langue par défaut ?",
"phpsysinfo_manifest_arguments_install_path": "Choisissez un chemin pour PhpSysInfo",
"phpsysinfo_manifest_description": "Un script PHP paramétrable qui affiche des informations sur votre système.",
"piratebox_manifest_arguments_install_domain": "Choisissez un domaine pour l'administration web",
"piratebox_manifest_arguments_install_opt_chat": "Activer le chat ? (yes/no)",
"piratebox_manifest_arguments_install_opt_deleting": "Les utilisateurs peuvent-ils supprimer des fichiers ? (yes/no)",
"piratebox_manifest_arguments_install_opt_domain": "Choissez un faux domaine pour la PirateBox",
"piratebox_manifest_arguments_install_opt_name": "Choisir un nom pour la PirateBox",
"piratebox_manifest_arguments_install_opt_renaming": "Les utilisateurs peuvent-ils renommer des fichiers ? (yes/no)",
"piratebox_manifest_arguments_install_path": "Choissez un chemin pour l'administration web",
"piratebox_manifest_description": "PirateBox",
"piwigo_manifest_arguments_install_admin": "Choisissez l'administrateur",
"piwigo_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Piwigo",
"piwigo_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"piwigo_manifest_arguments_install_language": "Choisissez la langue de l'application",
"piwigo_manifest_arguments_install_path": "Choisissez un chemin pour Piwigo",
"piwigo_manifest_description": "Galerie photo",
"piwik_manifest_arguments_install_admin": "Choisissez un administrateur Piwik (doit être un utilisateur YunoHost)",
"piwik_manifest_arguments_install_domain": "Choisissez un domaine pour Piwik",
"piwik_manifest_arguments_install_option_geoip": "Activer le plugin de géolocalisation des visiteurs.",
"piwik_manifest_arguments_install_option_log": "Activer l'analyse des log du serveur.",
"piwik_manifest_arguments_install_path": "Choisissez un chemin pour Piwik",
"piwik_manifest_description": "Logiciel de mesure de statistiques web, pour analyser le trafic de vos sites.",
"plexmediaserver_manifest_arguments_install_domain": "",
"plexmediaserver_manifest_arguments_install_path": "",
"plexmediaserver_manifest_description": "",
"pluxml_manifest_arguments_install_admin": "Choisissez ladministrateur de PluXml",
"pluxml_manifest_arguments_install_default_lang": "Langue par défaut",
"pluxml_manifest_arguments_install_domain": "Choisissez un nom de domaine pour PluXml",
"pluxml_manifest_arguments_install_password": "Choisissez un mot de passe administrateur pour PluXml",
"pluxml_manifest_arguments_install_path": "Choisissez un chemin pour PluXml",
"pluxml_manifest_arguments_install_public_site": "Est-ce que cette application doit être visible publiquement ?",
"pluxml_manifest_description": "Blog ou CMS à l'Xml, rapide et léger",
"proftpd_manifest_arguments_install_domain": "",
"proftpd_manifest_arguments_install_password": "",
"proftpd_manifest_description": "",
"pydio_manifest_arguments_install_admin": "Choisissez l'administrateur Pydio",
"pydio_manifest_arguments_install_domain": "Choisissez un domaine pour Pydio",
"pydio_manifest_arguments_install_path": "Choisissez un chemin pour Pydio",
"pydio_manifest_description": "Plateforme de partage de fichiers",
"radicale_manifest_arguments_install_admin": "Choisissez un administrateur (doit être un utilisateur YunoHost)",
"radicale_manifest_arguments_install_domain": "Choisissez un domaine pour Radicale",
"radicale_manifest_arguments_install_infcloud": "Installer l'interface web InfCloud?",
"radicale_manifest_arguments_install_language": "Choisissez la langue de l'interface",
"radicale_manifest_arguments_install_path": "Choisissez un chemin pour Radicale",
"radicale_manifest_description": "Serveur de synchronisation CalDAV et CardDAV",
"rainloop_manifest_arguments_install_domain": "Choisissez un domaine pour Rainloop",
"rainloop_manifest_arguments_install_is_public": "Est-ce une page publique ?",
"rainloop_manifest_arguments_install_lang": "Definir la langue par defaut",
"rainloop_manifest_arguments_install_ldap": "Souhaitez-vous ajouter les utilisateurs YunoHost dans les suggestions de destinataires ?",
"rainloop_manifest_arguments_install_password": "Choisissez un mot de passe fort pour l'administrateur 'admin'",
"rainloop_manifest_arguments_install_path": "Choisissez un chemin pour Rainloop",
"rainloop_manifest_description": "Webmail léger multi-comptes",
"redirect_manifest_arguments_install_domain": "Choisissez un domaine pour votre redirection",
"redirect_manifest_arguments_install_is_public": "Est-ce une redirection publique ?",
"redirect_manifest_arguments_install_path": "Choisissez un chemin pour votre redirection",
"redirect_manifest_arguments_install_redirect_path": "Emplacement de destination",
"redirect_manifest_arguments_install_redirect_type": "Type de redirection",
"redirect_manifest_description": "Créer une redirection ou un proxy vers un autre emplacement",
"riot_manifest_arguments_install_default_home_server": "Choisissez un serveur par défault",
"riot_manifest_arguments_install_domain": "Choisissez un domaine pour Riot",
"riot_manifest_arguments_install_is_public": "Est-ce un serveur publique ?",
"riot_manifest_arguments_install_path": "Choisissez un chemin pour Riot",
"riot_manifest_description": "Un client web pour matrix",
"roadiz_manifest_arguments_install_admin_name": "Choisissez l'administrateur de Roadiz (doit être un utilisateur YunoHost existant)",
"roadiz_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l'Administrateur. ≥ cinq charactères",
"roadiz_manifest_arguments_install_domain": "Choisissez un domaine pour Roadiz",
"roadiz_manifest_arguments_install_is_public": "Est-ce un site public ?",
"roadiz_manifest_arguments_install_path": "Choisissez un chemin pour Roadiz",
"roadiz_manifest_description": "Créer un site web moderne avec un CMS polymorphique",
"roundcube_manifest_arguments_install_domain": "Choisissez un domaine pour Roundcube",
"roundcube_manifest_arguments_install_path": "Choisissez un chemin pour Roundcube",
"roundcube_manifest_arguments_install_with_carddav": "Installer le plugin de synchronisation CardDAV ?",
"roundcube_manifest_description": "Webmail Open Source",
"rutorrent_manifest_arguments_install_data_dir": "Choisissez un dossier pour sauver les telechargements",
"rutorrent_manifest_arguments_install_domain": "Choisissez un domaine pour ruTorrent",
"rutorrent_manifest_arguments_install_password": "Choisissez un mot de passe pour l'utilisateur système rtorrent",
"rutorrent_manifest_arguments_install_path": "Choisissez un chemin pour ruTorrent",
"rutorrent_manifest_description": "Client torrent",
"scm_manifest_arguments_install_admin": "",
"scm_manifest_arguments_install_admin_passwd": "",
"scm_manifest_arguments_install_domain": "",
"scm_manifest_arguments_install_path": "",
"scm_manifest_description": "La facon la plus simple de gérer ses dépots Git, Mercurial et Subversion par http",
"scrumblr_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Haste",
"scrumblr_manifest_arguments_install_is_public": "Est-ce un site publique ? ",
"scrumblr_manifest_arguments_install_path": "Choisissez un chemin pour scrumblr, seul / est autorisé.",
"scrumblr_manifest_description": "Application pour créer des post-it.",
"seafile_manifest_arguments_install_admin": "Choisissez l'administrateur de Seafile",
"seafile_manifest_arguments_install_admin_password": "Entrez un mot de passe pour l'administrateur",
"seafile_manifest_arguments_install_architecture": "Quelle est l'architecture du serveur ?",
"seafile_manifest_arguments_install_domain": "Choisissez un domaine pour Seafile",
"seafile_manifest_arguments_install_path": "Choisissez un chemin pour Seafile",
"seafile_manifest_arguments_install_public_site": "Est-ce un site public ? Pour utiliser un client sur PC ou l'application mobile, Seafile doit être public",
"seafile_manifest_arguments_install_server_name": "Choisissez un nom",
"seafile_manifest_description": "Stockage Cloud Open Source",
"searx_manifest_arguments_install_domain": "Choisissez un domaine pour Searx",
"searx_manifest_arguments_install_is_public": "Est-ce un site public ?",
"searx_manifest_arguments_install_path": "Choisissez un chemin pour Searx",
"searx_manifest_description": "Un méta-moteur de recherche respectueux de la vie privée et bidouillable",
"shaarli_manifest_arguments_install_admin": "",
"shaarli_manifest_arguments_install_domain": "",
"shaarli_manifest_arguments_install_path": "",
"shaarli_manifest_arguments_install_privatelinkbydefault": "",
"shaarli_manifest_arguments_install_public": "",
"shaarli_manifest_arguments_install_title": "",
"shaarli_manifest_description": "Clone de delicious",
"shellinabox_manifest_arguments_install_domain": "",
"shellinabox_manifest_arguments_install_path": "",
"shellinabox_manifest_description": "Émulateur de terminal web",
"shout_manifest_arguments_install_domain": "Choisissez un domaine pour Shout",
"shout_manifest_arguments_install_is_public": "Est-ce une instance public ?",
"shout_manifest_arguments_install_path": "Choisissez un chemin pour Shout",
"shout_manifest_description": "Client Web IRC",
"sickbeard_manifest_arguments_install_domain": "Choisissez un domaine pour Sickbeard",
"sickbeard_manifest_arguments_install_fork": "LOCAL: URL du GIT source à utiliser",
"sickbeard_manifest_arguments_install_host": "REMOTE: Indiquez l'URL de l'hôte",
"sickbeard_manifest_arguments_install_method": "Choisissez le type d'installation",
"sickbeard_manifest_arguments_install_options": "LOCAL: Choisissez un client de téléchargement",
"sickbeard_manifest_arguments_install_path": "Choisissez un chemin pour Sickbeard",
"sickbeard_manifest_arguments_install_port": "LOCAL: Choisissez le port d'écoute de l'application",
"sickbeard_manifest_arguments_install_public": "Est-ce une application publique ?",
"sickbeard_manifest_arguments_remove_data": "Souhaitez-vous conserver les données ?",
"sickbeard_manifest_description": "Téléchargement automatisé de série TV",
"sogo_manifest_arguments_install_admin": "Choisissez ladministrateur",
"sogo_manifest_arguments_install_domain": "Choisissez un domaine pour sogo",
"sogo_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"sogo_manifest_description": "Insert French Here",
"sonerezh_manifest_arguments_install_domain": "Nom de domaine sur lequel installer Sonerezh",
"sonerezh_manifest_arguments_install_email_auth": "Adresse email qui servira à sauthentifier",
"sonerezh_manifest_arguments_install_password": "Mot de passe dauthentification sur Sonerezh (longueur ≥ 8)",
"sonerezh_manifest_arguments_install_url_path": "Chemin sur lequel installer Sonerezh",
"sonerezh_manifest_description": "Application web pour écouter en streaming de la musique partout.",
"spip_manifest_arguments_install_admin": "Administrateur du site (doit être un utilisateur YunoHost existant)",
"spip_manifest_arguments_install_domain": "",
"spip_manifest_arguments_install_path": "",
"spip_manifest_description": "SPIP - Système de publication pour lInternet",
"strut_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Strut",
"strut_manifest_arguments_install_path": "Choisissez l'adresse pour Strut",
"strut_manifest_arguments_install_public_site": "Une personne non membre peut elle créer une présentation ?",
"strut_manifest_description": "Strut est un éditeur de slide permetant de créer des présentation impress.js.",
"subsonic_manifest_arguments_install_admin": "",
"subsonic_manifest_arguments_install_domain": "",
"subsonic_manifest_arguments_install_path": "",
"subsonic_manifest_description": "Subsonic est un server multimedia open-source",
"synapse_manifest_arguments_install_domain": "Choisissez un domaine pour Synapse",
"synapse_manifest_arguments_install_is_public": "Est-ce un serveur publique ?",
"synapse_manifest_description": "Un serveur de messagerie instantané basé sur matrix",
"syncthing_manifest_arguments_install_domain": "",
"syncthing_manifest_arguments_install_path": "",
"syncthing_manifest_description": "Syncthing remplace les services propriétaires de synchro et de cloud avec quelque chose d'ouvert, digne de confiance et décentralisée.",
"tagspaces_manifest_arguments_install_domain": "Choisissez un domaine pour TagSpaces",
"tagspaces_manifest_arguments_install_is_public": "Est-ce un TagSpaces public ? (note: TagSpaces est juste un outil de visionnage, il ne stocke pas vos données)",
"tagspaces_manifest_arguments_install_last": "Souhaitez-vous installer la toute dernière version de TagSpaces ou une version testée sur YunoHost ? (Note : il est plus risqué d'installer la dernière version source)",
"tagspaces_manifest_arguments_install_path": "Choisissez un chemin pour TagSpaces",
"tagspaces_manifest_description": "TagSpaces est un gestionnaire de fichiers open source. Il vous aide à organiser vos fichiers à l'aide de tags et ce sur n'importe quelle plateforme.",
"teampass_manifest_arguments_install_domain": "Choisissez un domaine pour Teampass",
"teampass_manifest_arguments_install_password": "Choisissez un mot de passe pour l'administrateur",
"teampass_manifest_arguments_install_path": "Choisissez un chemin pour Teampass",
"teampass_manifest_description": "Gestionnaire de mots de passes.",
"teamspeak_manifest_arguments_install_System-OS Platform": "",
"teamspeak_manifest_description": "",
"telegram_manifest_arguments_install_admin": "Administrateur de Telegram (doit être un utilisateur YunoHost existant)",
"telegram_manifest_arguments_install_domain": "",
"telegram_manifest_arguments_install_path": "",
"telegram_manifest_description": "Telegram - un nouvelle espace de messagerie",
"torclient_manifest_arguments_install_domain": "Choisissez un domaine pour l'administration web",
"torclient_manifest_arguments_install_path": "Choissez un chemin pour l'administration web",
"torclient_manifest_description": "Client TOR",
"torrelay_manifest_arguments_install_contact": "Choisissez une adresse email sur laquelle vous pouvez être contacté",
"torrelay_manifest_arguments_install_nickname": "Choisissez un pseudonyme pour votre relai tor",
"torrelay_manifest_arguments_install_policy": "Choisissez si vous voulez pouvoir être choisi comme noeud de sortie. Si vous ne savez pas ce que c'est, vous devriez laisser ce paramètre à Non",
"torrelay_manifest_arguments_install_port": "Choisissez un port sur lequel Tor va écouter",
"torrelay_manifest_description": "Les relais tor sont aussi appelés routeurs ou noeuds. Ils recoivent le traffic du réseau Tor et le transfèrent au noeud suivant. Rendez-vous sur le site du projet Tor pour plus d'explications.",
"transmission_manifest_arguments_install_domain": "",
"transmission_manifest_arguments_install_path": "",
"transmission_manifest_description": "Un client BitTorrent libre et rapide",
"transwhat_manifest_arguments_install_admin": "Choisissez un numéro pour l'administrateur (ca doit être un utilisateur whatsapp)",
"transwhat_manifest_arguments_install_architecture": "Quelle est l'architecture du serveur ?",
"transwhat_manifest_arguments_install_domain": "Choisissez un domaine pour Transwhat",
"transwhat_manifest_arguments_install_path": "Choisissez un chemin pour transwhat",
"transwhat_manifest_description": "Une passerelle whatsapp depuis Jabber",
"ttrss_manifest_arguments_install_domain": "Choisissez un domaine pour Tiny-Tiny-RSS",
"ttrss_manifest_arguments_install_path": "Choisissez un chemin pour Tiny-Tiny-RSS",
"ttrss_manifest_description": "Un lecteur de flux en PHP et Ajax",
"vpnclient_manifest_arguments_install_domain": "Choisissez un domaine pour l'administration web",
"vpnclient_manifest_arguments_install_path": "Choissez un chemin pour l'administration web",
"vpnclient_manifest_description": "Client VPN",
"wallabag_manifest_arguments_install_domain": "Choisissez un domaine pour Wallabag",
"wallabag_manifest_arguments_install_path": "Choisissez un chemin pour Wallabag",
"wallabag_manifest_description": "Une application de lecture-plus-tard auto-hébergeable",
"webapp_multi_inst_manifest_arguments_install_db_create": "Doit-on créer une base de donnée pour cette app ? La base de donnée et son utilisateur seront $domain$path tel que domainorgsite",
"webapp_multi_inst_manifest_arguments_install_db_pwd": "Choisissez un mot de passe FORT pour accéder à la base de donnée",
"webapp_multi_inst_manifest_arguments_install_domain": "Choisissez un domaine pour votre Webapp",
"webapp_multi_inst_manifest_arguments_install_is_public": "Est-ce un site publique ?",
"webapp_multi_inst_manifest_arguments_install_path": "Choisissez un chemin pour votre Webapp",
"webapp_multi_inst_manifest_description": "Web App Multi Instances vide sans accès FTP",
"webmin_manifest_arguments_install_admin": "",
"webmin_manifest_arguments_install_domain": "",
"webmin_manifest_arguments_install_path": "",
"webmin_manifest_description": "Webmin",
"wekan_manifest_arguments_install_admin": "Choisissez ladministrateur",
"wekan_manifest_arguments_install_domain": "Choisissez un nom de domaine pour Wekan",
"wekan_manifest_arguments_install_is_public": "Est-ce une application publique ?",
"wekan_manifest_arguments_install_language": "Choisissez la langue de l'application",
"wekan_manifest_arguments_install_path": "Choisissez un chemin pour Wekan",
"wekan_manifest_description": "Un kanban similaire à Trello",
"wordpress_manifest_arguments_install_admin": "Administrateur du site (doit être un utilisateur YunoHost existant)",
"wordpress_manifest_arguments_install_domain": "Choisissez un domaine pour WordPress",
"wordpress_manifest_arguments_install_is_public": "Est-ce un site public ?",
"wordpress_manifest_arguments_install_language": "Choissisez la langue du WordPress",
"wordpress_manifest_arguments_install_multisite": "Activer l'option multisite ?",
"wordpress_manifest_arguments_install_path": "Choisissez un chemin pour WordPress",
"wordpress_manifest_description": "Logiciel de création de blog ou de site Web",
"yifypop_manifest_arguments_install_domain": "Choisissez un domaine pour yify-pop",
"yifypop_manifest_arguments_install_path": "Choisissez un chemin pour votre Webapp",
"yifypop_manifest_description": "Inspiré de Popcorn Time, un serveur web node js pour streamer les torrents provenant de YIFY.",
"ynapticron_manifest_arguments_install_emails": "Des adresses mail auquelles seront envoyées les notifications (séparées par des espaces).",
"ynapticron_manifest_description": "Recevez une notification sur les paquets à mettre à jour sur votre system.",
"yourls_manifest_arguments_install_admin": "Administrateur du site Yourls (doit être un utilisateur Yunohost existant)",
"yourls_manifest_arguments_install_domain": "Choisissez un domaine pour Yourls",
"yourls_manifest_arguments_install_path": "Choisissez un chemin pour Yourls",
"yourls_manifest_description": "Un service de raccourcisseur d'url",
"youtube-dl-webui_manifest_arguments_install_domain": "",
"youtube-dl-webui_manifest_arguments_install_download_folder": "",
"youtube-dl-webui_manifest_arguments_install_is_public": "",
"youtube-dl-webui_manifest_arguments_install_path": "",
"youtube-dl-webui_manifest_description": "Interface web pour youtube-dl",
"yunofav_manifest_arguments_install_domain": "Choisissez un domaine pour Yunofav",
"yunofav_manifest_arguments_install_path": "Choisissez un chemin pour Yunofav",
"yunofav_manifest_description": "Une page de liens favoris pour Yunohost",
"z-push_manifest_arguments_install_domain": "Choisissez un domaine pour Z-push",
"z-push_manifest_arguments_install_path": "Pas de choix, cela doit être /Microsoft-Server-ActiveSync",
"z-push_manifest_description": "Z-Push est un fronted Exchange ActiveSync écrit en php qui permet de synchroniser vos email (backend imap/smtp) et vos contacts/calendrier (backend carddav et caldav)",
"zerobin_manifest_arguments_install_domain": "Choisissez un domaine pour Zerobin",
"zerobin_manifest_arguments_install_is_public": "Est-ce un site public ?",
"zerobin_manifest_arguments_install_path": "Choisissez un chemin pour Zerobin",
"zerobin_manifest_description": "Un pastebin minimaliste, libre et où le serveur n'a aucune connaissance des données copiées",
"zeronet_manifest_arguments_install_admin": "Choisissez l'administrateur (seul autorisé à accéder à l'interface d'administration)",
"zeronet_manifest_arguments_install_domain": "Choisissez un nom de domaine pour ynhexample",
"zeronet_manifest_description": "Decentralized websites using Bitcoin crypto and BitTorrent network",
"zomburl_manifest_arguments_install_domain": "Choisissez un domaine pour Zomburl",
"zomburl_manifest_arguments_install_path": "Choisissez un chemin pour Zomburl",
"zomburl_manifest_description": "Un service de raccourcisseur d'url"
}

754
locales/it.json Normal file
View file

@ -0,0 +1,754 @@
{
"20euros_manifest_arguments_install_domain": "",
"20euros_manifest_arguments_install_is_public": "",
"20euros_manifest_arguments_install_path": "",
"20euros_manifest_description": "",
"243_manifest_arguments_install_domain": "",
"243_manifest_arguments_install_is_public": "",
"243_manifest_arguments_install_path": "",
"243_manifest_description": "",
"LBCAlerte_manifest_arguments_install_domain": "",
"LBCAlerte_manifest_arguments_install_is_public": "",
"LBCAlerte_manifest_arguments_install_password": "",
"LBCAlerte_manifest_arguments_install_path": "",
"LBCAlerte_manifest_description": "",
"abantecart_manifest_arguments_install_admin_name": "",
"abantecart_manifest_arguments_install_admin_pass": "",
"abantecart_manifest_arguments_install_domain": "",
"abantecart_manifest_arguments_install_is_public": "",
"abantecart_manifest_arguments_install_path": "",
"abantecart_manifest_description": "",
"adhocserver_manifest_description": "",
"adminer_manifest_arguments_install_admin": "",
"adminer_manifest_arguments_install_domain": "",
"adminer_manifest_arguments_install_path": "",
"adminer_manifest_description": "",
"agendav_manifest_arguments_install_domain": "",
"agendav_manifest_arguments_install_language": "",
"agendav_manifest_arguments_install_path": "",
"agendav_manifest_description": "",
"ajaxgoogleapis_manifest_arguments_install_public_site": "",
"ajaxgoogleapis_manifest_description": "",
"ampache_manifest_arguments_install_admin": "",
"ampache_manifest_arguments_install_domain": "",
"ampache_manifest_arguments_install_path": "",
"ampache_manifest_description": "",
"askbot_manifest_arguments_install_admin": "",
"askbot_manifest_arguments_install_domain": "",
"askbot_manifest_arguments_install_path": "",
"askbot_manifest_description": "",
"baikal_manifest_arguments_install_domain": "",
"baikal_manifest_arguments_install_password": "",
"baikal_manifest_arguments_install_path": "",
"baikal_manifest_description": "",
"bicbucstriim_manifest_arguments_install_admin": "",
"bicbucstriim_manifest_arguments_install_domain": "",
"bicbucstriim_manifest_arguments_install_is_public": "",
"bicbucstriim_manifest_arguments_install_login": "",
"bicbucstriim_manifest_arguments_install_path": "",
"bicbucstriim_manifest_description": "",
"bolt_manifest_arguments_install_domain": "",
"bolt_manifest_arguments_install_path": "",
"bolt_manifest_arguments_install_public_site": "",
"bolt_manifest_description": "",
"bozon_manifest_arguments_install_admin": "",
"bozon_manifest_arguments_install_domain": "",
"bozon_manifest_arguments_install_filesize": "",
"bozon_manifest_arguments_install_is_public": "",
"bozon_manifest_arguments_install_language": "",
"bozon_manifest_arguments_install_password": "",
"bozon_manifest_arguments_install_path": "",
"bozon_manifest_description": "",
"btsync_manifest_arguments_install_domain": "",
"btsync_manifest_arguments_install_path": "",
"btsync_manifest_arguments_install_platform": "",
"btsync_manifest_description": "",
"cesium_manifest_arguments_install_domain": "",
"cesium_manifest_arguments_install_is_public": "",
"cesium_manifest_arguments_install_path": "",
"cesium_manifest_description": "",
"chtickynotes_manifest_arguments_install_domain": "",
"chtickynotes_manifest_arguments_install_path": "",
"chtickynotes_manifest_description": "",
"cops_manifest_arguments_install_basicauthcreate": "",
"cops_manifest_arguments_install_basicauthname": "",
"cops_manifest_arguments_install_basicauthpass": "",
"cops_manifest_arguments_install_calibre": "",
"cops_manifest_arguments_install_domain": "",
"cops_manifest_arguments_install_is_public": "",
"cops_manifest_arguments_install_path": "",
"cops_manifest_description": "",
"couchpotato_manifest_arguments_install_domain": "",
"couchpotato_manifest_arguments_install_fork": "",
"couchpotato_manifest_arguments_install_host": "",
"couchpotato_manifest_arguments_install_method": "",
"couchpotato_manifest_arguments_install_path": "",
"couchpotato_manifest_arguments_install_port": "",
"couchpotato_manifest_arguments_install_public": "",
"couchpotato_manifest_arguments_remove_data": "",
"couchpotato_manifest_description": "",
"cubiks2048_manifest_arguments_install_domain": "",
"cubiks2048_manifest_arguments_install_is_public": "",
"cubiks2048_manifest_arguments_install_path": "",
"cubiks2048_manifest_description": "",
"diaspora_manifest_arguments_install_domain": "",
"diaspora_manifest_arguments_install_site_public": "",
"diaspora_manifest_description": "",
"dockercontainer_manifest_arguments_install_command": "",
"dockercontainer_manifest_arguments_install_datacontainer": "",
"dockercontainer_manifest_arguments_install_name": "",
"dockercontainer_manifest_arguments_install_repository": "",
"dockercontainer_manifest_arguments_install_restart": "",
"dockercontainer_manifest_arguments_install_volume": "",
"dockercontainer_manifest_description": "",
"dockerrstudio_manifest_arguments_install_domain": "",
"dockerrstudio_manifest_arguments_install_password": "",
"dockerrstudio_manifest_arguments_install_path": "",
"dockerrstudio_manifest_arguments_install_user": "",
"dockerrstudio_manifest_description": "",
"dockerui_manifest_arguments_install_domain": "",
"dockerui_manifest_arguments_install_path": "",
"dockerui_manifest_description": "",
"dokuwiki_manifest_arguments_install_admin": "",
"dokuwiki_manifest_arguments_install_domain": "",
"dokuwiki_manifest_arguments_install_is_public": "",
"dokuwiki_manifest_arguments_install_path": "",
"dokuwiki_manifest_description": "DokuWiki \u00e8 un Wiki aderente agli standard, semplice da usare, finalizzato principalmente alla creazione di documentazione di qualsiasi tipo.",
"dolibarr_manifest_arguments_install_domain": "",
"dolibarr_manifest_arguments_install_path": "",
"dolibarr_manifest_description": "",
"dotclear2_manifest_arguments_install_admin": "",
"dotclear2_manifest_arguments_install_domain": "",
"dotclear2_manifest_arguments_install_is_public": "",
"dotclear2_manifest_arguments_install_password": "",
"dotclear2_manifest_arguments_install_path": "",
"dotclear2_manifest_description": "",
"duniter_manifest_arguments_install_admin": "",
"duniter_manifest_arguments_install_domain": "",
"duniter_manifest_arguments_install_is_cesium_public": "",
"duniter_manifest_arguments_install_port": "",
"duniter_manifest_arguments_install_sync_node": "",
"duniter_manifest_arguments_install_sync_port": "",
"duniter_manifest_description": "",
"emailpoubelle_manifest_arguments_install_admin": "",
"emailpoubelle_manifest_arguments_install_domain": "",
"emailpoubelle_manifest_arguments_install_path": "",
"emailpoubelle_manifest_arguments_install_public_site": "",
"emailpoubelle_manifest_description": "",
"ethercalc_manifest_arguments_install_domain": "",
"ethercalc_manifest_arguments_install_expire": "",
"ethercalc_manifest_arguments_install_path": "",
"ethercalc_manifest_arguments_install_public_site": "",
"ethercalc_manifest_description": "",
"etherpad_mypads_manifest_arguments_install_abiword": "",
"etherpad_mypads_manifest_arguments_install_admin": "",
"etherpad_mypads_manifest_arguments_install_domain": "",
"etherpad_mypads_manifest_arguments_install_is_public": "",
"etherpad_mypads_manifest_arguments_install_language": "",
"etherpad_mypads_manifest_arguments_install_password": "",
"etherpad_mypads_manifest_description": "",
"etherpadlite_manifest_arguments_install_domain": "",
"etherpadlite_manifest_arguments_install_path": "",
"etherpadlite_manifest_arguments_install_public_site": "",
"etherpadlite_manifest_description": "",
"ffsync_manifest_arguments_install_domain": "",
"ffsync_manifest_arguments_install_path": "",
"ffsync_manifest_description": "",
"filebin_manifest_arguments_install_domain": "",
"filebin_manifest_arguments_install_is_public": "",
"filebin_manifest_arguments_install_path": "",
"filebin_manifest_description": "",
"flarum_manifest_arguments_install_admin": "",
"flarum_manifest_arguments_install_adminpass": "",
"flarum_manifest_arguments_install_domain": "",
"flarum_manifest_arguments_install_is_public": "",
"flarum_manifest_arguments_install_path": "",
"flarum_manifest_arguments_install_title": "",
"flarum_manifest_description": "",
"framagames_manifest_arguments_install_domain": "",
"framagames_manifest_arguments_install_is_public": "",
"framagames_manifest_arguments_install_path": "",
"framagames_manifest_description": "",
"freeboard_manifest_arguments_install_admin": "",
"freeboard_manifest_arguments_install_adv_html": "",
"freeboard_manifest_arguments_install_dash": "",
"freeboard_manifest_arguments_install_dash_bool": "",
"freeboard_manifest_arguments_install_domain": "",
"freeboard_manifest_arguments_install_is_public": "",
"freeboard_manifest_arguments_install_path": "",
"freeboard_manifest_description": "",
"freshrss_manifest_arguments_install_admin": "",
"freshrss_manifest_arguments_install_domain": "",
"freshrss_manifest_arguments_install_path": "",
"freshrss_manifest_description": "",
"friendica_manifest_arguments_install_admin": "",
"friendica_manifest_arguments_install_domain": "",
"friendica_manifest_arguments_install_path": "",
"friendica_manifest_arguments_install_public_site": "",
"friendica_manifest_description": "",
"ftp_webapp_manifest_arguments_install_admin": "",
"ftp_webapp_manifest_arguments_install_domain": "",
"ftp_webapp_manifest_arguments_install_language": "",
"ftp_webapp_manifest_description": "",
"garradin_manifest_arguments_install_domain": "",
"garradin_manifest_arguments_install_is_public": "",
"garradin_manifest_arguments_install_path": "",
"gateone_manifest_arguments_install_domain": "",
"gateone_manifest_arguments_install_path": "",
"gateone_manifest_description": "",
"ghostblog_manifest_arguments_install_admin": "",
"ghostblog_manifest_arguments_install_domain": "",
"ghostblog_manifest_arguments_install_password": "",
"ghostblog_manifest_arguments_install_path": "",
"ghostblog_manifest_description": "",
"gitolite_manifest_arguments_install_admin": "",
"gitolite_manifest_arguments_install_adminpubkey": "",
"gitolite_manifest_description": "",
"gitweb_manifest_arguments_install_admin": "",
"gitweb_manifest_arguments_install_domain": "",
"gitweb_manifest_arguments_install_path": "",
"gitweb_manifest_arguments_install_public_site": "",
"gitweb_manifest_description": "",
"glowingbear_manifest_arguments_install_domain": "",
"glowingbear_manifest_arguments_install_is_public": "",
"glowingbear_manifest_arguments_install_path": "",
"glowingbear_manifest_description": "",
"glpi_manifest_arguments_install_admin": "",
"glpi_manifest_arguments_install_domain": "",
"glpi_manifest_arguments_install_language": "",
"glpi_manifest_arguments_install_path": "",
"glpi_manifest_description": "",
"gnusocial_manifest_arguments_install_admin": "",
"gnusocial_manifest_arguments_install_domain": "",
"gnusocial_manifest_arguments_install_name": "",
"gnusocial_manifest_arguments_install_profile": "",
"gnusocial_manifest_description": "",
"gogs_manifest_arguments_install_admin": "",
"gogs_manifest_arguments_install_domain": "",
"gogs_manifest_arguments_install_path": "",
"gogs_manifest_arguments_install_public_site": "",
"gogs_manifest_description": "",
"grafana_manifest_arguments_install_admin": "",
"grafana_manifest_arguments_install_domain": "",
"grafana_manifest_arguments_install_is_public": "",
"grafana_manifest_arguments_install_path": "",
"grafana_manifest_description": "",
"haste_manifest_arguments_install_domain": "",
"haste_manifest_arguments_install_is_public": "",
"haste_manifest_arguments_install_path": "",
"haste_manifest_description": "",
"headphones_manifest_arguments_install_domain": "",
"headphones_manifest_arguments_install_fork": "",
"headphones_manifest_arguments_install_host": "",
"headphones_manifest_arguments_install_method": "",
"headphones_manifest_arguments_install_options": "",
"headphones_manifest_arguments_install_path": "",
"headphones_manifest_arguments_install_port": "",
"headphones_manifest_arguments_install_public": "",
"headphones_manifest_arguments_remove_data": "",
"headphones_manifest_description": "",
"hextris_manifest_arguments_install_domain": "",
"hextris_manifest_arguments_install_is_public": "",
"hextris_manifest_arguments_install_path": "",
"hextris_manifest_description": "",
"hotspot_manifest_arguments_install_domain": "",
"hotspot_manifest_arguments_install_firmware_nonfree": "",
"hotspot_manifest_arguments_install_path": "",
"hotspot_manifest_arguments_install_wifi_passphrase": "",
"hotspot_manifest_arguments_install_wifi_ssid": "",
"hotspot_manifest_description": "",
"htmltool_manifest_arguments_install_domain": "",
"htmltool_manifest_arguments_install_is_public": "",
"htmltool_manifest_arguments_install_path": "",
"htmltool_manifest_description": "",
"htpc-manager_manifest_arguments_install_domain": "",
"htpc-manager_manifest_arguments_install_path": "",
"htpc-manager_manifest_description": "",
"hubzilla_manifest_arguments_install_admin": "",
"hubzilla_manifest_arguments_install_adminemail": "",
"hubzilla_manifest_arguments_install_domain": "",
"hubzilla_manifest_arguments_install_is_public": "",
"hubzilla_manifest_description": "",
"huginn_manifest_arguments_install_admin": "",
"huginn_manifest_arguments_install_domain": "",
"huginn_manifest_arguments_install_invitation": "",
"huginn_manifest_arguments_install_is_public": "",
"huginn_manifest_arguments_install_password": "",
"huginn_manifest_arguments_install_path": "",
"huginn_manifest_description": "",
"ihatemoney_manifest_arguments_install_domain": "",
"ihatemoney_manifest_arguments_install_is_public": "",
"ihatemoney_manifest_arguments_install_path": "",
"ihatemoney_manifest_description": "",
"jappix_manifest_arguments_install_domain": "",
"jappix_manifest_arguments_install_language": "",
"jappix_manifest_arguments_install_name": "",
"jappix_manifest_arguments_install_path": "",
"jappix_manifest_description": "",
"jappix_mini_manifest_arguments_install_domain": "",
"jappix_mini_manifest_arguments_install_is_public": "",
"jappix_mini_manifest_arguments_install_muc": "",
"jappix_mini_manifest_arguments_install_path": "",
"jappix_mini_manifest_arguments_install_user": "",
"jappix_mini_manifest_description": "",
"jeedom_manifest_arguments_install_admin": "",
"jeedom_manifest_arguments_install_domain": "",
"jeedom_manifest_arguments_install_path": "",
"jeedom_manifest_arguments_install_sudo": "",
"jeedom_manifest_arguments_install_zwave": "",
"jeedom_manifest_description": "",
"jenkins_manifest_arguments_install_domain": "",
"jenkins_manifest_arguments_install_is_public": "",
"jenkins_manifest_arguments_install_path": "",
"jenkins_manifest_description": "",
"jirafeau_manifest_arguments_install_admin_user": "",
"jirafeau_manifest_arguments_install_domain": "",
"jirafeau_manifest_arguments_install_is_public": "",
"jirafeau_manifest_arguments_install_path": "",
"jirafeau_manifest_arguments_install_upload_password": "",
"jirafeau_manifest_description": "",
"jitsi_manifest_arguments_install_domain": "",
"jitsi_manifest_arguments_install_path": "",
"jitsi_manifest_description": "",
"kanboard_manifest_arguments_install_admin": "",
"kanboard_manifest_arguments_install_domain": "",
"kanboard_manifest_arguments_install_is_public": "",
"kanboard_manifest_arguments_install_path": "",
"kanboard_manifest_description": "",
"keeweb_manifest_arguments_install_domain": "",
"keeweb_manifest_arguments_install_is_public": "",
"keeweb_manifest_arguments_install_path": "",
"keeweb_manifest_description": "",
"kiwiirc_manifest_arguments_install_domain": "",
"kiwiirc_manifest_arguments_install_path": "",
"kiwiirc_manifest_arguments_install_public_site": "",
"kiwiirc_manifest_description": "",
"laverna_manifest_arguments_install_admin": "",
"laverna_manifest_arguments_install_domain": "",
"laverna_manifest_arguments_install_is_public": "",
"laverna_manifest_arguments_install_path": "",
"laverna_manifest_description": "",
"leed_manifest_arguments_install_admin": "",
"leed_manifest_arguments_install_domain": "",
"leed_manifest_arguments_install_is_public": "",
"leed_manifest_arguments_install_language": "",
"leed_manifest_arguments_install_market": "",
"leed_manifest_arguments_install_password": "",
"leed_manifest_arguments_install_path": "",
"leed_manifest_description": "",
"lektor_manifest_arguments_install_admin_user": "",
"lektor_manifest_arguments_install_domain": "",
"lektor_manifest_arguments_install_name": "",
"lektor_manifest_arguments_install_path": "",
"lektor_manifest_arguments_install_ssh_pub_key": "",
"lektor_manifest_description": "",
"limesurvey_manifest_arguments_install_admin": "",
"limesurvey_manifest_arguments_install_domain": "",
"limesurvey_manifest_arguments_install_language": "",
"limesurvey_manifest_arguments_install_path": "",
"limesurvey_manifest_description": "",
"linuxdash_manifest_arguments_install_domain": "",
"linuxdash_manifest_arguments_install_path": "",
"linuxdash_manifest_arguments_install_user": "",
"linuxdash_manifest_description": "",
"lutim_manifest_arguments_install_admin": "",
"lutim_manifest_arguments_install_always_encrypt": "",
"lutim_manifest_arguments_install_domain": "",
"lutim_manifest_arguments_install_is_public": "",
"lutim_manifest_arguments_install_path": "",
"lutim_manifest_description": "",
"lychee_manifest_arguments_install_admin_pwd": "",
"lychee_manifest_arguments_install_admin_user": "",
"lychee_manifest_arguments_install_domain": "",
"lychee_manifest_arguments_install_path": "",
"lychee_manifest_description": "",
"mailman_manifest_arguments_install_admin": "",
"mailman_manifest_arguments_install_adminPass": "",
"mailman_manifest_arguments_install_domain": "",
"mailman_manifest_arguments_install_is_public": "",
"mailman_manifest_arguments_install_language": "",
"mailman_manifest_arguments_install_listPrefix": "",
"mailman_manifest_arguments_install_path": "",
"mailman_manifest_description": "",
"mattermost_manifest_arguments_install_domain": "",
"mattermost_manifest_arguments_install_public_site": "",
"mattermost_manifest_description": "",
"mediagoblin_manifest_arguments_install_admin": "",
"mediagoblin_manifest_arguments_install_domain": "",
"mediagoblin_manifest_arguments_install_path": "",
"mediagoblin_manifest_arguments_install_public": "",
"mediagoblin_manifest_description": "",
"mediawiki_manifest_arguments_install_domain": "",
"mediawiki_manifest_arguments_install_is_public": "",
"mediawiki_manifest_arguments_install_language": "",
"mediawiki_manifest_arguments_install_path": "",
"mediawiki_manifest_arguments_install_wikiname": "",
"mediawiki_manifest_description": "",
"minchat_manifest_arguments_install_domain": "",
"minchat_manifest_arguments_install_ispublic": "",
"minchat_manifest_arguments_install_path": "",
"minchat_manifest_description": "",
"minidlna_manifest_arguments_install_version": "",
"minidlna_manifest_description": "",
"miniflux_manifest_arguments_install_admin": "",
"miniflux_manifest_arguments_install_domain": "",
"miniflux_manifest_arguments_install_path": "",
"miniflux_manifest_description": "",
"monit_manifest_arguments_install_domain": "",
"monit_manifest_arguments_install_path": "",
"monit_manifest_description": "",
"monitorix_manifest_arguments_install_domain": "",
"monitorix_manifest_arguments_install_path": "",
"monitorix_manifest_description": "",
"movim_manifest_arguments_install_admin": "",
"movim_manifest_arguments_install_domain": "",
"movim_manifest_arguments_install_language": "",
"movim_manifest_arguments_install_password": "",
"movim_manifest_arguments_install_path": "",
"movim_manifest_arguments_install_port": "",
"movim_manifest_arguments_install_ssoenabled": "",
"movim_manifest_description": "",
"multi_webapp_manifest_arguments_install_admin": "",
"multi_webapp_manifest_arguments_install_domain": "",
"multi_webapp_manifest_arguments_install_is_public": "",
"multi_webapp_manifest_arguments_install_path": "",
"multi_webapp_manifest_arguments_install_sql": "",
"multi_webapp_manifest_description": "",
"mumble_admin_plugin_manifest_arguments_install_admin": "",
"mumble_admin_plugin_manifest_arguments_install_admin_email": "",
"mumble_admin_plugin_manifest_arguments_install_admin_pass": "",
"mumble_admin_plugin_manifest_arguments_install_domain": "",
"mumble_admin_plugin_manifest_arguments_install_path": "",
"mumble_admin_plugin_manifest_description": "",
"mumbleserver_manifest_arguments_install_password": "",
"mumbleserver_manifest_arguments_install_port": "",
"mumbleserver_manifest_arguments_install_registername": "",
"mumbleserver_manifest_arguments_install_server_login_password": "",
"mumbleserver_manifest_arguments_install_welcometext": "",
"mumbleserver_manifest_description": "",
"munin_manifest_arguments_install_domain": "",
"munin_manifest_arguments_install_path": "",
"munin_manifest_description": "",
"my_webapp_manifest_arguments_install_domain": "",
"my_webapp_manifest_arguments_install_is_public": "",
"my_webapp_manifest_arguments_install_password": "",
"my_webapp_manifest_arguments_install_path": "",
"my_webapp_manifest_arguments_install_with_mysql": "",
"my_webapp_manifest_description": "",
"mycryptochat_manifest_arguments_install_domain": "",
"mycryptochat_manifest_arguments_install_is_public": "",
"mycryptochat_manifest_arguments_install_path": "",
"mycryptochat_manifest_description": "",
"netdata_manifest_arguments_install_domain": "",
"netdata_manifest_arguments_install_is_public": "",
"netdata_manifest_arguments_install_path": "",
"netdata_manifest_description": "",
"nextcloud_manifest_arguments_install_admin": "",
"nextcloud_manifest_arguments_install_domain": "",
"nextcloud_manifest_arguments_install_path": "",
"nextcloud_manifest_arguments_install_user_home": "",
"nextcloud_manifest_description": "",
"noalyss_manifest_arguments_install_domain": "",
"noalyss_manifest_arguments_install_path": "",
"noalyss_manifest_description": "",
"odoo_manifest_arguments_install_admin_password": "",
"odoo_manifest_arguments_install_database_password": "",
"odoo_manifest_arguments_install_domain": "",
"odoo_manifest_arguments_install_lang": "",
"odoo_manifest_arguments_install_odoo_version": "",
"odoo_manifest_description": "",
"ofbiz_manifest_arguments_install_admin": "",
"ofbiz_manifest_arguments_install_domain": "",
"ofbiz_manifest_arguments_install_path": "",
"ofbiz_manifest_description": "",
"openidsimplesamlphp_manifest_arguments_install_domain": "",
"openidsimplesamlphp_manifest_arguments_install_path": "",
"openidsimplesamlphp_manifest_description": "",
"opennote_manifest_arguments_install_admin": "",
"opennote_manifest_arguments_install_domain": "",
"opennote_manifest_arguments_install_is_public": "",
"opennote_manifest_arguments_install_path": "",
"opennote_manifest_description": "",
"opensondage_manifest_arguments_install_admin": "",
"opensondage_manifest_arguments_install_domain": "",
"opensondage_manifest_arguments_install_is_public": "",
"opensondage_manifest_arguments_install_language": "",
"opensondage_manifest_arguments_install_path": "",
"opensondage_manifest_description": "",
"openvpn_manifest_arguments_install_domain": "",
"openvpn_manifest_arguments_install_path": "",
"openvpn_manifest_description": "",
"openwrt_manifest_arguments_install_domain": "",
"openwrt_manifest_arguments_install_path": "",
"openwrt_manifest_arguments_install_server": "",
"openwrt_manifest_description": "",
"owncloud_manifest_arguments_install_admin": "",
"owncloud_manifest_arguments_install_domain": "",
"owncloud_manifest_arguments_install_path": "",
"owncloud_manifest_arguments_install_user_home": "",
"owncloud_manifest_description": "",
"phpBB_manifest_arguments_install_admin_email": "",
"phpBB_manifest_arguments_install_admin_login": "",
"phpBB_manifest_arguments_install_admin_pwd": "",
"phpBB_manifest_arguments_install_curl_inst": "",
"phpBB_manifest_arguments_install_domain": "",
"phpBB_manifest_arguments_install_is_public": "",
"phpBB_manifest_arguments_install_lang": "",
"phpBB_manifest_arguments_install_path": "",
"phpBB_manifest_description": "",
"phpldapadmin_manifest_arguments_install_admin": "",
"phpldapadmin_manifest_arguments_install_domain": "",
"phpldapadmin_manifest_arguments_install_path": "",
"phpldapadmin_manifest_description": "",
"phpmyadmin_manifest_arguments_install_admin": "",
"phpmyadmin_manifest_arguments_install_domain": "",
"phpmyadmin_manifest_arguments_install_path": "",
"phpmyadmin_manifest_description": "",
"phpsysinfo_manifest_arguments_install_display_mode": "",
"phpsysinfo_manifest_arguments_install_domain": "",
"phpsysinfo_manifest_arguments_install_is_public": "",
"phpsysinfo_manifest_arguments_install_language": "",
"phpsysinfo_manifest_arguments_install_path": "",
"phpsysinfo_manifest_description": "",
"piratebox_manifest_arguments_install_domain": "",
"piratebox_manifest_arguments_install_opt_chat": "",
"piratebox_manifest_arguments_install_opt_deleting": "",
"piratebox_manifest_arguments_install_opt_domain": "",
"piratebox_manifest_arguments_install_opt_name": "",
"piratebox_manifest_arguments_install_opt_renaming": "",
"piratebox_manifest_arguments_install_path": "",
"piratebox_manifest_description": "",
"piwigo_manifest_arguments_install_admin": "",
"piwigo_manifest_arguments_install_domain": "",
"piwigo_manifest_arguments_install_is_public": "",
"piwigo_manifest_arguments_install_language": "",
"piwigo_manifest_arguments_install_path": "",
"piwigo_manifest_description": "",
"piwik_manifest_arguments_install_admin": "",
"piwik_manifest_arguments_install_domain": "",
"piwik_manifest_arguments_install_option_geoip": "",
"piwik_manifest_arguments_install_option_log": "",
"piwik_manifest_arguments_install_path": "",
"piwik_manifest_description": "",
"plexmediaserver_manifest_arguments_install_domain": "",
"plexmediaserver_manifest_arguments_install_path": "",
"plexmediaserver_manifest_description": "",
"pluxml_manifest_arguments_install_admin": "",
"pluxml_manifest_arguments_install_default_lang": "",
"pluxml_manifest_arguments_install_domain": "",
"pluxml_manifest_arguments_install_password": "",
"pluxml_manifest_arguments_install_path": "",
"pluxml_manifest_arguments_install_public_site": "",
"pluxml_manifest_description": "",
"proftpd_manifest_arguments_install_domain": "",
"proftpd_manifest_arguments_install_password": "",
"proftpd_manifest_description": "",
"pydio_manifest_arguments_install_admin": "",
"pydio_manifest_arguments_install_domain": "",
"pydio_manifest_arguments_install_path": "",
"pydio_manifest_description": "",
"radicale_manifest_arguments_install_admin": "",
"radicale_manifest_arguments_install_domain": "",
"radicale_manifest_arguments_install_infcloud": "",
"radicale_manifest_arguments_install_language": "",
"radicale_manifest_arguments_install_path": "",
"radicale_manifest_description": "",
"rainloop_manifest_arguments_install_domain": "",
"rainloop_manifest_arguments_install_is_public": "",
"rainloop_manifest_arguments_install_lang": "",
"rainloop_manifest_arguments_install_ldap": "",
"rainloop_manifest_arguments_install_password": "",
"rainloop_manifest_arguments_install_path": "",
"rainloop_manifest_description": "",
"redirect_manifest_arguments_install_domain": "",
"redirect_manifest_arguments_install_is_public": "",
"redirect_manifest_arguments_install_path": "",
"redirect_manifest_arguments_install_redirect_path": "",
"redirect_manifest_arguments_install_redirect_type": "",
"redirect_manifest_description": "",
"riot_manifest_arguments_install_default_home_server": "",
"riot_manifest_arguments_install_domain": "",
"riot_manifest_arguments_install_is_public": "",
"riot_manifest_arguments_install_path": "",
"riot_manifest_description": "",
"roadiz_manifest_arguments_install_admin_name": "",
"roadiz_manifest_arguments_install_admin_pass": "",
"roadiz_manifest_arguments_install_domain": "",
"roadiz_manifest_arguments_install_is_public": "",
"roadiz_manifest_arguments_install_path": "",
"roadiz_manifest_description": "",
"roundcube_manifest_arguments_install_domain": "",
"roundcube_manifest_arguments_install_path": "",
"roundcube_manifest_arguments_install_with_carddav": "",
"roundcube_manifest_description": "",
"rutorrent_manifest_arguments_install_data_dir": "",
"rutorrent_manifest_arguments_install_domain": "",
"rutorrent_manifest_arguments_install_password": "",
"rutorrent_manifest_arguments_install_path": "",
"rutorrent_manifest_description": "",
"scm_manifest_arguments_install_admin": "",
"scm_manifest_arguments_install_admin_passwd": "",
"scm_manifest_arguments_install_domain": "",
"scm_manifest_arguments_install_path": "",
"scm_manifest_description": "",
"scrumblr_manifest_arguments_install_domain": "",
"scrumblr_manifest_arguments_install_is_public": "",
"scrumblr_manifest_arguments_install_path": "",
"scrumblr_manifest_description": "",
"seafile_manifest_arguments_install_admin": "",
"seafile_manifest_arguments_install_admin_password": "",
"seafile_manifest_arguments_install_architecture": "",
"seafile_manifest_arguments_install_domain": "",
"seafile_manifest_arguments_install_path": "",
"seafile_manifest_arguments_install_public_site": "",
"seafile_manifest_arguments_install_server_name": "",
"seafile_manifest_description": "",
"searx_manifest_arguments_install_domain": "",
"searx_manifest_arguments_install_is_public": "",
"searx_manifest_arguments_install_path": "",
"searx_manifest_description": "",
"shaarli_manifest_arguments_install_admin": "",
"shaarli_manifest_arguments_install_domain": "",
"shaarli_manifest_arguments_install_path": "",
"shaarli_manifest_arguments_install_privatelinkbydefault": "",
"shaarli_manifest_arguments_install_public": "",
"shaarli_manifest_arguments_install_title": "",
"shaarli_manifest_description": "",
"shellinabox_manifest_arguments_install_domain": "",
"shellinabox_manifest_arguments_install_path": "",
"shellinabox_manifest_description": "",
"shout_manifest_arguments_install_domain": "",
"shout_manifest_arguments_install_is_public": "",
"shout_manifest_arguments_install_path": "",
"shout_manifest_description": "",
"sickbeard_manifest_arguments_install_domain": "",
"sickbeard_manifest_arguments_install_fork": "",
"sickbeard_manifest_arguments_install_host": "",
"sickbeard_manifest_arguments_install_method": "",
"sickbeard_manifest_arguments_install_options": "",
"sickbeard_manifest_arguments_install_path": "",
"sickbeard_manifest_arguments_install_port": "",
"sickbeard_manifest_arguments_install_public": "",
"sickbeard_manifest_arguments_remove_data": "",
"sickbeard_manifest_description": "",
"sogo_manifest_arguments_install_admin": "",
"sogo_manifest_arguments_install_domain": "",
"sogo_manifest_arguments_install_is_public": "",
"sogo_manifest_description": "",
"sonerezh_manifest_arguments_install_domain": "",
"sonerezh_manifest_arguments_install_email_auth": "",
"sonerezh_manifest_arguments_install_password": "",
"sonerezh_manifest_arguments_install_url_path": "",
"sonerezh_manifest_description": "",
"spip_manifest_arguments_install_admin": "",
"spip_manifest_arguments_install_domain": "",
"spip_manifest_arguments_install_path": "",
"spip_manifest_description": "",
"strut_manifest_arguments_install_domain": "",
"strut_manifest_arguments_install_path": "",
"strut_manifest_arguments_install_public_site": "",
"strut_manifest_description": "",
"subsonic_manifest_arguments_install_admin": "",
"subsonic_manifest_arguments_install_domain": "",
"subsonic_manifest_arguments_install_path": "",
"subsonic_manifest_description": "",
"synapse_manifest_arguments_install_domain": "",
"synapse_manifest_arguments_install_is_public": "",
"synapse_manifest_description": "",
"syncthing_manifest_arguments_install_domain": "",
"syncthing_manifest_arguments_install_path": "",
"syncthing_manifest_description": "",
"tagspaces_manifest_arguments_install_domain": "",
"tagspaces_manifest_arguments_install_is_public": "",
"tagspaces_manifest_arguments_install_last": "",
"tagspaces_manifest_arguments_install_path": "",
"tagspaces_manifest_description": "",
"teampass_manifest_arguments_install_domain": "",
"teampass_manifest_arguments_install_password": "",
"teampass_manifest_arguments_install_path": "",
"teampass_manifest_description": "",
"teamspeak_manifest_arguments_install_System-OS Platform": "",
"teamspeak_manifest_description": "",
"telegram_manifest_arguments_install_admin": "",
"telegram_manifest_arguments_install_domain": "",
"telegram_manifest_arguments_install_path": "",
"telegram_manifest_description": "",
"torclient_manifest_arguments_install_domain": "",
"torclient_manifest_arguments_install_path": "",
"torclient_manifest_description": "",
"torrelay_manifest_arguments_install_contact": "",
"torrelay_manifest_arguments_install_nickname": "",
"torrelay_manifest_arguments_install_policy": "",
"torrelay_manifest_arguments_install_port": "",
"torrelay_manifest_description": "",
"transmission_manifest_arguments_install_domain": "",
"transmission_manifest_arguments_install_path": "",
"transmission_manifest_description": "",
"transwhat_manifest_arguments_install_admin": "",
"transwhat_manifest_arguments_install_architecture": "",
"transwhat_manifest_arguments_install_domain": "",
"transwhat_manifest_arguments_install_path": "",
"transwhat_manifest_description": "",
"ttrss_manifest_arguments_install_domain": "",
"ttrss_manifest_arguments_install_path": "",
"ttrss_manifest_description": "",
"vpnclient_manifest_arguments_install_domain": "",
"vpnclient_manifest_arguments_install_path": "",
"vpnclient_manifest_description": "",
"wallabag_manifest_arguments_install_domain": "",
"wallabag_manifest_arguments_install_path": "",
"wallabag_manifest_description": "",
"webapp_multi_inst_manifest_arguments_install_db_create": "",
"webapp_multi_inst_manifest_arguments_install_db_pwd": "",
"webapp_multi_inst_manifest_arguments_install_domain": "",
"webapp_multi_inst_manifest_arguments_install_is_public": "",
"webapp_multi_inst_manifest_arguments_install_path": "",
"webapp_multi_inst_manifest_description": "",
"webmin_manifest_arguments_install_admin": "",
"webmin_manifest_arguments_install_domain": "",
"webmin_manifest_arguments_install_path": "",
"webmin_manifest_description": "",
"wekan_manifest_arguments_install_admin": "",
"wekan_manifest_arguments_install_domain": "",
"wekan_manifest_arguments_install_is_public": "",
"wekan_manifest_arguments_install_language": "",
"wekan_manifest_arguments_install_path": "",
"wekan_manifest_description": "",
"wordpress_manifest_arguments_install_admin": "",
"wordpress_manifest_arguments_install_domain": "",
"wordpress_manifest_arguments_install_is_public": "",
"wordpress_manifest_arguments_install_language": "",
"wordpress_manifest_arguments_install_multisite": "",
"wordpress_manifest_arguments_install_path": "",
"wordpress_manifest_description": "",
"yifypop_manifest_arguments_install_domain": "",
"yifypop_manifest_arguments_install_path": "",
"yifypop_manifest_description": "",
"ynapticron_manifest_arguments_install_emails": "",
"ynapticron_manifest_description": "",
"yourls_manifest_arguments_install_admin": "",
"yourls_manifest_arguments_install_domain": "",
"yourls_manifest_arguments_install_path": "",
"yourls_manifest_description": "",
"youtube-dl-webui_manifest_arguments_install_domain": "",
"youtube-dl-webui_manifest_arguments_install_download_folder": "",
"youtube-dl-webui_manifest_arguments_install_is_public": "",
"youtube-dl-webui_manifest_arguments_install_path": "",
"youtube-dl-webui_manifest_description": "",
"yunofav_manifest_arguments_install_domain": "",
"yunofav_manifest_arguments_install_path": "",
"yunofav_manifest_description": "",
"z-push_manifest_arguments_install_domain": "",
"z-push_manifest_arguments_install_path": "",
"z-push_manifest_description": "",
"zerobin_manifest_arguments_install_domain": "",
"zerobin_manifest_arguments_install_is_public": "",
"zerobin_manifest_arguments_install_path": "",
"zerobin_manifest_description": "",
"zeronet_manifest_arguments_install_admin": "",
"zeronet_manifest_arguments_install_domain": "",
"zeronet_manifest_description": "",
"zomburl_manifest_arguments_install_domain": "",
"zomburl_manifest_arguments_install_path": "",
"zomburl_manifest_description": ""
}

View file

@ -1,121 +1,162 @@
{
"agendav": {
"branch": "master",
"revision": "7e13c46051f14a2d89e9142c1ca29bc56ddd2bda",
"level": 0,
"revision": "0259831957d005c64772080c85e81b03604d760f",
"state": "validated",
"url": "https://github.com/YunoHost-apps/agendav_ynh"
},
"ampache": {
"branch": "master",
"level": 7,
"revision": "4340e5b57179b006bb8e67971d45011cf313e8fb",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/ampache_ynh"
},
"baikal": {
"branch": "master",
"revision": "fa9af34fff81881b6a37b2053f85ede29c190cc7",
"level": 7,
"revision": "c7eefc2013e2e7b17b9fa664b375439bb96fb288",
"state": "validated",
"url": "https://github.com/YunoHost-apps/baikal_ynh"
},
"dokuwiki": {
"branch": "master",
"revision": "5caab35747b4e803f7724be1a700a53ee1723fb9",
"level": 4,
"revision": "9e34a8fce00967c8896e26017f26294022f7cbee",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/dokuwiki_ynh"
},
"hextris": {
"branch": "master",
"revision": "88d1916eceb760d62a9a3ea7bc5c4c6240a5840e",
"level": 7,
"revision": "58326cc06c5ef8ad8094cd577170b0d1b096af5e",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/hextris_ynh"
},
"jappix": {
"branch": "master",
"revision": "aa1636d751e0a7019e54ca83705ef7a93a9abb2b",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/jappix_ynh"
},
"jirafeau": {
"branch": "master",
"revision": "dbd28feceef2dc24e96651cb369bf863e5036116",
"level": 3,
"revision": "93e45b3cda9d8e10003cebf8f8cf4709f990264e",
"state": "validated",
"url": "https://github.com/YunoHost-apps/jirafeau_ynh"
},
"kanboard": {
"branch": "master",
"revision": "5c112f0f221109e5760f9f3828eaae75df4e8f9b",
"level": 7,
"revision": "175e961e9d4e7dbe730da4f19970ed4d9c0eb83a",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/kanboard_ynh"
},
"my_webapp": {
"branch": "master",
"revision": "c52418b955cacc0365cc10e8cf4700ddb9723d38",
"level": 7,
"revision": "5f1bee30dd18f65506426e699e6e06d53854b5ab",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/my_webapp_ynh"
},
"nextcloud": {
"branch": "master",
"level": 7,
"revision": "962cc61ec8ffb045d89dd460cf8b55778d862ffc",
"state": "validated",
"url": "https://github.com/YunoHost-apps/nextcloud_ynh"
},
"opensondage": {
"branch": "master",
"revision": "16153c0acccdb4b708e6cbe4dd5407b1c503e9d1",
"level": 3,
"revision": "3cd80ae82e323596048341c63408a17abdb51405",
"state": "validated",
"url": "https://github.com/YunoHost-apps/opensondage_ynh"
},
"owncloud": {
"branch": "master",
"revision": "2de9a45ea28b7f713872715b9dd284c0fe71beb8",
"state": "validated",
"url": "https://github.com/YunoHost-apps/owncloud_ynh"
},
"phpmyadmin": {
"branch": "master",
"revision": "044485c1fcd16409c5a7bacbea924621cc612ac8",
"level": 7,
"revision": "b7d01edb9612b3791eeb97de2bf141910597a76d",
"state": "validated",
"url": "https://github.com/YunoHost-apps/phpmyadmin_ynh"
},
"piwigo": {
"branch": "master",
"level": 6,
"revision": "091c3de0f86345768ad8a7bb2fe22fcface94407",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/piwigo_ynh"
},
"rainloop": {
"branch": "master",
"level": 7,
"revision": "6105c70721d9d7276ab8b2ade97860d8d6cf9333",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/rainloop_ynh"
},
"roundcube": {
"branch": "master",
"revision": "f5eb4d27a14e403080306de2334cfa20784dc48f",
"level": 7,
"revision": "a780644e4278af24de44ad95228c6bf8b6d0f658",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/roundcube_ynh"
},
"searx": {
"branch": "master",
"revision": "7028ebaf83d53c3c95a95367b568eb44bb6463b6",
"level": 7,
"revision": "d522d8dd496c92fc06b8945b73ccf2e371c15d84",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/searx_ynh"
},
"shellinabox": {
"branch": "master",
"revision": "36d5a3905a6ceb791f19a8e6b1f645b8c85c8128",
"level": 7,
"revision": "7f8b499147bbf5b76d39cc1e165682bb26d06331",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/shellinabox_ynh"
},
"strut": {
"branch": "master",
"revision": "f4ba74d60e863d2a02a5557493ea932b8fe31e8a",
"level": 0,
"revision": "03c3ea18cf117127749a860afe538bc6070a8e0b",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/strut_ynh"
},
"synapse": {
"branch": "master",
"level": 7,
"revision": "6ebc6d60870a761e8ce04eb4b772dd62a5729f6f",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/synapse_ynh"
},
"transmission": {
"branch": "master",
"revision": "4a8c3185795ece6af61eb438fe60cba6259d0b19",
"level": 7,
"revision": "09eba23f335a22c3b56f3bc90b4f221667fb280a",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/transmission_ynh"
},
"ttrss": {
"branch": "master",
"revision": "4d8516d282131ab7499d046fae82e266850988f2",
"level": 7,
"revision": "7e22b292244af2d14d31d27562e9b6362c023454",
"state": "validated",
"url": "https://github.com/YunoHost-apps/ttrss_ynh"
},
"wallabag": {
"wallabag2": {
"branch": "master",
"revision": "81be93aa43a3fec9d1d2e007d9491d2f519160ad",
"level": 7,
"revision": "689e47f4c59a4e408edb5e753f6f9ec67a1426ab",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/wallabag_ynh"
"url": "https://github.com/YunoHost-Apps/wallabag2_ynh"
},
"wordpress": {
"branch": "master",
"revision": "034fcde60d7b512c0ded33f75e41a798b931100a",
"level": 7,
"revision": "5afdbcb8c291777df60bc18256dd8a09221f415f",
"state": "validated",
"url": "https://github.com/YunoHost-Apps/wordpress_ynh"
},
"zerobin": {
"branch": "master",
"revision": "73c9a63333a42a92de6026435368ae3c12610eae",
"level": 7,
"revision": "64be493f069f428800b7a6bae7ae549ec7792b82",
"state": "validated",
"url": "https://github.com/YunoHost-apps/zerobin_ynh"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

View file

@ -8,17 +8,24 @@ then
exit 1
fi
before_official=$(sha256sum official.json)
before_community=$(sha256sum community.json)
before_pull_commit=$(git show HEAD | head -n 1)
git pull
if [ "$before_official" != "$(sha256sum official.json)" ]
if [ "$before_pull_commit" != "$(git show HEAD | head -n 1)" ]
then
python ./list_builder.py -g $1 official.json
fi
if [ "$before_community" != "$(sha256sum community.json)" ]
then
python ./list_builder.py -g $1 community.json
python ./list_builder.py -g $1 dev.json
python ./update_translations.py official-build.json community-build.json dev-build.json
if [ "$(git status -s| grep 'M locales/en.json')" ]
then
git add locales/en.json
git commit -m "[mod] update en.json with new translations"
git pull yunohost-bot master
git push yunohost-bot master
fi
fi

26
update_translations.py Normal file
View file

@ -0,0 +1,26 @@
import sys
import json
if __name__ == '__main__':
en = json.load(open("locales/en.json", "r"))
for builded_file in sys.argv[1:]:
builded_file = json.load(open(builded_file, "r"))
for app, data in builded_file.items():
if "en" in data["manifest"]["description"]:
key = "%s_manifest_description" % app
en[key] = data["manifest"]["description"]["en"]
for category, questions in data["manifest"]["arguments"].items():
for question in questions:
if "en" in question["ask"]:
key = "%s_manifest_arguments_%s_%s" % (app, category, question["name"])
en[key] = question["ask"]["en"]
if "en" in question.get("help", {}):
key = "%s_manifest_arguments_%s_help_%s" % (app, category, question["name"])
en[key] = question["help"]["en"]
open("locales/en.json", "w").write(json.dumps(en, sort_keys=True, indent=4))