mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
list_builder: drop the old i18n stuff ... this didnt get any update since 2.5 years and doesn't contain that many relevant translation anymore ... and it's gonna be a mess to adapt the code to cover both v1 and v2 manifest format ...
This commit is contained in:
parent
bae7463f41
commit
f58a2fb999
12 changed files with 1 additions and 2932 deletions
|
@ -1,57 +0,0 @@
|
||||||
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))
|
|
|
@ -1,40 +0,0 @@
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
import json
|
|
||||||
|
|
||||||
# TODO
|
|
||||||
# when an app is moved from one list to another find a way to migrate string?
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
# en = json.load(open("locales/en.json", "r"))
|
|
||||||
|
|
||||||
for apps_list in sys.argv[1:]:
|
|
||||||
if not os.path.exists(apps_list):
|
|
||||||
print "Error: file %s doesn't exists" % apps_list
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
folder = "locales-%s" % (apps_list.split(".")[0])
|
|
||||||
|
|
||||||
apps_list = json.load(open(apps_list, "r"))
|
|
||||||
apps = tuple(apps_list.keys())
|
|
||||||
|
|
||||||
if not os.path.exists(folder):
|
|
||||||
os.mkdir(folder)
|
|
||||||
|
|
||||||
for existing_translations in os.listdir("locales"):
|
|
||||||
if not existing_translations.endswith(".json"):
|
|
||||||
print "skip non json file %s", existing_translations
|
|
||||||
continue
|
|
||||||
|
|
||||||
language = existing_translations[:-len(".json")]
|
|
||||||
existing_translations = json.load(open("locales/" + existing_translations, "r"))
|
|
||||||
|
|
||||||
new_content = {}
|
|
||||||
for key, value in existing_translations.items():
|
|
||||||
if key.startswith(apps):
|
|
||||||
new_content[key] = value
|
|
||||||
|
|
||||||
file_name = folder + "/" + language + ".json"
|
|
||||||
print "writting %s..." % file_name
|
|
||||||
open(file_name, "w").write(json.dumps(new_content, sort_keys=True, indent=4))
|
|
|
@ -1,27 +0,0 @@
|
||||||
import sys
|
|
||||||
import json
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
for builded_file in sys.argv[1:]:
|
|
||||||
app_list = builded_file.split("-")[0]
|
|
||||||
en = json.load(open("locales-%s/en.json" % app_list, "r"))
|
|
||||||
|
|
||||||
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-%s/en.json" % app_list, "w").write(json.dumps(en, sort_keys=True, indent=4))
|
|
|
@ -299,7 +299,7 @@ def build_app_dict(app, infos):
|
||||||
"url": infos["url"],
|
"url": infos["url"],
|
||||||
},
|
},
|
||||||
"lastUpdate": timestamp,
|
"lastUpdate": timestamp,
|
||||||
"manifest": include_translations_in_manifest(manifest),
|
"manifest": manifest,
|
||||||
"state": infos["state"],
|
"state": infos["state"],
|
||||||
"level": infos.get("level", "?"),
|
"level": infos.get("level", "?"),
|
||||||
"maintained": infos.get("maintained", True),
|
"maintained": infos.get("maintained", True),
|
||||||
|
@ -313,58 +313,6 @@ def build_app_dict(app, infos):
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def include_translations_in_manifest(manifest):
|
|
||||||
|
|
||||||
app_name = manifest["id"]
|
|
||||||
|
|
||||||
for locale in os.listdir("locales"):
|
|
||||||
if not locale.endswith("json"):
|
|
||||||
continue
|
|
||||||
|
|
||||||
if locale == "en.json":
|
|
||||||
continue
|
|
||||||
|
|
||||||
current_lang = locale.split(".")[0]
|
|
||||||
translations = json.load(open(os.path.join("locales", locale), "r"))
|
|
||||||
|
|
||||||
# don't overwrite already existing translation in manifests for now
|
|
||||||
key = "%s_manifest_description" % app_name
|
|
||||||
if current_lang not in manifest["description"] and translations.get(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"],
|
|
||||||
)
|
|
||||||
# don't overwrite already existing translation in manifests for now
|
|
||||||
if (
|
|
||||||
translations.get(key)
|
|
||||||
and "ask" in question
|
|
||||||
and current_lang not in question["ask"]
|
|
||||||
):
|
|
||||||
question["ask"][current_lang] = translations[key]
|
|
||||||
|
|
||||||
key = "%s_manifest_arguments_%s_help_%s" % (
|
|
||||||
app_name,
|
|
||||||
category,
|
|
||||||
question["name"],
|
|
||||||
)
|
|
||||||
# don't overwrite already existing translation in manifests for now
|
|
||||||
if (
|
|
||||||
translations.get(key)
|
|
||||||
and "help" in question
|
|
||||||
and current_lang not in question.get("help", [])
|
|
||||||
):
|
|
||||||
question["help"][current_lang] = translations[key]
|
|
||||||
|
|
||||||
return manifest
|
|
||||||
|
|
||||||
|
|
||||||
######################
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
refresh_all_caches()
|
refresh_all_caches()
|
||||||
build_catalog()
|
build_catalog()
|
||||||
|
|
342
locales/ar.json
342
locales/ar.json
|
@ -1,342 +0,0 @@
|
||||||
{
|
|
||||||
"20euros_manifest_description": "2048 - 20euros",
|
|
||||||
"243_manifest_description": "2048 game clone",
|
|
||||||
"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_description": "Create a E-commerce Website",
|
|
||||||
"adhocserver_manifest_description": "An adhoc Server for the sony PSP",
|
|
||||||
"adminer_manifest_description": "Database management in a single PHP file",
|
|
||||||
"agendav_manifest_arguments_install_language": "Default language to be used in 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_description": "A web based audio/video streaming application",
|
|
||||||
"askbot_manifest_description": "Askbot is a Questions & Answers (Q&A) software",
|
|
||||||
"baikal_manifest_description": "Lightweight CalDAV+CardDAV server",
|
|
||||||
"bicbucstriim_manifest_arguments_install_login": "Disable BicBucStriim login ?",
|
|
||||||
"bicbucstriim_manifest_description": "BicBucStriim streams books, digital books, providing web-based access to your e-book collection.",
|
|
||||||
"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_filesize": "Define the file upload size limit",
|
|
||||||
"bozon_manifest_arguments_install_language": "Default language",
|
|
||||||
"bozon_manifest_description": "Minimalist Drag & drop file sharing app",
|
|
||||||
"btsync_manifest_arguments_install_platform": "Choose the BitTorrentSync platform",
|
|
||||||
"btsync_manifest_description": "BitTorrentSync : synchronize your files using bittorrent",
|
|
||||||
"cesium_manifest_description": "Duniter client to manage wallets, certifications in a libre money.",
|
|
||||||
"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_description": "Calibre OPDS (and HTML) PHP Server",
|
|
||||||
"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_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_description": "2048 game clone in 3D",
|
|
||||||
"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_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_description": "Docker allows to deploy applications which have not yet been integrated with YunoHost",
|
|
||||||
"dokuwiki_manifest_description": "DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database.",
|
|
||||||
"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_description": "Blog publishing application",
|
|
||||||
"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_public_site": "Should this application be public ?",
|
|
||||||
"emailpoubelle_manifest_description": "Create throwable email address redirected to your real one",
|
|
||||||
"ethercalc_manifest_arguments_install_expire": "Deletes a spreadsheet's content after N days of inactivity. (0 to diasable this feature)",
|
|
||||||
"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_language": "Choose your language",
|
|
||||||
"etherpad_mypads_manifest_description": "Framapad clone, a online editor providing collaborative editing in real-time.",
|
|
||||||
"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_description": "Mozilla\u2019s Sync-Server to host your Firefox account data",
|
|
||||||
"filebin_manifest_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data - File Edition",
|
|
||||||
"flarum_manifest_arguments_install_adminpass": "Put your password",
|
|
||||||
"flarum_manifest_arguments_install_title": "Choose a title for your forum",
|
|
||||||
"flarum_manifest_description": "Flarum (open-source forum software) package for YunoHost.",
|
|
||||||
"framagames_manifest_description": "Set of games Framagames from Framasoft",
|
|
||||||
"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_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_description": "FreshRSS is a selfhostable RSS reader",
|
|
||||||
"friendica_manifest_arguments_install_public_site": "Is it a public Friendica site ?",
|
|
||||||
"friendica_manifest_description": "Social Communication Server",
|
|
||||||
"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",
|
|
||||||
"gateone_manifest_description": "HTML5-powered terminal emulator and SSH client",
|
|
||||||
"ghostblog_manifest_description": "Just a blogging platform",
|
|
||||||
"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_public_site": "Should this application be public ?",
|
|
||||||
"gitweb_manifest_description": "Web interface to see gitolite repositories",
|
|
||||||
"glowingbear_manifest_description": "A web client for WeeChat.",
|
|
||||||
"glpi_manifest_arguments_install_language": "Choose the language of the GLPI site",
|
|
||||||
"glpi_manifest_description": "Create a beautiful blog or website easily",
|
|
||||||
"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_public_site": "Is it a public site ?",
|
|
||||||
"gogs_manifest_description": "A self-hosted Git service written in Go",
|
|
||||||
"grafana_manifest_description": "Beautiful metric & analytic dashboards for monitoring",
|
|
||||||
"grav_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"grav_manifest_arguments_install_multisite": "Enable multisite option ?",
|
|
||||||
"grav_manifest_description": "Grav - Grav is a modern open source flat-file CMS",
|
|
||||||
"haste_manifest_description": "Haste is an open-source pastebin software written in node.js",
|
|
||||||
"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_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_description": "A fast paced puzzle game.",
|
|
||||||
"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_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_description": "An easy HTML toolset",
|
|
||||||
"htpc-manager_manifest_description": "Manage your HTPC from anywhere",
|
|
||||||
"hubzilla_manifest_arguments_install_adminemail": "Email address for the Hubzilla hub admin",
|
|
||||||
"hubzilla_manifest_description": "Hubzilla is a decentralized publication platform and social network.",
|
|
||||||
"huginn_manifest_arguments_install_invitation": "Choose an invitation code for new users",
|
|
||||||
"huginn_manifest_description": " Build agents that monitor and act on your behalf. Your agents are standing by!",
|
|
||||||
"ihatemoney_manifest_description": "A simple shared budget manager web application",
|
|
||||||
"jappix_manifest_arguments_install_language": "Choose the default language of Jappix",
|
|
||||||
"jappix_manifest_arguments_install_name": "Choose a name for Jappix",
|
|
||||||
"jappix_manifest_description": "A free social network",
|
|
||||||
"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_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_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_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_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_description": "Video conferencing web application",
|
|
||||||
"kanboard_manifest_description": "Kanboard is a simple visual task board web application",
|
|
||||||
"keeweb_manifest_description": "Password manager compatible with KeePass.",
|
|
||||||
"kiwiirc_manifest_arguments_install_public_site": "Is it a public KiwiIRC site ?",
|
|
||||||
"kiwiirc_manifest_description": "Web IRC client",
|
|
||||||
"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_language": "Choose your agregator's language",
|
|
||||||
"leed_manifest_arguments_install_market": "Do you want to activate the Leed Market?",
|
|
||||||
"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_name": "Choose a name for your website",
|
|
||||||
"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_language": "Choose the default language of this LimeSurvey",
|
|
||||||
"limesurvey_manifest_description": "LimeSurvey is used to create advanced poll.",
|
|
||||||
"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_always_encrypt": "Force the encryption of images?",
|
|
||||||
"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_description": "Self-hosted photo-management done right",
|
|
||||||
"mailman_manifest_arguments_install_adminPass": "Choose a mailman administration password",
|
|
||||||
"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_description": "Free software for managing electronic mail discussion and e-newsletter lists.",
|
|
||||||
"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_public": "Is it a public site?",
|
|
||||||
"mediagoblin_manifest_description": "A free software media publishing platform",
|
|
||||||
"mediawiki_manifest_arguments_install_language": "Choose the language",
|
|
||||||
"mediawiki_manifest_arguments_install_wikiname": "Choose a name for the wiki",
|
|
||||||
"mediawiki_manifest_description": "Open Source Wiki software",
|
|
||||||
"minchat_manifest_arguments_install_ispublic": "Taper Y si le site est public",
|
|
||||||
"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_description": "Minimal RSS reader.",
|
|
||||||
"monit_manifest_description": "Monitoring of processes, files, directories, filesystems and hosts",
|
|
||||||
"monitorix_manifest_description": "A monitoring tools",
|
|
||||||
"movim_manifest_arguments_install_language": "Pod language",
|
|
||||||
"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_sql": "Create a database?",
|
|
||||||
"multi_webapp_manifest_description": "Empty App without FTP access",
|
|
||||||
"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_description": "Mumble-server web interface",
|
|
||||||
"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_description": "Outil de supervision de ressources",
|
|
||||||
"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_description": "Encrypted IM",
|
|
||||||
"mytinytodo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"mytinytodo_manifest_description": "Simple open source to-do list script.",
|
|
||||||
"netdata_manifest_description": "real-time performance and health monitoring",
|
|
||||||
"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_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_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_description": "Apache-OFBiz ERP",
|
|
||||||
"openidsimplesamlphp_manifest_description": "OpenID provider based on SimpleSAMLphp",
|
|
||||||
"opennote_manifest_description": "OpenNote was built to be an open web-based alternative to Microsoft OneNote (T) and EverNote.",
|
|
||||||
"opensondage_manifest_arguments_install_language": "Choose the default language of this 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_description": "Your Secure and Private Tunnel to the Internet",
|
|
||||||
"openwrt_manifest_arguments_install_server": "Choose IP where OpenWRT is installed",
|
|
||||||
"openwrt_manifest_description": "Access to OpenWRT",
|
|
||||||
"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_lang": "Configure phpBB's language",
|
|
||||||
"phpBB_manifest_description": "#1 free, opensource bulletin board software",
|
|
||||||
"phpldapadmin_manifest_description": "Manage OpenLDAP database over the web",
|
|
||||||
"phpmyadmin_manifest_description": "Manage MySQL databases over the web",
|
|
||||||
"phpsysinfo_manifest_arguments_install_display_mode": "Display Mode?",
|
|
||||||
"phpsysinfo_manifest_arguments_install_language": "Default Language?",
|
|
||||||
"phpsysinfo_manifest_description": "A customizable PHP script that displays information about your system nicely.",
|
|
||||||
"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_description": "PirateBox",
|
|
||||||
"piwigo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"piwigo_manifest_description": "photo gallery",
|
|
||||||
"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_description": "Measurement Software web statistics to analyze traffic to your sites.",
|
|
||||||
"plexmediaserver_manifest_description": "Media server",
|
|
||||||
"pluxml_manifest_arguments_install_default_lang": "Default language",
|
|
||||||
"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_description": "",
|
|
||||||
"pydio_manifest_description": "File sharing platform",
|
|
||||||
"radicale_manifest_arguments_install_infcloud": "Install InfCloud web interface?",
|
|
||||||
"radicale_manifest_arguments_install_language": "Choose your interface language",
|
|
||||||
"radicale_manifest_description": "CalDAV (calendar) and CardDAV (contact) synchronization server",
|
|
||||||
"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_description": "Lightweight multi-account webmail",
|
|
||||||
"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_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_description": "Create a modern Website",
|
|
||||||
"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_description": "Torrent client",
|
|
||||||
"scm_manifest_arguments_install_admin_passwd": "Choose a password for SCM-Manager administrator",
|
|
||||||
"scm_manifest_description": "The easiest way to share and manage your Git, Mercurial and Subversion repositories over http",
|
|
||||||
"scrumblr_manifest_description": "Software for notes",
|
|
||||||
"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_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_description": "A privacy-respecting, hackable metasearch engine",
|
|
||||||
"seenthis_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"seenthis_manifest_description": "Seenthis - Short-blogging destin\u00e9 \u00e0 la veille d\u2019actualit\u00e9.",
|
|
||||||
"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_description": "Web based AJAX terminal emulator",
|
|
||||||
"shout_manifest_description": "Web IRC client",
|
|
||||||
"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_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_description": "Sogo is an opensource groupware for E-Mail, Contacts and Calender.",
|
|
||||||
"sonerezh_manifest_arguments_install_email_auth": "Email address which will be used for authentication",
|
|
||||||
"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_language": "Choose the application language",
|
|
||||||
"spip2_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"spip_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"spip_manifest_arguments_install_ldap": "LDAP Connection",
|
|
||||||
"spip_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"staticwebapp_manifest_description": "Minimal web application for static files (vhost)",
|
|
||||||
"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_description": "Subsonic is an open source, web-based media server.",
|
|
||||||
"synapse_manifest_description": "Instant messaging server who use matrix",
|
|
||||||
"syncthing_manifest_description": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.",
|
|
||||||
"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_description": "TagSpaces is an open source personal data manager. It helps you organize files with tags on every platform.",
|
|
||||||
"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_description": "Telegram - a new era of messaging",
|
|
||||||
"testupgrade_manifest_description": "Dummy app for testing upgrade. Development purpose.",
|
|
||||||
"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_description": "A Fast, Easy, and Free BitTorrent Client",
|
|
||||||
"transwhat_manifest_arguments_install_architecture": "What is the server architecture?",
|
|
||||||
"transwhat_manifest_description": "A getway to whatsapp from Jabber",
|
|
||||||
"ttrss_manifest_description": "A PHP and Ajax feed reader",
|
|
||||||
"vpnclient_manifest_description": "VPN Client",
|
|
||||||
"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_description": "Web App Multi Instances without FTP access",
|
|
||||||
"webmin_manifest_description": "Webmin",
|
|
||||||
"wekan_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"wekan_manifest_description": "Trello-like kanban",
|
|
||||||
"wordpress_manifest_arguments_install_language": "Choose the language of the WordPress site",
|
|
||||||
"wordpress_manifest_arguments_install_multisite": "Enable multisite option ?",
|
|
||||||
"wordpress_manifest_description": "Create a beautiful blog or website easily",
|
|
||||||
"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_description": "An URL shortening service",
|
|
||||||
"youtube-dl-webui_manifest_arguments_install_download_folder": "Choose a folder where video and music will be downloaded",
|
|
||||||
"youtube-dl-webui_manifest_description": "Web interface for youtube-dl",
|
|
||||||
"yunofav_manifest_description": "A page of favorite links for Yunohost",
|
|
||||||
"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_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data",
|
|
||||||
"zeronet_manifest_description": "Decentralized websites using Bitcoin crypto and BitTorrent network",
|
|
||||||
"zomburl_manifest_description": "An URL shortening service"
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
592
locales/en.json
592
locales/en.json
|
@ -1,592 +0,0 @@
|
||||||
{
|
|
||||||
"20euros_manifest_description": "2048 - 20euros",
|
|
||||||
"243_manifest_description": "2048 game clone",
|
|
||||||
"LBCAlerte_manifest_description": "LBCAlerte package for YunoHost.",
|
|
||||||
"Remotestorage_manifest_description": "This is a remoteStorage server implementation written in PHP.",
|
|
||||||
"abantecart_manifest_arguments_install_admin_email": "Your Email adress.",
|
|
||||||
"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 (without special caracters)",
|
|
||||||
"abantecart_manifest_description": "Create a E-commerce Website",
|
|
||||||
"adhocserver_manifest_description": "An adhoc Server for the sony PSP",
|
|
||||||
"adminer_manifest_arguments_install_root_access": "Allow root access(For security its disabled by default)?",
|
|
||||||
"adminer_manifest_description": "Database management in a single PHP file",
|
|
||||||
"agendav_manifest_arguments_install_language": "Default language to be used in 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_description": "A web based audio/video streaming application",
|
|
||||||
"archivist_manifest_arguments_install_apps_backup": "Would you like to backup your apps ?",
|
|
||||||
"archivist_manifest_arguments_install_core_backup": "Would you like to backup your YunoHost core ?",
|
|
||||||
"archivist_manifest_arguments_install_encrypt": "Do you want to encrypt your backups ?",
|
|
||||||
"archivist_manifest_arguments_install_encryption_pwd": "Set the password for encryption.",
|
|
||||||
"archivist_manifest_arguments_install_frequency": "Choose the frequency of your backups ?",
|
|
||||||
"archivist_manifest_arguments_install_help_encryption_pwd": "It's needed if you use backup encryption.",
|
|
||||||
"archivist_manifest_description": "Automatic backups.",
|
|
||||||
"askbot_manifest_description": "Askbot is a Questions & Answers (Q&A) software",
|
|
||||||
"baikal_manifest_description": "Lightweight CalDAV+CardDAV server",
|
|
||||||
"bicbucstriim_manifest_arguments_install_login": "Disable BicBucStriim login ?",
|
|
||||||
"bicbucstriim_manifest_description": "BicBucStriim streams books, digital books, providing web-based access to your e-book collection.",
|
|
||||||
"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.",
|
|
||||||
"borg_manifest_arguments_install_apps": "Which apps would you backup (list separated by comma or 'all') ?",
|
|
||||||
"borg_manifest_arguments_install_conf": "Would you like to backup your YunoHost configuration ?",
|
|
||||||
"borg_manifest_arguments_install_data": "Would you like to backup mails and user home directory ?",
|
|
||||||
"borg_manifest_arguments_install_on_calendar": "Indicate the backup frequency (see systemd OnCalendar format)",
|
|
||||||
"borg_manifest_arguments_install_passphrase": "Indicate a strong passphrase, that you will keep preciously if you want to be able to use your backups",
|
|
||||||
"borg_manifest_arguments_install_server": "Indicate the server where you want put your backups",
|
|
||||||
"borg_manifest_arguments_install_ssh_user": "Indicate the ssh user to use to connect on this server",
|
|
||||||
"borg_manifest_description": "Backup your server with borg.",
|
|
||||||
"borgserver_manifest_arguments_install_public_key": "Indicate the public key given by borg_ynh app",
|
|
||||||
"borgserver_manifest_arguments_install_quota": "Indicate the storage quota",
|
|
||||||
"borgserver_manifest_arguments_install_ssh_user": "Indicate the ssh user to create",
|
|
||||||
"borgserver_manifest_description": "Offer backup storage to a friend.",
|
|
||||||
"bozon_manifest_arguments_install_backup_core_only": "In a case of backup should I only backup the core of the app ? (your uploaded datas to BoZoN as videos, pictures, documents, etc. will not be backuped)",
|
|
||||||
"bozon_manifest_arguments_install_filesize": "Define the file upload size limit",
|
|
||||||
"bozon_manifest_arguments_install_language": "Language (if the browser language is not detected)",
|
|
||||||
"bozon_manifest_description": "Minimalist Drag & drop file sharing app",
|
|
||||||
"btsync_manifest_arguments_install_platform": "Choose the BitTorrentSync platform",
|
|
||||||
"btsync_manifest_description": "BitTorrentSync : synchronize your files using bittorrent",
|
|
||||||
"cachet_manifest_arguments_install_admin_password": "Set the password for admin user",
|
|
||||||
"cachet_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"cachet_manifest_description": "Open source status page system",
|
|
||||||
"cesium_manifest_description": "Duniter client to manage wallets, certifications in a libre money.",
|
|
||||||
"cheky_manifest_description": "Cheky package for YunoHost.",
|
|
||||||
"chtickynotes_manifest_description": "Generic sticky notes for all purpose",
|
|
||||||
"coin_manifest_arguments_install_email": "Choose email were send notification",
|
|
||||||
"coin_manifest_arguments_install_isp_name": "Enter your ISP name",
|
|
||||||
"coin_manifest_arguments_install_isp_site": "Enter the address of your ISP website",
|
|
||||||
"coin_manifest_description": "Member dashboard for non profit isp.",
|
|
||||||
"collabora_manifest_arguments_install_nextclouddomain": "The domain of your Nextcloud instance",
|
|
||||||
"collabora_manifest_description": "Collabora online package for YunoHost.",
|
|
||||||
"collaboradocker_manifest_description": "Collabora Online is a powerful LibreOffice-based online office suite",
|
|
||||||
"concrete5_manifest_arguments_install_admin_name": "Choose the Concrete5 administrator (must be an existing YunoHost user)",
|
|
||||||
"concrete5_manifest_arguments_install_admin_pass": "Set the password for the Admin user \u2265 5 character",
|
|
||||||
"concrete5_manifest_arguments_install_language": "Default language to be used in your website admin",
|
|
||||||
"concrete5_manifest_description": "Create a modern Website",
|
|
||||||
"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_description": "Calibre OPDS (and HTML) PHP Server",
|
|
||||||
"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_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",
|
|
||||||
"cryptpad_manifest_description": "Encrypted Pad",
|
|
||||||
"cubiks2048_manifest_description": "2048 game clone in 3D",
|
|
||||||
"democracyos_manifest_description": "Application to make it possible to make decisions.",
|
|
||||||
"diaspora_manifest_arguments_install_site_public": "Is it a public Diaspora site?",
|
|
||||||
"diaspora_manifest_description": "Distributed social networking service",
|
|
||||||
"diasporadocker_manifest_description": "A open and powerfull social network",
|
|
||||||
"docker-registry_manifest_description": "Docker registry for yunohost",
|
|
||||||
"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_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_description": "Docker allows to deploy applications which have not yet been integrated with YunoHost",
|
|
||||||
"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_member": "Should YunoHost users also be added as members awaiting approval in 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_description": "Blog publishing application",
|
|
||||||
"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.",
|
|
||||||
"dynette_manifest_arguments_install_subdomains": "Choose subdomains managed by Dynette",
|
|
||||||
"dynette_manifest_description": "Dynette is a dyndns server",
|
|
||||||
"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_expire": "Deletes a spreadsheet's content after N days of inactivity. (0 to diasable this feature)",
|
|
||||||
"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_export": "Use abiword (~260Mo) or libreoffice (~400Mo) (more stable) to expand export possibilities (pdf, doc) ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_mypads": "<a href=https://git.framasoft.org/framasoft/ep_mypads target=_blank>mypads plugin</a>",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_path": "If you choose to install mypads plugin, etherpad has to be on /",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_useldap": "Using ldap won't let you add new user aside from YunoHost users.",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_language": "Choose your language",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_mypads": "Do you want to install mypads plugin ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_useldap": "Do you want to use ldap with mypads ?",
|
|
||||||
"etherpad_mypads_manifest_description": "Framapad clone, a online editor providing collaborative editing in real-time.",
|
|
||||||
"etherpadlite_manifest_arguments_install_public_site": "Is it a public Etherpad ?",
|
|
||||||
"etherpadlite_manifest_description": "online editor providing collaborative editing in really real-time",
|
|
||||||
"facette_manifest_description": "Facette package for YunoHost.",
|
|
||||||
"fallback_manifest_arguments_install_auto_deploy": "[fallback server only] Deploy automatically the fallback in case of failure.",
|
|
||||||
"fallback_manifest_arguments_install_auto_detect_failure": "[fallback server only] Auto detect a failure of the main server ?",
|
|
||||||
"fallback_manifest_arguments_install_contact_mail": "[fallback server only] Email address to contact in case of failure.",
|
|
||||||
"fallback_manifest_arguments_install_delay_before_incident": "[fallback server only] Delay before declaring an incident with the main server.",
|
|
||||||
"fallback_manifest_arguments_install_encrypt": "[main server only] Do you want to encrypt your backups ?",
|
|
||||||
"fallback_manifest_arguments_install_encryption_pwd": "[main server only] Set the password for encryption.",
|
|
||||||
"fallback_manifest_arguments_install_help_auto_deploy": "Only for failure auto detection.",
|
|
||||||
"fallback_manifest_arguments_install_help_contact_mail": "Only for failure auto detection.<br>Should be obviously an address on another server !",
|
|
||||||
"fallback_manifest_arguments_install_help_delay_before_incident": "Only for failure auto detection.",
|
|
||||||
"fallback_manifest_arguments_install_help_encrypt": "You should desactive the encryption only if your fallback server is really safe.",
|
|
||||||
"fallback_manifest_arguments_install_help_encryption_pwd": "It's needed if you not turn off the encryption.",
|
|
||||||
"fallback_manifest_arguments_install_help_install_type": "Choose 'main server' if you make an installation on your real server. Or 'fallback server' if it's your backup server.",
|
|
||||||
"fallback_manifest_arguments_install_help_pub_key": "The public key will be given at the end of the install process for the main server.",
|
|
||||||
"fallback_manifest_arguments_install_help_ssh_host": "This server has to be up, for the ssh-keyscan command.",
|
|
||||||
"fallback_manifest_arguments_install_install_type": "Choose which kind of installation you want.",
|
|
||||||
"fallback_manifest_arguments_install_pub_key": "[fallback server only] Put here the public ssh key.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_host": "[main server only] Set the domain name (or ip adress) for the fallback server.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_port": "[main server only] Set the port for the ssh connection.",
|
|
||||||
"fallback_manifest_description": "Fallback server for YunoHost.",
|
|
||||||
"ffsync_manifest_description": "Mozilla\u2019s Sync-Server to host your Firefox account data",
|
|
||||||
"filebin_manifest_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data - File Edition",
|
|
||||||
"firefly-iii_manifest_description": "Firefly III package for YunoHost.",
|
|
||||||
"firefly3_manifest_description": "Firefly3 package for YunoHost.",
|
|
||||||
"flarum_manifest_arguments_install_adminpass": "Put your password",
|
|
||||||
"flarum_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"flarum_manifest_arguments_install_title": "Choose a title for your forum (required for automatic post-installation)",
|
|
||||||
"flarum_manifest_description": "Flarum (open-source forum software) package for YunoHost.",
|
|
||||||
"flask_manifest_arguments_install_display_name": "Display name (used in SSO portal)",
|
|
||||||
"flask_manifest_arguments_install_help_system_name": "(only lowercases, alphanumeric characters, no spaces)",
|
|
||||||
"flask_manifest_arguments_install_system_name": "Short name used by the system to identify your app",
|
|
||||||
"flask_manifest_description": "Flask app tmplate.",
|
|
||||||
"fluxbb_manifest_description": "Example package for YunoHost application.",
|
|
||||||
"framaestro_hub_manifest_description": "Online service aggregator hub: allows you to have a real-time collaborative framaestro app (you need to install framaestro first).",
|
|
||||||
"framaestro_manifest_description": "Online service aggregator. If you want have a real-time collaborative framaestro, install framaestro_hub (work in progress)",
|
|
||||||
"framaforms_manifest_description": "Framaforms helps you create online webforms and surveys",
|
|
||||||
"framagames_manifest_description": "Set of games Framagames from Framasoft",
|
|
||||||
"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_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_description": "FreshRSS is a selfhostable RSS reader",
|
|
||||||
"friendica_manifest_arguments_install_public_site": "Is it a public Friendica site ?",
|
|
||||||
"friendica_manifest_description": "Social Communication Server",
|
|
||||||
"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",
|
|
||||||
"funkwhale_manifest_description": "A modern, convivial and free music server",
|
|
||||||
"galette_manifest_arguments_install_adminPass": "Admin password",
|
|
||||||
"galette_manifest_description": "Membership management web application for non profit organizations",
|
|
||||||
"gateone_manifest_description": "HTML5-powered terminal emulator and SSH client",
|
|
||||||
"ghostblog_manifest_description": "Just a blogging platform",
|
|
||||||
"git-repositories_manifest_description": "",
|
|
||||||
"gitea_manifest_description": "Lightweight git forge",
|
|
||||||
"gitlab-runner_manifest_arguments_install_instance": "GitLab instance URL",
|
|
||||||
"gitlab-runner_manifest_arguments_install_token": "Enter the GitLab-CI runner token for this runner",
|
|
||||||
"gitlab-runner_manifest_description": "Run GitLab-CI jobs on your own server",
|
|
||||||
"gitlab_manifest_description": "Gitlab for Yunohost.",
|
|
||||||
"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_public_site": "Should this application be public ?",
|
|
||||||
"gitweb_manifest_description": "Web interface to see gitolite repositories",
|
|
||||||
"glowingbear_manifest_description": "A web client for WeeChat.",
|
|
||||||
"glpi_manifest_arguments_install_language": "Choose the language of the GLPI site",
|
|
||||||
"glpi_manifest_description": "Create a beautiful blog or website easily",
|
|
||||||
"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_public_site": "Is it a public site ?",
|
|
||||||
"gogs_manifest_description": "Lightweight git forge",
|
|
||||||
"grafana_manifest_arguments_install_port": "Choose a port for your server. Let as default if you don't want to change it",
|
|
||||||
"grafana_manifest_description": "Beautiful metric & analytic dashboards for monitoring",
|
|
||||||
"grav_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"grav_manifest_arguments_install_multisite": "Enable multisite option ?",
|
|
||||||
"grav_manifest_description": "Grav - Grav is a modern open source flat-file CMS",
|
|
||||||
"haste_manifest_description": "Haste is an open-source pastebin software written in node.js",
|
|
||||||
"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_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_description": "A fast paced puzzle game.",
|
|
||||||
"horde_manifest_arguments_install_ansel_install": "Install a full featured photo management (Ansel) ?",
|
|
||||||
"horde_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"horde_manifest_arguments_install_service_autodiscovery": "Would you like to enable the caldDav/cardDAV service autodiscovery ?",
|
|
||||||
"horde_manifest_arguments_install_sesha_install": "Install a Inventory Manager (Sesha) ?",
|
|
||||||
"horde_manifest_arguments_install_whups_install": "Install a ticket-tracking system (Whups) ?",
|
|
||||||
"horde_manifest_arguments_install_wicked_install": "Install a Wiki (Wicked) ?",
|
|
||||||
"horde_manifest_description": "A groupware (webmail, adressbook, calendar) witch use PHP",
|
|
||||||
"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_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_description": "An easy HTML toolset",
|
|
||||||
"htpc-manager_manifest_description": "Manage your HTPC from anywhere",
|
|
||||||
"hubzilla_manifest_arguments_install_adminemail": "Email address for the Hubzilla hub admin",
|
|
||||||
"hubzilla_manifest_arguments_install_email": "Email address for the Hubzilla hub admin",
|
|
||||||
"hubzilla_manifest_arguments_install_run_exec": "Do you agree to modify php.ini to allow exec() function to be used by hubzilla ?",
|
|
||||||
"hubzilla_manifest_arguments_install_upload": "Maximum upload size (MB)",
|
|
||||||
"hubzilla_manifest_description": "Hubzilla is a decentralized publication platform and social network.",
|
|
||||||
"huginn_manifest_arguments_install_invitation": "Choose an invitation code for new users",
|
|
||||||
"huginn_manifest_description": " Build agents that monitor and act on your behalf. Your agents are standing by!",
|
|
||||||
"humhub_manifest_description": "Enterprise Social Network.",
|
|
||||||
"ihatemoney_manifest_description": "A simple shared budget manager web application",
|
|
||||||
"jappix_manifest_arguments_install_language": "Choose the default language of Jappix",
|
|
||||||
"jappix_manifest_arguments_install_name": "Choose a name for Jappix",
|
|
||||||
"jappix_manifest_description": "A free social network",
|
|
||||||
"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_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_sudo": "Do you agree giving sudo rights to the Jeedom user? This is required for most Jeedom features to work. However, attackers could use vulnerabilities in Jeedom to take control of your server.",
|
|
||||||
"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_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_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_description": "Video conferencing web application",
|
|
||||||
"joomla_manifest_arguments_install_email": "Admin email",
|
|
||||||
"joomla_manifest_arguments_install_username": "Admin unsername",
|
|
||||||
"joomla_manifest_description": "Joomla! is an award-winning content management system.",
|
|
||||||
"kanboard_manifest_description": "Kanboard is a simple visual task board web application",
|
|
||||||
"keeweb_manifest_description": "Password manager compatible with KeePass.",
|
|
||||||
"kiwiirc_manifest_arguments_install_public_site": "Is it a public KiwiIRC site ?",
|
|
||||||
"kiwiirc_manifest_description": "Web IRC client",
|
|
||||||
"kodi_manifest_arguments_install_launch_on_boot": "Launch Kodi at YunoHost server startup",
|
|
||||||
"kodi_manifest_arguments_install_open_webserver_port": "Open port 8080 in order to use a smartphone Kodi remote app on your local network",
|
|
||||||
"kodi_manifest_description": "Transform your YunoHost server into media center with Kodi",
|
|
||||||
"kresus_manifest_description": "Kresus is a personal finance manager.",
|
|
||||||
"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_language": "Choose your agregator's language",
|
|
||||||
"leed_manifest_arguments_install_market": "Do you want to activate the Leed Market?",
|
|
||||||
"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_name": "Choose a name for your website",
|
|
||||||
"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.",
|
|
||||||
"libresonic_manifest_description": "Libresonic is an open source, web-based media server.",
|
|
||||||
"limesurvey_manifest_arguments_install_language": "Choose the default language of this LimeSurvey",
|
|
||||||
"limesurvey_manifest_description": "LimeSurvey is used to create advanced poll.",
|
|
||||||
"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.",
|
|
||||||
"lstu_manifest_description": "URL Shortener",
|
|
||||||
"lufi_manifest_description": "Self hosting files and sharing anonymous application",
|
|
||||||
"lutim_manifest_arguments_install_always_encrypt": "Force the encryption of images?",
|
|
||||||
"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_description": "Self-hosted photo-management done right",
|
|
||||||
"mailman_manifest_arguments_install_adminPass": "Choose a mailman administration password",
|
|
||||||
"mailman_manifest_arguments_install_admin_password": "Choose a mailman administration password",
|
|
||||||
"mailman_manifest_arguments_install_help_admin_password": "It will be needed to create and administrate lists. Be careful though : this password will be stored in clear on the disk :/ ...",
|
|
||||||
"mailman_manifest_arguments_install_help_domain": "This will be the domain on which mailing lists will run",
|
|
||||||
"mailman_manifest_arguments_install_help_path": "The web interface for mailman will be accessible at the.domain.tld/path",
|
|
||||||
"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_description": "Free software for managing electronic mail discussion and e-newsletter lists.",
|
|
||||||
"mastodon_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"mastodon_manifest_arguments_install_passwd": "Enter password of this administrator \u2265 8 character",
|
|
||||||
"mastodon_manifest_description": "Mastodon is a free, open-source social network.",
|
|
||||||
"mattermost_manifest_arguments_install_admin_email": "Login email for the chat admin",
|
|
||||||
"mattermost_manifest_arguments_install_admin_locale": "Choose the language of the chat for the admin",
|
|
||||||
"mattermost_manifest_arguments_install_admin_password": "Password for the chat admin",
|
|
||||||
"mattermost_manifest_arguments_install_analytics": "Allow Mattermost to send some telemetrics about your usage of this app?",
|
|
||||||
"mattermost_manifest_arguments_install_public_site": "Can guest users access this chat?",
|
|
||||||
"mattermost_manifest_arguments_install_team_display_name": "Choose a Team name",
|
|
||||||
"mattermost_manifest_description": "An open-source, self-hosted alternative to Slack",
|
|
||||||
"mediadrop_manifest_description": "Mediadrop - The Web\u2019s Open Source Video Platform",
|
|
||||||
"mediagoblin_manifest_arguments_install_public": "Is it a public site?",
|
|
||||||
"mediagoblin_manifest_description": "A free software media publishing platform",
|
|
||||||
"mediawiki_manifest_arguments_install_language": "Choose the language",
|
|
||||||
"mediawiki_manifest_arguments_install_wikiname": "Choose a name for the wiki",
|
|
||||||
"mediawiki_manifest_description": "Open Source Wiki software",
|
|
||||||
"menu_manifest_description": "Display a public/private menu on all pages generated by YunoHost",
|
|
||||||
"minchat_manifest_arguments_install_ispublic": "Taper Y si le site est public",
|
|
||||||
"minchat_manifest_description": "A minimalist web chat",
|
|
||||||
"minetest_manifest_arguments_install_creative": "Whether to enable creative mode (unlimited inventory)",
|
|
||||||
"minetest_manifest_arguments_install_damage": "Enable players getting damage and dying",
|
|
||||||
"minetest_manifest_arguments_install_pvp": "Whether to enable players killing each other",
|
|
||||||
"minetest_manifest_description": "Minetest is a free, open source voxel game engine and game. Fully extendable. Need a client to connect to the server.",
|
|
||||||
"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_description": "Minimal RSS reader.",
|
|
||||||
"modernpaste_manifest_description": "A modern, feature-rich Pastebin alternative",
|
|
||||||
"monica_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"monica_manifest_description": " Personal Relationship Manager - a new kind of CRM to organize interactions with your friends and family.",
|
|
||||||
"monit_manifest_description": "Monitoring of processes, files, directories, filesystems and hosts",
|
|
||||||
"monitorix_manifest_description": "A monitoring tools",
|
|
||||||
"moodle_manifest_description": "Moodle package for YunoHost application.",
|
|
||||||
"mopidy_manifest_arguments_install_admin_mopidy": "Choose the Mopidy administrator (must be an existing YunoHost user)",
|
|
||||||
"mopidy_manifest_arguments_install_soundcloud_id": "Soundcloud ID (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id": "Client ID Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id_secret": "Client secret ID Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_pass": "Password Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_user": "User Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_description": "Mopidy - is an extensible music server written in Python.",
|
|
||||||
"movim_manifest_arguments_install_language": "Pod language",
|
|
||||||
"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_sql": "Create a database?",
|
|
||||||
"multi_webapp_manifest_description": "Empty App without FTP access",
|
|
||||||
"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_description": "Mumble-server web interface",
|
|
||||||
"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 a libre, low-latency, high quality voice chat software primarily intended for use while gaming.",
|
|
||||||
"munin_manifest_description": "Outil de supervision de ressources",
|
|
||||||
"my-mind_manifest_description": "Online Mindmapping Software",
|
|
||||||
"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_description": "Encrypted IM",
|
|
||||||
"mytinytodo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"mytinytodo_manifest_description": "Simple open source to-do list script.",
|
|
||||||
"netdata_manifest_description": "real-time performance and health monitoring",
|
|
||||||
"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",
|
|
||||||
"nexusoss_manifest_arguments_install_lang": "Select default language",
|
|
||||||
"nexusoss_manifest_description": "sonatype nexus repository manager OSS",
|
|
||||||
"noalyss_manifest_description": "Accounting free software (Beligum and French accounting)",
|
|
||||||
"nodebb_manifest_arguments_install_admin_name": "Choose the Abantecart administrator (must be an existing YunoHost user)",
|
|
||||||
"nodebb_manifest_description": "Nodejs Forum",
|
|
||||||
"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_lang": "Choose a language for Odoo",
|
|
||||||
"odoo_manifest_arguments_install_oca": "Use OCA repository to get community bugfixes ?",
|
|
||||||
"odoo_manifest_arguments_install_odoo_version": "Which version of Odoo do you want to install?",
|
|
||||||
"odoo_manifest_arguments_install_tz": "Choose a time zone for Odoo",
|
|
||||||
"odoo_manifest_arguments_install_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_description": "Apache-OFBiz ERP",
|
|
||||||
"openidsimplesamlphp_manifest_description": "OpenID provider based on SimpleSAMLphp",
|
|
||||||
"opennote_manifest_description": "OpenNote was built to be an open web-based alternative to Microsoft OneNote (T) and EverNote.",
|
|
||||||
"opensondage_manifest_arguments_install_language": "Choose the default language of this 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_description": "Your Secure and Private Tunnel to the Internet",
|
|
||||||
"openwrt_manifest_arguments_install_server": "Choose IP where OpenWRT is installed",
|
|
||||||
"openwrt_manifest_description": "Access to OpenWRT",
|
|
||||||
"ore_manifest_arguments_install_email": "Provide an email to send DATABASE settings[Database password will be sent on this email.So be CAREFUL]",
|
|
||||||
"ore_manifest_description": "Open Real Estate package for YunoHost.",
|
|
||||||
"osjs_manifest_description": "Desktop you have accesss through your browser",
|
|
||||||
"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!",
|
|
||||||
"owntracks_manifest_description": "Owntracks (location history) package for YunoHost.",
|
|
||||||
"pagure_manifest_description": "A translation platform using Git and Python",
|
|
||||||
"peertube_manifest_arguments_install_email": "Choose an admin email (can be changed after installation)",
|
|
||||||
"peertube_manifest_description": "Video streaming platform using P2P directly in the web browser, connected to a federated network",
|
|
||||||
"pelican_manifest_arguments_install_author": "Choose an author",
|
|
||||||
"pelican_manifest_arguments_install_title": "Choose a default title for your website",
|
|
||||||
"pelican_manifest_description": "Pelican Static Site Generator",
|
|
||||||
"pgadmin_manifest_arguments_install_admin_password": "Enter a password for the administrator",
|
|
||||||
"pgadmin_manifest_description": "Manage PostgreSQL databases over the web",
|
|
||||||
"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_lang": "Configure phpBB's language",
|
|
||||||
"phpBB_manifest_description": "#1 free, opensource bulletin board software",
|
|
||||||
"phpldapadmin_manifest_description": "Manage OpenLDAP database over the web",
|
|
||||||
"phpmyadmin_manifest_description": "Manage MySQL databases over the web",
|
|
||||||
"phpsysinfo_manifest_arguments_install_display_mode": "Display Mode?",
|
|
||||||
"phpsysinfo_manifest_arguments_install_language": "Default Language?",
|
|
||||||
"phpsysinfo_manifest_description": "A customizable PHP script that displays information about your system nicely.",
|
|
||||||
"pihole_manifest_arguments_install_enable_dhcp": "Do you want to set Pi-hole as your DHCP server ?",
|
|
||||||
"pihole_manifest_arguments_install_help_enable_dhcp": "If you want to do that, <a href=https://github.com/YunoHost-Apps/pihole_ynh/blob/master/dhcp.md target=_blank>you really have to read this before</a> !",
|
|
||||||
"pihole_manifest_arguments_install_help_query_logging": "Keeping this option deactivate will render graphs on the admin page useless. But will respect the privacy of the other users.",
|
|
||||||
"pihole_manifest_arguments_install_query_logging": "Do you want to log queries ?",
|
|
||||||
"pihole_manifest_description": "Network-wide ad blocking via your own DNS server.",
|
|
||||||
"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_description": "PirateBox",
|
|
||||||
"piwigo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"piwigo_manifest_description": "photo gallery",
|
|
||||||
"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_description": "Measurement Software web statistics to analyze traffic to your sites.",
|
|
||||||
"pixelfed_manifest_description": "Federated Image Sharing",
|
|
||||||
"plexmediaserver_manifest_description": "Media server",
|
|
||||||
"plonecms_manifest_arguments_install_admin_name": "Choose the PLone administrator (must be an existing YunoHost user)",
|
|
||||||
"plonecms_manifest_arguments_install_admin_pass": "Set the password for the Admin user \u2265 5 character",
|
|
||||||
"plonecms_manifest_description": "Create a modern Website with a CMS written in python",
|
|
||||||
"pluxml_manifest_arguments_install_default_lang": "Default language",
|
|
||||||
"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.",
|
|
||||||
"portainer_manifest_description": "A web interface for the Docker engine management",
|
|
||||||
"prestashop_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"prestashop_manifest_arguments_install_passwd": "Set the password for the Admin user \u2265 5 character",
|
|
||||||
"prestashop_manifest_description": "Create a E-commerce Website",
|
|
||||||
"proftpd_manifest_description": "",
|
|
||||||
"pydio_manifest_description": "File sharing platform",
|
|
||||||
"radicale_manifest_arguments_install_infcloud": "Install InfCloud web interface?",
|
|
||||||
"radicale_manifest_arguments_install_language": "Choose your interface language",
|
|
||||||
"radicale_manifest_description": "CalDAV (calendar) and CardDAV (contact) synchronization server",
|
|
||||||
"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_description": "Lightweight multi-account webmail",
|
|
||||||
"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_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_description": "Create a modern Website",
|
|
||||||
"rocketchat_manifest_arguments_install_lang": "Select default language",
|
|
||||||
"rocketchat_manifest_description": "the ultimate chat platform",
|
|
||||||
"roundcube_manifest_arguments_install_with_carddav": "Install CardDAV synchronization plugin?",
|
|
||||||
"roundcube_manifest_arguments_install_with_enigma": "Install Enigma messages encryption plugin?",
|
|
||||||
"roundcube_manifest_description": "Open Source Webmail software",
|
|
||||||
"rss-bridge_manifest_description": "PHP project capable of generating ATOM feeds for websites which don't have one.",
|
|
||||||
"rutorrent_manifest_arguments_install_data_dir": "Choose a folder to store the downloads",
|
|
||||||
"rutorrent_manifest_description": "Torrent client",
|
|
||||||
"scm_manifest_arguments_install_admin_passwd": "Choose a password for SCM-Manager administrator",
|
|
||||||
"scm_manifest_description": "The easiest way to share and manage your Git, Mercurial and Subversion repositories over http",
|
|
||||||
"scrumblr_manifest_description": "Software for notes",
|
|
||||||
"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_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 (3 - 15 letters or digits)",
|
|
||||||
"seafile_manifest_description": "Open Source Cloud Storage",
|
|
||||||
"searx_manifest_description": "A privacy-respecting, hackable metasearch engine",
|
|
||||||
"seenthis_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"seenthis_manifest_description": "Seenthis - Short-blogging destin\u00e9 \u00e0 la veille d\u2019actualit\u00e9.",
|
|
||||||
"shaarli_manifest_arguments_install_privateinstance": "Is this instance private?",
|
|
||||||
"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_description": "Web based AJAX terminal emulator",
|
|
||||||
"shout_manifest_description": "Web IRC client",
|
|
||||||
"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_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",
|
|
||||||
"sickrage_manifest_description": "Automatic TV shows downloader",
|
|
||||||
"sogo_manifest_description": "Sogo is an opensource groupware for E-Mail, Contacts and Calender.",
|
|
||||||
"sonerezh_manifest_arguments_install_email_auth": "Email address which will be used for authentication",
|
|
||||||
"sonerezh_manifest_arguments_install_url_path": "Path for Sonerezh",
|
|
||||||
"sonerezh_manifest_description": "Self-hosted, web-based application to stream music, everywhere.",
|
|
||||||
"spftoolbox_manifest_description": "Application to check Domain Name settings.",
|
|
||||||
"spip2_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"spip2_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"spip_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"spip_manifest_arguments_install_ldap": "LDAP Connection",
|
|
||||||
"spip_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_password": "OPTIONAL. It's better to use a public ssh key instead. See below.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_pub_key": "OPTIONAL. You can use a password instead, but a ssh public key is more secure. Ask to your beneficiary for his public key.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_size": "Default Ko, Use M, G or T to specified another unit.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_ssh_user": "It must be a new user, it will be created for this purpose.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_pub_key": "Give the public ssh key",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_size": "Choose the maximum space allowed to this user",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_ssh_user": "Choose an new user for this directory",
|
|
||||||
"ssh_chroot_dir_manifest_description": "ssh chroot directories with quotas disk.",
|
|
||||||
"staticwebapp_manifest_description": "Minimal web application for static files (vhost)",
|
|
||||||
"strut_manifest_arguments_install_public_site": "Could non member create presentations ?",
|
|
||||||
"strut_manifest_description": "Strut is a slide editor creating impress.js presentations.",
|
|
||||||
"subscribe_manifest_description": "Web page to allow a person to ask an account on the Yunohost instance",
|
|
||||||
"subsonic_manifest_description": "Subsonic is an open source, web-based media server.",
|
|
||||||
"svgedit_manifest_description": "SVG-edit is a fast, web-based, javascript-driven SVG drawing editor that works in any modern browser.",
|
|
||||||
"sympa_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"sympa_manifest_arguments_install_swap_ack": "This application needs 500 Mo of RAM. The install script will automatically add swap on the system. Swap is not good if it's on an SD card life, though. Do you agree with adding swap (required) ?",
|
|
||||||
"sympa_manifest_description": "Mailing List manager",
|
|
||||||
"synapse_manifest_description": "Instant messaging server who use matrix",
|
|
||||||
"syncthing_manifest_description": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.",
|
|
||||||
"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_description": "TagSpaces is an open source personal data manager. It helps you organize files with tags on every platform.",
|
|
||||||
"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_chatbot_manifest_arguments_install_token_github": "Token API Github",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_token_telegram": "Token Telegram",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_user_github": "Username Github",
|
|
||||||
"telegram_chatbot_manifest_description": "Telegram chatbot - mini chatbot for Telegram",
|
|
||||||
"telegram_manifest_description": "Telegram - a new era of messaging",
|
|
||||||
"testupgrade_manifest_arguments_install_help_path": "This will be the URL path of your application, not your file system path",
|
|
||||||
"testupgrade_manifest_arguments_install_test_translation_generation": "Some random string to see if this is included in en.json foobar",
|
|
||||||
"testupgrade_manifest_description": "Dummy app for testing upgrade. Development purpose.",
|
|
||||||
"thelounge_manifest_description": "The Lounge is a web IRC client.",
|
|
||||||
"timeoff_manifest_description": "Open source, simple yet powerful absence management software for small and medium size business.",
|
|
||||||
"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_description": "A Fast, Easy, and Free BitTorrent Client",
|
|
||||||
"transwhat_manifest_arguments_install_architecture": "What is the server architecture?",
|
|
||||||
"transwhat_manifest_description": "A getway to whatsapp from Jabber",
|
|
||||||
"ttrss_manifest_description": "A PHP and Ajax feed reader",
|
|
||||||
"turtl_manifest_description": "Turtl lets you take notes, bookmark websites, and store documents for sensitive projects. From sharing passwords with your coworkers to tracking research on an article you're writing, Turtl keeps it all safe from everyone but you and those you share with.",
|
|
||||||
"tyto_manifest_description": "tyto is an extensible and customizable management and organisation tool",
|
|
||||||
"ulogger_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"ulogger_manifest_description": "ulogger package for YunoHost.",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_key": "Bitbucket Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_secret": "Bitbucket Secret Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_github_key": "GitHub Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_github_scope": "GitHub Scope (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_github_secret": "GitHub Secret Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_key": "Openstreetmap Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_secret": "Openstreetmap Secret Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_twitter_key": "Twitter Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_twitter_secret": "Twitter Secret Key (Optional field)",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_after_apticron": "Would you like to receive an email to verify if there any upgrades left after each auto upgrade ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_help_unattended_verbosity": "1: Progress report only.<br>2: Progress report and command outputs.<br>3: Progress report and command outputs and trace.<br>",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_previous_apticron": "Would you like to receive an email to inform which upgrades need to be done ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_mail": "Would you like to receive an email from Unattended-Upgrades ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_verbosity": "Choose the level of verbosity of Unattended-Upgrades mail",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_upgrade_level": "Choose the sources of packages to automatically upgrade",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_ynh_update": "Would you like to update YunoHost packages automatically ?",
|
|
||||||
"unattended_upgrades_manifest_description": "Daily automatic upgrades",
|
|
||||||
"vpnclient_manifest_description": "VPN Client",
|
|
||||||
"wallabag2_manifest_description": "A self hostable read-it-later app",
|
|
||||||
"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_description": "Web App Multi Instances without FTP access",
|
|
||||||
"weblate_manifest_arguments_install_github_account": "Github's username",
|
|
||||||
"weblate_manifest_arguments_install_github_token": "Github's token (oauth)",
|
|
||||||
"weblate_manifest_description": "A translation platform using Git and Python",
|
|
||||||
"webmin_manifest_description": "Webmin",
|
|
||||||
"webogram_manifest_description": "Webogram - a new era of messaging",
|
|
||||||
"webtrees_manifest_arguments_install_email": "Admin email (All the new registration will be sent on this email)",
|
|
||||||
"webtrees_manifest_arguments_install_name": "Name of the user (Not a LDAP User)",
|
|
||||||
"webtrees_manifest_arguments_install_username": "Choose an admin username (Not a LDAP User)",
|
|
||||||
"webtrees_manifest_description": "Webtrees is a free open source web-based genealogy application.",
|
|
||||||
"wekan_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"wekan_manifest_description": "Trello-like kanban",
|
|
||||||
"wemawema_manifest_description": "WemaWema is a \"WE MAKE PORN\" meme generator but it can do more",
|
|
||||||
"wifiwithme_manifest_arguments_install_cnil_link": "Enter the url of your CNIL declaration",
|
|
||||||
"wifiwithme_manifest_arguments_install_cnil_number": "Enter the number of your CNIL declaration",
|
|
||||||
"wifiwithme_manifest_arguments_install_email": "Choose email were send notification",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_name": "Enter your ISP name",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_site": "Enter the address of your ISP website",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_zone": "Choose the zone inside of which you want create your wireless network",
|
|
||||||
"wifiwithme_manifest_arguments_install_latitude": "Enter the default latitude",
|
|
||||||
"wifiwithme_manifest_arguments_install_longitude": "Enter the default longitude",
|
|
||||||
"wifiwithme_manifest_arguments_install_url_contact": "Enter the address of your contact page",
|
|
||||||
"wifiwithme_manifest_arguments_install_zoom": "Choose the default zoom level",
|
|
||||||
"wifiwithme_manifest_description": "A form and a map to take a census of people who want create a radio network.",
|
|
||||||
"wildfly_manifest_description": "Wildfly package for YunoHost",
|
|
||||||
"wordpress_manifest_arguments_install_language": "Choose the language of the WordPress site",
|
|
||||||
"wordpress_manifest_arguments_install_multisite": "Enable multisite option ?",
|
|
||||||
"wordpress_manifest_description": "Create a beautiful blog or website easily",
|
|
||||||
"yacy_manifest_description": "Free and decentrelized search engine",
|
|
||||||
"yellowcms_manifest_description": "CMS for simple website",
|
|
||||||
"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_description": "An URL shortening service",
|
|
||||||
"youtube-dl-webui_manifest_arguments_install_download_folder": "Choose a folder where video and music will be downloaded",
|
|
||||||
"youtube-dl-webui_manifest_description": "Web interface for youtube-dl",
|
|
||||||
"yunofav_manifest_description": "A page of favorite links for Yunohost",
|
|
||||||
"yunohost_manifest_description": "Get Yunohost in Yunohost, crazy :)",
|
|
||||||
"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_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data",
|
|
||||||
"zeronet_manifest_description": "Decentralized websites using Bitcoin crypto and BitTorrent network",
|
|
||||||
"zomburl_manifest_description": "An URL shortening service"
|
|
||||||
}
|
|
592
locales/es.json
592
locales/es.json
|
@ -1,592 +0,0 @@
|
||||||
{
|
|
||||||
"20euros_manifest_description": "2048 - 20euros",
|
|
||||||
"243_manifest_description": "Clon del juego 2049",
|
|
||||||
"LBCAlerte_manifest_description": "Paquete LBCAlerte para YunoHost.",
|
|
||||||
"Remotestorage_manifest_description": "Esto es una implementacion de servidor remoteStorage escrito en PHP.",
|
|
||||||
"abantecart_manifest_arguments_install_admin_email": "Tu dirección de email.",
|
|
||||||
"abantecart_manifest_arguments_install_admin_name": "Elija el administrador de Abantecart (debe ser un usuario de YunoHost existente)",
|
|
||||||
"abantecart_manifest_arguments_install_admin_pass": "Establecer la contraseña para el usuario administrador \u2265 5 caracteres (sin caracteres especiales)",
|
|
||||||
"abantecart_manifest_description": "Crear un sitio web de comercio electrónico ",
|
|
||||||
"adhocserver_manifest_description": "Un servidor adhoc para el sony PSP",
|
|
||||||
"adminer_manifest_arguments_install_root_access": "¿Permitir acceso de root?(por seguridad está deshabilitado por defecto)",
|
|
||||||
"adminer_manifest_description": "Gestión de bases de datos en un solo archivo PHP",
|
|
||||||
"agendav_manifest_arguments_install_language": "Lenguaje usado defecto en AgenDAV",
|
|
||||||
"agendav_manifest_description": "Cliente web CalDAV",
|
|
||||||
"ajaxgoogleapis_manifest_arguments_install_public_site": "¿Podría un miembro no tener acceso a este espejo?",
|
|
||||||
"ajaxgoogleapis_manifest_description": "Estas aplicaciones crean un espejo de ajax.googleapis.com",
|
|
||||||
"ampache_manifest_description": "Una aplicación de transmisión de audio y video basada en la web",
|
|
||||||
"archivist_manifest_arguments_install_apps_backup": "¿Desea hacer una copia de seguridad de la configuración de apps ?",
|
|
||||||
"archivist_manifest_arguments_install_core_backup": "¿Desea hacer una copia de seguridad de la configuración de YunoHost core ?",
|
|
||||||
"archivist_manifest_arguments_install_encrypt": "¿Desea cifrar sus copias de seguridad?",
|
|
||||||
"archivist_manifest_arguments_install_encryption_pwd": "Establezca la contraseña para el cifrado.",
|
|
||||||
"archivist_manifest_arguments_install_frequency": "Elija la frecuencia de sus copias de seguridad",
|
|
||||||
"archivist_manifest_arguments_install_help_encryption_pwd": "Es necesario si usa cifrado de respaldo.",
|
|
||||||
"archivist_manifest_description": "Copias de seguridad automáticas.",
|
|
||||||
"askbot_manifest_description": "Askbot es un software de preguntas y respuestas (Q&A)",
|
|
||||||
"baikal_manifest_description": "Servidor ligero CalDAV + CardDAV",
|
|
||||||
"bicbucstriim_manifest_arguments_install_login": "¿Deshabilitar inicio de sesión BicBucStriim?",
|
|
||||||
"bicbucstriim_manifest_description": "BicBucStriim transmite libros digitales, proporcionando acceso basado en la web a su colección de libros electrónicos",
|
|
||||||
"bolt_manifest_arguments_install_public_site": "Esto es un sitio publico de Bolt site?",
|
|
||||||
"bolt_manifest_description": "Bolt es una herramienta de gestión de contenido de código abierto, que se esfuerza por ser lo más simple y directo posible.",
|
|
||||||
"borg_manifest_arguments_install_apps": "¿Qué aplicaciones respaldarías (lista separada por comas o 'todas')?",
|
|
||||||
"borg_manifest_arguments_install_conf": "¿Desea hacer una copia de seguridad de la configuración YunoHost ?",
|
|
||||||
"borg_manifest_arguments_install_data": "¿Desea hacer una copia de seguridad de la configuración de mails y el directorio de inicio de usuario ?",
|
|
||||||
"borg_manifest_arguments_install_on_calendar": "Indique la frecuencia de respaldo (vea el formato systemd OnCalendar)",
|
|
||||||
"borg_manifest_arguments_install_passphrase": "Indique una frase de contraseña fuerte, que mantendrá a salvo si desea poder usar sus copias de seguridad",
|
|
||||||
"borg_manifest_arguments_install_server": "Indique el servidor donde desea colocar sus copias de seguridad",
|
|
||||||
"borg_manifest_arguments_install_ssh_user": "Indique el usuario ssh que usará para conectarse en este servidor",
|
|
||||||
"borg_manifest_description": "Copia de seguridad de su servidor con borg.",
|
|
||||||
"borgserver_manifest_arguments_install_public_key": "Indique la clave pública dada por la aplicación borg_ynh",
|
|
||||||
"borgserver_manifest_arguments_install_quota": "Indicar la cuota de almacenamiento",
|
|
||||||
"borgserver_manifest_arguments_install_ssh_user": "Indique el usuario ssh para crear",
|
|
||||||
"borgserver_manifest_description": "Ofrecer almacenamiento de respaldo a un amigo.",
|
|
||||||
"bozon_manifest_arguments_install_backup_core_only": "En un caso de copia de seguridad, ¿debería hacer una copia de seguridad del núcleo de la aplicación? (sus datos cargados en BoZoN como videos, imágenes, documentos, etc. no serán respaldados)",
|
|
||||||
"bozon_manifest_arguments_install_filesize": "Definir el límite de tamaño de carga de archivos",
|
|
||||||
"bozon_manifest_arguments_install_language": "Idioma (si no se detecta el idioma del navegador)",
|
|
||||||
"bozon_manifest_description": "Aplicación minimalista para compartir archivos de arrastrar y soltar",
|
|
||||||
"btsync_manifest_arguments_install_platform": "Elija la plataforma BitTorrentSync",
|
|
||||||
"btsync_manifest_description": "BitTorrentSync: sincronice sus archivos usando bittorrent",
|
|
||||||
"cachet_manifest_arguments_install_admin_password": "Establecer la contraseña para el usuario administrador",
|
|
||||||
"cachet_manifest_arguments_install_language": "Elige el idioma de la aplicación",
|
|
||||||
"cachet_manifest_description": "Página de estado de código abierto",
|
|
||||||
"cesium_manifest_description": "Cliente Duniter para gestionar billeteras, certificaciones en dinero libre.",
|
|
||||||
"cheky_manifest_description": "Paquete Cheky para YunoHost.",
|
|
||||||
"chtickynotes_manifest_description": "Generic sticky notes for all purpose",
|
|
||||||
"coin_manifest_arguments_install_email": "Elija el correo electrónico enviar la notificación",
|
|
||||||
"coin_manifest_arguments_install_isp_name": "Ingrese su nombre de ISP",
|
|
||||||
"coin_manifest_arguments_install_isp_site": "Ingrese la dirección del sitio web de su ISP",
|
|
||||||
"coin_manifest_description": "Panel de miembros para ISP sin fines de lucro.",
|
|
||||||
"collabora_manifest_arguments_install_nextclouddomain": "El dominio de su instancia de Nextcloud",
|
|
||||||
"collabora_manifest_description": "Paquete online de Collabora para YunoHost.",
|
|
||||||
"collaboradocker_manifest_description": "Collabora Online es una potente suite ofimática en línea basada en LibreOffice",
|
|
||||||
"concrete5_manifest_arguments_install_admin_name": "Elija el administrador de Concrete5 (debe ser un usuario existente de YunoHost)",
|
|
||||||
"concrete5_manifest_arguments_install_admin_pass": "Establecer la contraseña para el usuario administrador \u2265 5 character",
|
|
||||||
"concrete5_manifest_arguments_install_language": "Lenguaje usado defecto en tu pagina web de administración",
|
|
||||||
"concrete5_manifest_description": "Crea un sitio web moderno",
|
|
||||||
"cops_manifest_arguments_install_basicauthcreate": "¿Crear un acceso de autenticación básico (solo se tiene en cuenta para una aplicación pública)? Esto es necesario si la aplicación es pública para que los lectores puedan acceder al servidor OPDS, por ejemplo",
|
|
||||||
"cops_manifest_arguments_install_basicauthname": "Elija el nombre de inicio de sesión para acceder al servidor OPDS / HTML (SIN RELACIÓN para los usuarios de YunoHost)",
|
|
||||||
"cops_manifest_arguments_install_basicauthpass": "Elija la contraseña para acceder al servidor OPDS / HTML",
|
|
||||||
"cops_manifest_arguments_install_calibre": "Indique la ubicación de la biblioteca Calibre. ¡NO lo almacene en su carpeta /var/www/cops o se eliminará en la próxima actualización!",
|
|
||||||
"cops_manifest_description": "Servidor PHP calibre OPDS (y HTML)",
|
|
||||||
"couchpotato_manifest_arguments_install_fork": "LOCAL: URL de origen de GIT para usar",
|
|
||||||
"couchpotato_manifest_arguments_install_host": "REMOTO: especifique la URL para el host",
|
|
||||||
"couchpotato_manifest_arguments_install_method": "Elija el método de instalación",
|
|
||||||
"couchpotato_manifest_arguments_install_port": "LOCAL: Elija el puerto de escucha de la aplicación",
|
|
||||||
"couchpotato_manifest_arguments_install_public": "Esto es un sitio publico de application ?",
|
|
||||||
"couchpotato_manifest_arguments_remove_data": "¿Te gustaría conservar los archivos de datos?",
|
|
||||||
"couchpotato_manifest_description": "Descargador automático de películas",
|
|
||||||
"cryptpad_manifest_description": "Pad Encriptado",
|
|
||||||
"cubiks2048_manifest_description": "2048 game clone in 3D",
|
|
||||||
"democracyos_manifest_description": "Aplicación para hacer posible la toma de decisiones.",
|
|
||||||
"diaspora_manifest_arguments_install_site_public": "Esto es un sitio publico de Diaspora site?",
|
|
||||||
"diaspora_manifest_description": "Servicio distribuido de redes sociales",
|
|
||||||
"diasporadocker_manifest_description": "Una red social abierta y poderosa",
|
|
||||||
"docker-registry_manifest_description": "Registro de Docker para yunohost",
|
|
||||||
"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_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_description": "Docker allows to deploy applications which have not yet been integrated with YunoHost",
|
|
||||||
"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_member": "Should YunoHost users also be added as members awaiting approval in 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_description": "Blog publishing application",
|
|
||||||
"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.",
|
|
||||||
"dynette_manifest_arguments_install_subdomains": "Choose subdomains managed by Dynette",
|
|
||||||
"dynette_manifest_description": "Dynette is a dyndns server",
|
|
||||||
"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_expire": "Deletes a spreadsheet's content after N days of inactivity. (0 to diasable this feature)",
|
|
||||||
"ethercalc_manifest_arguments_install_public_site": "Esto es un sitio publico de EtherCalc ?",
|
|
||||||
"ethercalc_manifest_description": "Editor de hojas de cálculo web en línea que proporciona edición colaborativa en tiempo real",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_abiword": "¿Usar abiword (~ 260Mo) para ampliar las posibilidades de exportación (pdf, doc)? ",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_export": "¿Usar abiword (~ 260Mo) o libreoffice (~ 400Mo) (más estable) para ampliar las posibilidades de exportación (pdf, doc)?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_mypads": "<a href=https://git.framasoft.org/framasoft/ep_mypads target=_blank>mypads plugin</a>",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_path": "Si elige instalar el complemento mypads, etherpad debe estar activado /",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_useldap": "El uso de ldap no le permitirá agregar nuevos usuarios aparte de los usuarios de YunoHost.",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_language": "Selecciones su idio,a",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_mypads": "Do you want to install mypads plugin ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_useldap": "Do you want to use ldap with mypads ?",
|
|
||||||
"etherpad_mypads_manifest_description": "Framapad clone, a online editor providing collaborative editing in real-time.",
|
|
||||||
"etherpadlite_manifest_arguments_install_public_site": "Esto es un sitio publico de Etherpad ?",
|
|
||||||
"etherpadlite_manifest_description": "online editor providing collaborative editing in really real-time",
|
|
||||||
"facette_manifest_description": "Facette package for YunoHost.",
|
|
||||||
"fallback_manifest_arguments_install_auto_deploy": "[fallback server only] Deploy automatically the fallback in case of failure.",
|
|
||||||
"fallback_manifest_arguments_install_auto_detect_failure": "[fallback server only] Auto detect a failure of the main server ?",
|
|
||||||
"fallback_manifest_arguments_install_contact_mail": "[fallback server only] Email address to contact in case of failure.",
|
|
||||||
"fallback_manifest_arguments_install_delay_before_incident": "[fallback server only] Delay before declaring an incident with the main server.",
|
|
||||||
"fallback_manifest_arguments_install_encrypt": "[main server only] Do you want to encrypt your backups ?",
|
|
||||||
"fallback_manifest_arguments_install_encryption_pwd": "[main server only] Set the password for encryption.",
|
|
||||||
"fallback_manifest_arguments_install_help_auto_deploy": "Only for failure auto detection.",
|
|
||||||
"fallback_manifest_arguments_install_help_contact_mail": "Only for failure auto detection.<br>Should be obviously an address on another server !",
|
|
||||||
"fallback_manifest_arguments_install_help_delay_before_incident": "Only for failure auto detection.",
|
|
||||||
"fallback_manifest_arguments_install_help_encrypt": "You should desactive the encryption only if your fallback server is really safe.",
|
|
||||||
"fallback_manifest_arguments_install_help_encryption_pwd": "It's needed if you not turn off the encryption.",
|
|
||||||
"fallback_manifest_arguments_install_help_install_type": "Choose 'main server' if you make an installation on your real server. Or 'fallback server' if it's your backup server.",
|
|
||||||
"fallback_manifest_arguments_install_help_pub_key": "The public key will be given at the end of the install process for the main server.",
|
|
||||||
"fallback_manifest_arguments_install_help_ssh_host": "This server has to be up, for the ssh-keyscan command.",
|
|
||||||
"fallback_manifest_arguments_install_install_type": "Choose which kind of installation you want.",
|
|
||||||
"fallback_manifest_arguments_install_pub_key": "[fallback server only] Put here the public ssh key.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_host": "[main server only] Set the domain name (or ip adress) for the fallback server.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_port": "[main server only] Set the port for the ssh connection.",
|
|
||||||
"fallback_manifest_description": "Fallback server for YunoHost.",
|
|
||||||
"ffsync_manifest_description": "Mozilla\u2019s Sync-Server to host your Firefox account data",
|
|
||||||
"filebin_manifest_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data - File Edition",
|
|
||||||
"firefly-iii_manifest_description": "Firefly III package for YunoHost.",
|
|
||||||
"firefly3_manifest_description": "Firefly3 package for YunoHost.",
|
|
||||||
"flarum_manifest_arguments_install_adminpass": "Put your password",
|
|
||||||
"flarum_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"flarum_manifest_arguments_install_title": "Choose a title for your forum (required for automatic post-installation)",
|
|
||||||
"flarum_manifest_description": "Flarum (open-source forum software) package for YunoHost.",
|
|
||||||
"flask_manifest_arguments_install_display_name": "Display name (used in SSO portal)",
|
|
||||||
"flask_manifest_arguments_install_help_system_name": "(only lowercases, alphanumeric characters, no spaces)",
|
|
||||||
"flask_manifest_arguments_install_system_name": "Short name used by the system to identify your app",
|
|
||||||
"flask_manifest_description": "Flask app tmplate.",
|
|
||||||
"fluxbb_manifest_description": "Example package for YunoHost application.",
|
|
||||||
"framaestro_hub_manifest_description": "Online service aggregator hub: allows you to have a real-time collaborative framaestro app (you need to install framaestro first).",
|
|
||||||
"framaestro_manifest_description": "Online service aggregator. If you want have a real-time collaborative framaestro, install framaestro_hub (work in progress)",
|
|
||||||
"framaforms_manifest_description": "Framaforms helps you create online webforms and surveys",
|
|
||||||
"framagames_manifest_description": "Set of games Framagames from Framasoft",
|
|
||||||
"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_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_description": "FreshRSS is a selfhostable RSS reader",
|
|
||||||
"friendica_manifest_arguments_install_public_site": "Esto es un sitio publico de Friendica site ?",
|
|
||||||
"friendica_manifest_description": "Social Communication Server",
|
|
||||||
"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",
|
|
||||||
"funkwhale_manifest_description": "A modern, convivial and free music server",
|
|
||||||
"galette_manifest_arguments_install_adminPass": "Admin password",
|
|
||||||
"galette_manifest_description": "Membership management web application for non profit organizations",
|
|
||||||
"gateone_manifest_description": "HTML5-powered terminal emulator and SSH client",
|
|
||||||
"ghostblog_manifest_description": "Just a blogging platform",
|
|
||||||
"git-repositories_manifest_description": "",
|
|
||||||
"gitea_manifest_description": "Lightweight git forge",
|
|
||||||
"gitlab-runner_manifest_arguments_install_instance": "GitLab instance URL",
|
|
||||||
"gitlab-runner_manifest_arguments_install_token": "Enter the GitLab-CI runner token for this runner",
|
|
||||||
"gitlab-runner_manifest_description": "Run GitLab-CI jobs on your own server",
|
|
||||||
"gitlab_manifest_description": "Gitlab for Yunohost.",
|
|
||||||
"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_public_site": "Should this application be public ?",
|
|
||||||
"gitweb_manifest_description": "Web interface to see gitolite repositories",
|
|
||||||
"glowingbear_manifest_description": "A web client for WeeChat.",
|
|
||||||
"glpi_manifest_arguments_install_language": "Choose the language of the GLPI site",
|
|
||||||
"glpi_manifest_description": "Create a beautiful blog or website easily",
|
|
||||||
"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_public_site": "Esto es un sitio publico de site ?",
|
|
||||||
"gogs_manifest_description": "Lightweight git forge",
|
|
||||||
"grafana_manifest_arguments_install_port": "Choose a port for your server. Let as default if you don't want to change it",
|
|
||||||
"grafana_manifest_description": "Beautiful metric & analytic dashboards for monitoring",
|
|
||||||
"grav_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"grav_manifest_arguments_install_multisite": "Enable multisite option ?",
|
|
||||||
"grav_manifest_description": "Grav - Grav is a modern open source flat-file CMS",
|
|
||||||
"haste_manifest_description": "Haste is an open-source pastebin software written in node.js",
|
|
||||||
"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_port": "LOCAL: Choose the listening port of the app",
|
|
||||||
"headphones_manifest_arguments_install_public": "Esto es un sitio publico de application ?",
|
|
||||||
"headphones_manifest_arguments_remove_data": "Would you like to keep data files ?",
|
|
||||||
"headphones_manifest_description": "Automatic music downloader",
|
|
||||||
"hextris_manifest_description": "A fast paced puzzle game.",
|
|
||||||
"horde_manifest_arguments_install_ansel_install": "Install a full featured photo management (Ansel) ?",
|
|
||||||
"horde_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"horde_manifest_arguments_install_service_autodiscovery": "Would you like to enable the caldDav/cardDAV service autodiscovery ?",
|
|
||||||
"horde_manifest_arguments_install_sesha_install": "Install a Inventory Manager (Sesha) ?",
|
|
||||||
"horde_manifest_arguments_install_whups_install": "Install a ticket-tracking system (Whups) ?",
|
|
||||||
"horde_manifest_arguments_install_wicked_install": "Install a Wiki (Wicked) ?",
|
|
||||||
"horde_manifest_description": "A groupware (webmail, adressbook, calendar) witch use PHP",
|
|
||||||
"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_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_description": "An easy HTML toolset",
|
|
||||||
"htpc-manager_manifest_description": "Manage your HTPC from anywhere",
|
|
||||||
"hubzilla_manifest_arguments_install_adminemail": "Email address for the Hubzilla hub admin",
|
|
||||||
"hubzilla_manifest_arguments_install_email": "Email address for the Hubzilla hub admin",
|
|
||||||
"hubzilla_manifest_arguments_install_run_exec": "Do you agree to modify php.ini to allow exec() function to be used by hubzilla ?",
|
|
||||||
"hubzilla_manifest_arguments_install_upload": "Maximum upload size (MB)",
|
|
||||||
"hubzilla_manifest_description": "Hubzilla is a decentralized publication platform and social network.",
|
|
||||||
"huginn_manifest_arguments_install_invitation": "Choose an invitation code for new users",
|
|
||||||
"huginn_manifest_description": " Build agents that monitor and act on your behalf. Your agents are standing by!",
|
|
||||||
"humhub_manifest_description": "Enterprise Social Network.",
|
|
||||||
"ihatemoney_manifest_description": "A simple shared budget manager web application",
|
|
||||||
"jappix_manifest_arguments_install_language": "Choose the default language of Jappix",
|
|
||||||
"jappix_manifest_arguments_install_name": "Choose a name for Jappix",
|
|
||||||
"jappix_manifest_description": "A free social network",
|
|
||||||
"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_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_sudo": "Do you agree giving sudo rights to the Jeedom user? This is required for most Jeedom features to work. However, attackers could use vulnerabilities in Jeedom to take control of your server.",
|
|
||||||
"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_description": "Extendable continuous integration server",
|
|
||||||
"jirafeau_manifest_arguments_install_admin_user": "Elige un usuario administrador (will be able to access admin.php page)",
|
|
||||||
"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_description": "Video conferencing web application",
|
|
||||||
"joomla_manifest_arguments_install_email": "Admin email",
|
|
||||||
"joomla_manifest_arguments_install_username": "Admin unsername",
|
|
||||||
"joomla_manifest_description": "Joomla! is an award-winning content management system.",
|
|
||||||
"kanboard_manifest_description": "Kanboard is a simple visual task board web application",
|
|
||||||
"keeweb_manifest_description": "Password manager compatible with KeePass.",
|
|
||||||
"kiwiirc_manifest_arguments_install_public_site": "Esto es un sitio publico de KiwiIRC site ?",
|
|
||||||
"kiwiirc_manifest_description": "Web IRC client",
|
|
||||||
"kodi_manifest_arguments_install_launch_on_boot": "Launch Kodi at YunoHost server startup",
|
|
||||||
"kodi_manifest_arguments_install_open_webserver_port": "Open port 8080 in order to use a smartphone Kodi remote app on your local network",
|
|
||||||
"kodi_manifest_description": "Transform your YunoHost server into media center with Kodi",
|
|
||||||
"kresus_manifest_description": "Kresus is a personal finance manager.",
|
|
||||||
"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_language": "Choose your agregator's language",
|
|
||||||
"leed_manifest_arguments_install_market": "Do you want to activate the Leed Market?",
|
|
||||||
"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": "Elige un usuario administrador (the one who will be able to access the admin interface)",
|
|
||||||
"lektor_manifest_arguments_install_name": "Choose a name for your website",
|
|
||||||
"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.",
|
|
||||||
"libresonic_manifest_description": "Libresonic is an open source, web-based media server.",
|
|
||||||
"limesurvey_manifest_arguments_install_language": "Choose the default language of this LimeSurvey",
|
|
||||||
"limesurvey_manifest_description": "LimeSurvey is used to create advanced poll.",
|
|
||||||
"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.",
|
|
||||||
"lstu_manifest_description": "URL Shortener",
|
|
||||||
"lufi_manifest_description": "Self hosting files and sharing anonymous application",
|
|
||||||
"lutim_manifest_arguments_install_always_encrypt": "Force the encryption of images?",
|
|
||||||
"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_description": "Self-hosted photo-management done right",
|
|
||||||
"mailman_manifest_arguments_install_adminPass": "Choose a mailman administration password",
|
|
||||||
"mailman_manifest_arguments_install_admin_password": "Choose a mailman administration password",
|
|
||||||
"mailman_manifest_arguments_install_help_admin_password": "It will be needed to create and administrate lists. Be careful though : this password will be stored in clear on the disk :/ ...",
|
|
||||||
"mailman_manifest_arguments_install_help_domain": "This will be the domain on which mailing lists will run",
|
|
||||||
"mailman_manifest_arguments_install_help_path": "The web interface for mailman will be accessible at the.domain.tld/path",
|
|
||||||
"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_description": "Free software for managing electronic mail discussion and e-newsletter lists.",
|
|
||||||
"mastodon_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"mastodon_manifest_arguments_install_passwd": "Enter password of this administrator \u2265 8 character",
|
|
||||||
"mastodon_manifest_description": "Mastodon is a free, open-source social network.",
|
|
||||||
"mattermost_manifest_arguments_install_admin_email": "Login email for the chat admin",
|
|
||||||
"mattermost_manifest_arguments_install_admin_locale": "Choose the language of the chat for the admin",
|
|
||||||
"mattermost_manifest_arguments_install_admin_password": "Password for the chat admin",
|
|
||||||
"mattermost_manifest_arguments_install_analytics": "Allow Mattermost to send some telemetrics about your usage of this app?",
|
|
||||||
"mattermost_manifest_arguments_install_public_site": "Can guest users access this chat?",
|
|
||||||
"mattermost_manifest_arguments_install_team_display_name": "Choose a Team name",
|
|
||||||
"mattermost_manifest_description": "An open-source, self-hosted alternative to Slack",
|
|
||||||
"mediadrop_manifest_description": "Mediadrop - The Web\u2019s Open Source Video Platform",
|
|
||||||
"mediagoblin_manifest_arguments_install_public": "Esto es un sitio publico de site?",
|
|
||||||
"mediagoblin_manifest_description": "A free software media publishing platform",
|
|
||||||
"mediawiki_manifest_arguments_install_language": "Choose the language",
|
|
||||||
"mediawiki_manifest_arguments_install_wikiname": "Choose a name for the wiki",
|
|
||||||
"mediawiki_manifest_description": "Open Source Wiki software",
|
|
||||||
"menu_manifest_description": "Display a public/private menu on all pages generated by YunoHost",
|
|
||||||
"minchat_manifest_arguments_install_ispublic": "Taper Y si le site est public",
|
|
||||||
"minchat_manifest_description": "A minimalist web chat",
|
|
||||||
"minetest_manifest_arguments_install_creative": "Whether to enable creative mode (unlimited inventory)",
|
|
||||||
"minetest_manifest_arguments_install_damage": "Enable players getting damage and dying",
|
|
||||||
"minetest_manifest_arguments_install_pvp": "Whether to enable players killing each other",
|
|
||||||
"minetest_manifest_description": "Minetest is a free, open source voxel game engine and game. Fully extendable. Need a client to connect to the server.",
|
|
||||||
"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_description": "Minimal RSS reader.",
|
|
||||||
"modernpaste_manifest_description": "A modern, feature-rich Pastebin alternative",
|
|
||||||
"monica_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"monica_manifest_description": " Personal Relationship Manager - a new kind of CRM to organize interactions with your friends and family.",
|
|
||||||
"monit_manifest_description": "Monitoring of processes, files, directories, filesystems and hosts",
|
|
||||||
"monitorix_manifest_description": "A monitoring tools",
|
|
||||||
"moodle_manifest_description": "Moodle package for YunoHost application.",
|
|
||||||
"mopidy_manifest_arguments_install_admin_mopidy": "Choose the Mopidy administrator (must be an existing YunoHost user)",
|
|
||||||
"mopidy_manifest_arguments_install_soundcloud_id": "Soundcloud ID (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id": "Client ID Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id_secret": "Client secret ID Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_pass": "Password Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_user": "User Spotify (Optional field)",
|
|
||||||
"mopidy_manifest_description": "Mopidy - is an extensible music server written in Python.",
|
|
||||||
"movim_manifest_arguments_install_language": "Pod language",
|
|
||||||
"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_sql": "Create a database?",
|
|
||||||
"multi_webapp_manifest_description": "Empty App without FTP access",
|
|
||||||
"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_description": "Mumble-server web interface",
|
|
||||||
"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 a libre, low-latency, high quality voice chat software primarily intended for use while gaming.",
|
|
||||||
"munin_manifest_description": "Outil de supervision de ressources",
|
|
||||||
"my-mind_manifest_description": "Online Mindmapping Software",
|
|
||||||
"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_description": "Encrypted IM",
|
|
||||||
"mytinytodo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"mytinytodo_manifest_description": "Simple open source to-do list script.",
|
|
||||||
"netdata_manifest_description": "real-time performance and health monitoring",
|
|
||||||
"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",
|
|
||||||
"nexusoss_manifest_arguments_install_lang": "Select default language",
|
|
||||||
"nexusoss_manifest_description": "sonatype nexus repository manager OSS",
|
|
||||||
"noalyss_manifest_description": "Accounting free software (Beligum and French accounting)",
|
|
||||||
"nodebb_manifest_arguments_install_admin_name": "Choose the Abantecart administrator (must be an existing YunoHost user)",
|
|
||||||
"nodebb_manifest_description": "Nodejs Forum",
|
|
||||||
"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_lang": "Choose a language for Odoo",
|
|
||||||
"odoo_manifest_arguments_install_oca": "Use OCA repository to get community bugfixes ?",
|
|
||||||
"odoo_manifest_arguments_install_odoo_version": "Which version of Odoo do you want to install?",
|
|
||||||
"odoo_manifest_arguments_install_tz": "Choose a time zone for Odoo",
|
|
||||||
"odoo_manifest_arguments_install_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_description": "Apache-OFBiz ERP",
|
|
||||||
"openidsimplesamlphp_manifest_description": "OpenID provider based on SimpleSAMLphp",
|
|
||||||
"opennote_manifest_description": "OpenNote was built to be an open web-based alternative to Microsoft OneNote (T) and EverNote.",
|
|
||||||
"opensondage_manifest_arguments_install_language": "Choose the default language of this 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_description": "Your Secure and Private Tunnel to the Internet",
|
|
||||||
"openwrt_manifest_arguments_install_server": "Choose IP where OpenWRT is installed",
|
|
||||||
"openwrt_manifest_description": "Access to OpenWRT",
|
|
||||||
"ore_manifest_arguments_install_email": "Provide an email to send DATABASE settings[Database password will be sent on this email.So be CAREFUL]",
|
|
||||||
"ore_manifest_description": "Open Real Estate package for YunoHost.",
|
|
||||||
"osjs_manifest_description": "Desktop you have accesss through your browser",
|
|
||||||
"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!",
|
|
||||||
"owntracks_manifest_description": "Owntracks (location history) package for YunoHost.",
|
|
||||||
"pagure_manifest_description": "A translation platform using Git and Python",
|
|
||||||
"peertube_manifest_arguments_install_email": "Choose an admin email (can be changed after installation)",
|
|
||||||
"peertube_manifest_description": "Video streaming platform using P2P directly in the web browser, connected to a federated network",
|
|
||||||
"pelican_manifest_arguments_install_author": "Choose an author",
|
|
||||||
"pelican_manifest_arguments_install_title": "Choose a default title for your website",
|
|
||||||
"pelican_manifest_description": "Pelican Static Site Generator",
|
|
||||||
"pgadmin_manifest_arguments_install_admin_password": "Enter a password for the administrator",
|
|
||||||
"pgadmin_manifest_description": "Manage PostgreSQL databases over the web",
|
|
||||||
"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_lang": "Configure phpBB's language",
|
|
||||||
"phpBB_manifest_description": "#1 free, opensource bulletin board software",
|
|
||||||
"phpldapadmin_manifest_description": "Manage OpenLDAP database over the web",
|
|
||||||
"phpmyadmin_manifest_description": "Manage MySQL databases over the web",
|
|
||||||
"phpsysinfo_manifest_arguments_install_display_mode": "Display Mode?",
|
|
||||||
"phpsysinfo_manifest_arguments_install_language": "Default Language?",
|
|
||||||
"phpsysinfo_manifest_description": "A customizable PHP script that displays information about your system nicely.",
|
|
||||||
"pihole_manifest_arguments_install_enable_dhcp": "Do you want to set Pi-hole as your DHCP server ?",
|
|
||||||
"pihole_manifest_arguments_install_help_enable_dhcp": "If you want to do that, <a href=https://github.com/YunoHost-Apps/pihole_ynh/blob/master/dhcp.md target=_blank>you really have to read this before</a> !",
|
|
||||||
"pihole_manifest_arguments_install_help_query_logging": "Keeping this option deactivate will render graphs on the admin page useless. But will respect the privacy of the other users.",
|
|
||||||
"pihole_manifest_arguments_install_query_logging": "Do you want to log queries ?",
|
|
||||||
"pihole_manifest_description": "Network-wide ad blocking via your own DNS server.",
|
|
||||||
"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_description": "PirateBox",
|
|
||||||
"piwigo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"piwigo_manifest_description": "photo gallery",
|
|
||||||
"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_description": "Measurement Software web statistics to analyze traffic to your sites.",
|
|
||||||
"pixelfed_manifest_description": "Federated Image Sharing",
|
|
||||||
"plexmediaserver_manifest_description": "Media server",
|
|
||||||
"plonecms_manifest_arguments_install_admin_name": "Choose the PLone administrator (must be an existing YunoHost user)",
|
|
||||||
"plonecms_manifest_arguments_install_admin_pass": "Establecer la contraseña para el usuario administrador \u2265 5 character",
|
|
||||||
"plonecms_manifest_description": "Create a modern Website with a CMS written in python",
|
|
||||||
"pluxml_manifest_arguments_install_default_lang": "Default language",
|
|
||||||
"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.",
|
|
||||||
"portainer_manifest_description": "A web interface for the Docker engine management",
|
|
||||||
"prestashop_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"prestashop_manifest_arguments_install_passwd": "Establecer la contraseña para el usuario administrador \u2265 5 character",
|
|
||||||
"prestashop_manifest_description": "Create a E-commerce Website",
|
|
||||||
"proftpd_manifest_description": "",
|
|
||||||
"pydio_manifest_description": "File sharing platform",
|
|
||||||
"radicale_manifest_arguments_install_infcloud": "Install InfCloud web interface?",
|
|
||||||
"radicale_manifest_arguments_install_language": "Choose your interface language",
|
|
||||||
"radicale_manifest_description": "CalDAV (calendar) and CardDAV (contact) synchronization server",
|
|
||||||
"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_description": "Lightweight multi-account webmail",
|
|
||||||
"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_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": "Establecer la contraseña para el usuario administrador \u2265 5 character",
|
|
||||||
"roadiz_manifest_description": "Create a modern Website",
|
|
||||||
"rocketchat_manifest_arguments_install_lang": "Select default language",
|
|
||||||
"rocketchat_manifest_description": "the ultimate chat platform",
|
|
||||||
"roundcube_manifest_arguments_install_with_carddav": "Install CardDAV synchronization plugin?",
|
|
||||||
"roundcube_manifest_arguments_install_with_enigma": "Install Enigma messages encryption plugin?",
|
|
||||||
"roundcube_manifest_description": "Open Source Webmail software",
|
|
||||||
"rss-bridge_manifest_description": "PHP project capable of generating ATOM feeds for websites which don't have one.",
|
|
||||||
"rutorrent_manifest_arguments_install_data_dir": "Choose a folder to store the downloads",
|
|
||||||
"rutorrent_manifest_description": "Torrent client",
|
|
||||||
"scm_manifest_arguments_install_admin_passwd": "Choose a password for SCM-Manager administrator",
|
|
||||||
"scm_manifest_description": "The easiest way to share and manage your Git, Mercurial and Subversion repositories over http",
|
|
||||||
"scrumblr_manifest_description": "Software for notes",
|
|
||||||
"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_public_site": "Esto es un sitio publico de 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 (3 - 15 letters or digits)",
|
|
||||||
"seafile_manifest_description": "Open Source Cloud Storage",
|
|
||||||
"searx_manifest_description": "A privacy-respecting, hackable metasearch engine",
|
|
||||||
"seenthis_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"seenthis_manifest_description": "Seenthis - Short-blogging destin\u00e9 \u00e0 la veille d\u2019actualit\u00e9.",
|
|
||||||
"shaarli_manifest_arguments_install_privateinstance": "Is this instance private?",
|
|
||||||
"shaarli_manifest_arguments_install_privatelinkbydefault": "Are new links private by default ?",
|
|
||||||
"shaarli_manifest_arguments_install_public": "Esto es un sitio publico de 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_description": "Web based AJAX terminal emulator",
|
|
||||||
"shout_manifest_description": "Web IRC client",
|
|
||||||
"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_port": "LOCAL: Choose the listening port of the app",
|
|
||||||
"sickbeard_manifest_arguments_install_public": "Esto es un sitio publico de application ?",
|
|
||||||
"sickbeard_manifest_arguments_remove_data": "Would you like to keep data files ?",
|
|
||||||
"sickbeard_manifest_description": "Automatic TV show downloader",
|
|
||||||
"sickrage_manifest_description": "Automatic TV shows downloader",
|
|
||||||
"sogo_manifest_description": "Sogo is an opensource groupware for E-Mail, Contacts and Calender.",
|
|
||||||
"sonerezh_manifest_arguments_install_email_auth": "Email address which will be used for authentication",
|
|
||||||
"sonerezh_manifest_arguments_install_url_path": "Path for Sonerezh",
|
|
||||||
"sonerezh_manifest_description": "Self-hosted, web-based application to stream music, everywhere.",
|
|
||||||
"spftoolbox_manifest_description": "Application to check Domain Name settings.",
|
|
||||||
"spip2_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"spip2_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"spip_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"spip_manifest_arguments_install_ldap": "LDAP Connection",
|
|
||||||
"spip_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_password": "OPTIONAL. It's better to use a public ssh key instead. See below.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_pub_key": "OPTIONAL. You can use a password instead, but a ssh public key is more secure. Ask to your beneficiary for his public key.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_size": "Default Ko, Use M, G or T to specified another unit.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_ssh_user": "It must be a new user, it will be created for this purpose.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_pub_key": "Give the public ssh key",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_size": "Choose the maximum space allowed to this user",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_ssh_user": "Choose an new user for this directory",
|
|
||||||
"ssh_chroot_dir_manifest_description": "ssh chroot directories with quotas disk.",
|
|
||||||
"staticwebapp_manifest_description": "Minimal web application for static files (vhost)",
|
|
||||||
"strut_manifest_arguments_install_public_site": "Could non member create presentations ?",
|
|
||||||
"strut_manifest_description": "Strut is a slide editor creating impress.js presentations.",
|
|
||||||
"subscribe_manifest_description": "Web page to allow a person to ask an account on the Yunohost instance",
|
|
||||||
"subsonic_manifest_description": "Subsonic is an open source, web-based media server.",
|
|
||||||
"svgedit_manifest_description": "SVG-edit is a fast, web-based, javascript-driven SVG drawing editor that works in any modern browser.",
|
|
||||||
"sympa_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"sympa_manifest_arguments_install_swap_ack": "This application needs 500 Mo of RAM. The install script will automatically add swap on the system. Swap is not good if it's on an SD card life, though. Do you agree with adding swap (required) ?",
|
|
||||||
"sympa_manifest_description": "Mailing List manager",
|
|
||||||
"synapse_manifest_description": "Instant messaging server who use matrix",
|
|
||||||
"syncthing_manifest_description": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.",
|
|
||||||
"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_description": "TagSpaces is an open source personal data manager. It helps you organize files with tags on every platform.",
|
|
||||||
"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_chatbot_manifest_arguments_install_token_github": "Token API Github",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_token_telegram": "Token Telegram",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_user_github": "Username Github",
|
|
||||||
"telegram_chatbot_manifest_description": "Telegram chatbot - mini chatbot for Telegram",
|
|
||||||
"telegram_manifest_description": "Telegram - a new era of messaging",
|
|
||||||
"testupgrade_manifest_arguments_install_help_path": "This will be the URL path of your application, not your file system path",
|
|
||||||
"testupgrade_manifest_arguments_install_test_translation_generation": "Some random string to see if this is included in en.json foobar",
|
|
||||||
"testupgrade_manifest_description": "Dummy app for testing upgrade. Development purpose.",
|
|
||||||
"thelounge_manifest_description": "The Lounge is a web IRC client.",
|
|
||||||
"timeoff_manifest_description": "Open source, simple yet powerful absence management software for small and medium size business.",
|
|
||||||
"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_description": "A Fast, Easy, and Free BitTorrent Client",
|
|
||||||
"transwhat_manifest_arguments_install_architecture": "What is the server architecture?",
|
|
||||||
"transwhat_manifest_description": "A getway to whatsapp from Jabber",
|
|
||||||
"ttrss_manifest_description": "A PHP and Ajax feed reader",
|
|
||||||
"turtl_manifest_description": "Turtl lets you take notes, bookmark websites, and store documents for sensitive projects. From sharing passwords with your coworkers to tracking research on an article you're writing, Turtl keeps it all safe from everyone but you and those you share with.",
|
|
||||||
"tyto_manifest_description": "tyto is an extensible and customizable management and organisation tool",
|
|
||||||
"ulogger_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"ulogger_manifest_description": "ulogger package for YunoHost.",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_key": "Bitbucket Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_secret": "Bitbucket Secret Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_github_key": "GitHub Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_github_scope": "GitHub Scope (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_github_secret": "GitHub Secret Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_key": "Openstreetmap Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_secret": "Openstreetmap Secret Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_twitter_key": "Twitter Key (Optional field)",
|
|
||||||
"umap_manifest_arguments_install_twitter_secret": "Twitter Secret Key (Optional field)",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_after_apticron": "¿Desea recibir un correo electrónico para verificar si quedan actualizaciones después de cada actualización automática?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_help_unattended_verbosity": "1: Informe de progreso solamente.<br>2: Informe de progreso y salidas de comando.<br>3: Informe de progreso y salidas de comando y rastreo.<br>",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_previous_apticron": "¿Le gustaría recibir un correo electrónico para informarle qué actualizaciones deben realizarse?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_mail": "¿Desea recibir un correo electrónico de Actualizaciones desatendidas? ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_verbosity": "Choose the level of verbosity of Unattended-Upgrades mail",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_upgrade_level": "Choose the sources of packages to automatically upgrade",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_ynh_update": "Would you like to update YunoHost packages automatically ?",
|
|
||||||
"unattended_upgrades_manifest_description": "Daily automatic upgrades",
|
|
||||||
"vpnclient_manifest_description": "VPN Client",
|
|
||||||
"wallabag2_manifest_description": "A self hostable read-it-later app",
|
|
||||||
"wallabag_manifest_description": "A self hostable read-it-later app",
|
|
||||||
"webapp_multi_inst_manifest_arguments_install_db_create": "¿Deberíamos crear una base de datos para esta aplicación? El nombre de la base de datos y el usuario serán $domain$path, como domainorgsite",
|
|
||||||
"webapp_multi_inst_manifest_arguments_install_db_pwd": "Elija una contraseña FUERTE para acceder a la base de datos",
|
|
||||||
"webapp_multi_inst_manifest_description": "Instancias múltiples de aplicaciones web sin acceso FTP",
|
|
||||||
"weblate_manifest_arguments_install_github_account": "Nombre de usuario de Github",
|
|
||||||
"weblate_manifest_arguments_install_github_token": "Token de Github (oauth)",
|
|
||||||
"weblate_manifest_description": "Una plataforma de traducción usando Git y Python",
|
|
||||||
"webmin_manifest_description": "Webmin",
|
|
||||||
"webogram_manifest_description": "Webogram: una nueva era de mensajería",
|
|
||||||
"webtrees_manifest_arguments_install_email": "Correo electrónico del administrador (Todos los nuevos registros se enviarán en este correo electrónico)",
|
|
||||||
"webtrees_manifest_arguments_install_name": "Nombre del usuario (No es un usuario LDAP)(m",
|
|
||||||
"webtrees_manifest_arguments_install_username": "Elige un usuario administradorname (Not a LDAP User)",
|
|
||||||
"webtrees_manifest_description": "Webtrees es una aplicación gratuita de genealogía de código abierto basada en la web.",
|
|
||||||
"wekan_manifest_arguments_install_language": "Elige el idioma de la aplicación",
|
|
||||||
"wekan_manifest_description": "Trello-like kanban",
|
|
||||||
"wemawema_manifest_description": "WemaWema es un generador de memes \"NOSOTROS HACEMOS PORNO \" pero se puede hacer más",
|
|
||||||
"wifiwithme_manifest_arguments_install_cnil_link": "Ingrese la URL de su declaración CNIL",
|
|
||||||
"wifiwithme_manifest_arguments_install_cnil_number": "Ingrese el número de su declaración CNIL",
|
|
||||||
"wifiwithme_manifest_arguments_install_email": "Elija el correo electrónico donde se envió la notificación",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_name": "Introduzca su nombre de ISP",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_site": "Ingrese la dirección del sitio web de su ISP",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_zone": "Elija la zona dentro de la cual desea crear su red inalámbrica",
|
|
||||||
"wifiwithme_manifest_arguments_install_latitude": "Ingrese la latitud predeterminada",
|
|
||||||
"wifiwithme_manifest_arguments_install_longitude": "Ingrese la longitud predeterminada",
|
|
||||||
"wifiwithme_manifest_arguments_install_url_contact": "Ingrese la dirección de su página de contacto",
|
|
||||||
"wifiwithme_manifest_arguments_install_zoom": "Elija el nivel de zoom predeterminado",
|
|
||||||
"wifiwithme_manifest_description": "Un formulario y un mapa para realizar un censo de personas que desean crear una red de radio.",
|
|
||||||
"wildfly_manifest_description": "Paquete Wildfly para YunoHost",
|
|
||||||
"wordpress_manifest_arguments_install_language": "Elija el idioma del sitio de WordPress",
|
|
||||||
"wordpress_manifest_arguments_install_multisite": "¿Habilitar la opción multisite?",
|
|
||||||
"wordpress_manifest_description": "Crea fácilmente un hermoso blog o sitio web",
|
|
||||||
"yacy_manifest_description": "Buscador gratuito y descentralizado",
|
|
||||||
"yellowcms_manifest_description": "CMS para un sitio web simple",
|
|
||||||
"yifypop_manifest_description": "Inspirado en Popcorn Time, un servidor web de nodo para transmitir torrents desde YIFY.",
|
|
||||||
"ynapticron_manifest_arguments_install_emails": "Direcciones de correo electrónico a las que se enviarán las notificaciones (separadas por espacios).",
|
|
||||||
"ynapticron_manifest_description": "Ser notificado sobre los paquetes para actualizar en su sistema.",
|
|
||||||
"yourls_manifest_description": "Un servicio de acortamiento de URL",
|
|
||||||
"youtube-dl-webui_manifest_arguments_install_download_folder": "Elija una carpeta donde se descargarán videos y música",
|
|
||||||
"youtube-dl-webui_manifest_description": "Interfaz web para youtube-dl",
|
|
||||||
"yunofav_manifest_description": "Una página de enlaces favoritos para Yunohost",
|
|
||||||
"yunohost_manifest_description": "Consigue Yunohost en Yunohost, loco :)",
|
|
||||||
"z-push_manifest_description": "Z-Push es un Exchange ActiveSync con frontend escrito en php que le permite sincronizar correos electrónicos (backend imap/smtp) y calendarios/contactos (backend carddav y caldav)",
|
|
||||||
"zerobin_manifest_description": "Un pastebin en línea minimalista y de código abierto donde el servidor tiene cero conocimiento de los datos pegados",
|
|
||||||
"zeronet_manifest_description": "Sitios web descentralizados que usan Bitcoin crypto y la red BitTorrent",
|
|
||||||
"zomburl_manifest_description": "Un servicio de acortamiento de URL"
|
|
||||||
}
|
|
313
locales/fr.json
313
locales/fr.json
|
@ -1,313 +0,0 @@
|
||||||
{
|
|
||||||
"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 caractères (sans caractères spéciaux)",
|
|
||||||
"agendav_manifest_arguments_install_language": "Langue par défaut à utiliser dans AgenDAV",
|
|
||||||
"ajaxgoogleapis_manifest_arguments_install_public_site": "Une personne non membre peut elle accéder à ce mirroir ?",
|
|
||||||
"bicbucstriim_manifest_arguments_install_login": "Désactiver l’authentification BicBucStriim ?",
|
|
||||||
"bolt_manifest_arguments_install_public_site": "Est-ce un site Bold public ?",
|
|
||||||
"bozon_manifest_arguments_install_filesize": "Définissez la taille limite de téléchargement",
|
|
||||||
"bozon_manifest_arguments_install_language": "Langue (si la langue du navigateur n’est pas détectée)",
|
|
||||||
"btsync_manifest_arguments_install_platform": "Choisissez la plateforme BitTorrentSync",
|
|
||||||
"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 !!!",
|
|
||||||
"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_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 ?",
|
|
||||||
"diaspora_manifest_arguments_install_site_public": "Est-ce un site public ?",
|
|
||||||
"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 ?",
|
|
||||||
"dockerrstudio_manifest_arguments_install_user": "Veuillez choisir un identifiant pour votre compte RStudio",
|
|
||||||
"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",
|
|
||||||
"emailpoubelle_manifest_arguments_install_public_site": "Est-ce que cette application doit être visible publiquement ?",
|
|
||||||
"ethercalc_manifest_arguments_install_expire": "Suppression après N jours d’inactivités. (0 pour désactiver cette fonctionnalité)",
|
|
||||||
"ethercalc_manifest_arguments_install_public_site": "Des personnes n’ayant pas de compte YunoHost peuvent elles utiliser ce EtherCalc ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_abiword": "Utiliser abiword (~260Mo) pour étendre les possibilités d’export (pdf, doc) ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_language": "Choisissez votre langue",
|
|
||||||
"etherpadlite_manifest_arguments_install_public_site": "Est-ce un Etherpad public ?",
|
|
||||||
"flarum_manifest_arguments_install_adminpass": "Insérez votre mot de passe",
|
|
||||||
"flarum_manifest_arguments_install_title": "Choisissez un titre pour votre forum (nécessaire pour la post-installation automatique)",
|
|
||||||
"freeboard_manifest_arguments_install_adv_html": "Utilisé l’Html développeur ? (Tableau de bord permanent, plus de plugins...)",
|
|
||||||
"freeboard_manifest_arguments_install_dash": "Tableau de bord permanent, à placer dand /var/www/votre_dashboard/",
|
|
||||||
"freeboard_manifest_arguments_install_dash_bool": "Utiliser un tableau de bord permanent ? (Dev Html requis)",
|
|
||||||
"friendica_manifest_arguments_install_public_site": "Est-ce un site public ?",
|
|
||||||
"ftp_webapp_manifest_arguments_install_language": "Choisissez la langue du client ftp",
|
|
||||||
"gitolite_manifest_arguments_install_adminpubkey": "Veuillez placer ici la clé SSH publique de l'administrateur",
|
|
||||||
"gitweb_manifest_arguments_install_public_site": "Est-ce que cette application doit être visible publiquement ?",
|
|
||||||
"glpi_manifest_arguments_install_language": "Choissisez la langue du GLPI",
|
|
||||||
"gnusocial_manifest_arguments_install_name": "Choisissez un nom pour votre nœud GNU Social",
|
|
||||||
"gnusocial_manifest_arguments_install_profile": "Q’est ce qu’un profile GNU Social ?",
|
|
||||||
"gogs_manifest_arguments_install_public_site": "Est-ce un site public ?",
|
|
||||||
"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_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 ?",
|
|
||||||
"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_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)",
|
|
||||||
"hubzilla_manifest_arguments_install_adminemail": "Courriel pour l’administrateur du hub Hubzilla",
|
|
||||||
"huginn_manifest_arguments_install_invitation": "Choisissez un code d’invitation pour les nouveaux utilisateurs",
|
|
||||||
"jappix_manifest_arguments_install_language": "Choissisez la langue par défaut de Jappix",
|
|
||||||
"jappix_manifest_arguments_install_name": "Choisissez un nom pour Jappix",
|
|
||||||
"jappix_mini_manifest_arguments_install_muc": "Jappix Mini doit rejoindre quel salon de discussion ? Répondre « No » pour qu’il ne rejoindre aucun salon de discussion.",
|
|
||||||
"jappix_mini_manifest_arguments_install_user": "Jappix Mini doit rejoindre quel utilisateur ? Répondre « No » pour qu’il ne rejoigne aucun utilisateur. L’étape suivante est pour rejoindre un salon de discussion.",
|
|
||||||
"jeedom_manifest_arguments_install_sudo": "Acceptez-vous de donner les droits sudo à l’utilisateur Jeedom ? C’est nécessaire pour le fonctionnement de la majorité des fonctionnalités de Jeedom. Cependant, des attaquants pourraient utiliser les vulnérabilités de Jeedom pour prendre le contrôle de votre serveur.",
|
|
||||||
"jeedom_manifest_arguments_install_zwave": "Do you want to install OpenZWave dependences for ZWave home automation modules ?",
|
|
||||||
"jirafeau_manifest_arguments_install_admin_user": "Choisissez l’administrateur (seul autorisé à accéder à la page admin.php)",
|
|
||||||
"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)",
|
|
||||||
"kiwiirc_manifest_arguments_install_public_site": "Est-ce un site KiwiIRC public ?",
|
|
||||||
"leed_manifest_arguments_install_language": "Choisissez la langue de votre agrégateur",
|
|
||||||
"leed_manifest_arguments_install_market": "Voulez-vous activer le Leed Market ?",
|
|
||||||
"lektor_manifest_arguments_install_admin_user": "Choisissez l’administrateur (seul autorisé à accéder à l’interface d’administration)",
|
|
||||||
"lektor_manifest_arguments_install_name": "Choisissez un nom pour votre site web",
|
|
||||||
"lektor_manifest_arguments_install_ssh_pub_key": "Une clé ssh publique afin de pouvoir cloner le dépôt (non, pas de mot de passe).",
|
|
||||||
"limesurvey_manifest_arguments_install_language": "Choisissez la langue par défault de LimeSurvey",
|
|
||||||
"linuxdash_manifest_arguments_install_user": "Choisissez l’utilisateur YunoHost qui a accès à Linux-Dash",
|
|
||||||
"lutim_manifest_arguments_install_always_encrypt": "Forcer le chiffrement des images ?",
|
|
||||||
"lychee_manifest_arguments_install_admin_pwd": "Choisissez un mot de passe pour le compte administrateur",
|
|
||||||
"lychee_manifest_arguments_install_admin_user": "Choisissez le nom d’utilisateur de l’administrateur",
|
|
||||||
"mailman_manifest_arguments_install_adminPass": "Choisissez un mot de passe d’administration pour mailman",
|
|
||||||
"mailman_manifest_arguments_install_language": "Choisissez une langue par défaut pour mailman",
|
|
||||||
"mailman_manifest_arguments_install_listPrefix": "Choisissez un préfixe pour les listes mailman (c'est-à-dire prefix dans listname@prefix.yourdomain)",
|
|
||||||
"mattermost_manifest_arguments_install_public_site": "Les utilisateurs non-enregistrés peuvent-ils accéder à ce chat ?",
|
|
||||||
"mediagoblin_manifest_arguments_install_public": "Est-ce un site public ?",
|
|
||||||
"mediawiki_manifest_arguments_install_language": "Choisissez la langue",
|
|
||||||
"mediawiki_manifest_arguments_install_wikiname": "Choisissez un nom pour le wiki",
|
|
||||||
"minchat_manifest_arguments_install_ispublic": "Type Y if website is public",
|
|
||||||
"minidlna_manifest_arguments_install_version": "Choix de la version de minidlna à installer",
|
|
||||||
"movim_manifest_arguments_install_language": "Langue du pod",
|
|
||||||
"movim_manifest_arguments_install_port": "Port du daemon Movim (interne uniquement)",
|
|
||||||
"movim_manifest_arguments_install_ssoenabled": "Activer le support SSO (connexin auto) ?",
|
|
||||||
"multi_webapp_manifest_arguments_install_sql": "Créer une base de données?",
|
|
||||||
"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",
|
|
||||||
"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",
|
|
||||||
"my_webapp_manifest_arguments_install_with_mysql": "Avez-vous besoin d’une base de données MySQL ?",
|
|
||||||
"nextcloud_manifest_arguments_install_user_home": "Accéder au dossier personnel des utilisateurs depuis Nextcloud ?",
|
|
||||||
"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_lang": "Choisissez une langue pour Odoo",
|
|
||||||
"odoo_manifest_arguments_install_odoo_version": "Quelle version d’Odoo souhaitez-vous installer ?",
|
|
||||||
"opensondage_manifest_arguments_install_language": "Choisissez la langue par défault d’OpenSondage",
|
|
||||||
"openwrt_manifest_arguments_install_server": "Choisissez l’IP sur laquelle OpenWRT sera installé",
|
|
||||||
"owncloud_manifest_arguments_install_user_home": "Accéder au dossier personnel des utilisateurs depuis ownCloud ?",
|
|
||||||
"phpBB_manifest_arguments_install_admin_email": "Renseignez un courriel pour l’admin phpBB - Vérifiez bien qu’il existe sur ce serveur !",
|
|
||||||
"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_lang": "Configurer la langue de phpBB",
|
|
||||||
"phpsysinfo_manifest_arguments_install_display_mode": "Mode d’affichage ?",
|
|
||||||
"phpsysinfo_manifest_arguments_install_language": "Langue par défaut ?",
|
|
||||||
"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)",
|
|
||||||
"piwigo_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"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.",
|
|
||||||
"pluxml_manifest_arguments_install_default_lang": "Langue par défaut",
|
|
||||||
"pluxml_manifest_arguments_install_public_site": "Est-ce que cette application doit être visible publiquement ?",
|
|
||||||
"radicale_manifest_arguments_install_infcloud": "Installer l’interface web InfCloud ?",
|
|
||||||
"radicale_manifest_arguments_install_language": "Choisissez la langue de l’interface",
|
|
||||||
"rainloop_manifest_arguments_install_lang": "Sélectionnez la langue par défaut",
|
|
||||||
"rainloop_manifest_arguments_install_ldap": "Souhaitez-vous ajouter les utilisateurs YunoHost dans les suggestions de destinataires ?",
|
|
||||||
"redirect_manifest_arguments_install_redirect_path": "Emplacement de destination",
|
|
||||||
"redirect_manifest_arguments_install_redirect_type": "Type de redirection",
|
|
||||||
"riot_manifest_arguments_install_default_home_server": "Choisissez un serveur par défault",
|
|
||||||
"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 caractères",
|
|
||||||
"roundcube_manifest_arguments_install_with_carddav": "Installer le plugin de synchronisation CardDAV ?",
|
|
||||||
"rutorrent_manifest_arguments_install_data_dir": "Choisissez un dossier pour sauver les telechargements",
|
|
||||||
"scm_manifest_arguments_install_admin_passwd": "Choisissez un mot de passe pour l’administrateur SCM-Manager",
|
|
||||||
"seafile_manifest_arguments_install_admin_password": "Saisissez un mot de passe pour l’administrateur",
|
|
||||||
"seafile_manifest_arguments_install_architecture": "Quelle est l’architecture du serveur ?",
|
|
||||||
"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 (3 à 15 lettres ou chiffres)",
|
|
||||||
"shaarli_manifest_arguments_install_privatelinkbydefault": "Les nouveaux liens sont-ils privés par défaut ?",
|
|
||||||
"shaarli_manifest_arguments_install_public": "Est-ce un site Shaarli public ?",
|
|
||||||
"shaarli_manifest_arguments_install_title": "Choisissez un titre pour la page de Shaarli",
|
|
||||||
"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_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 ?",
|
|
||||||
"sonerezh_manifest_arguments_install_email_auth": "Adresse courriel qui servira à s’authentifier",
|
|
||||||
"sonerezh_manifest_arguments_install_url_path": "Chemin sur lequel installer Sonerezh",
|
|
||||||
"strut_manifest_arguments_install_public_site": "Une personne non membre peut elle créer une présentation ?",
|
|
||||||
"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)",
|
|
||||||
"teamspeak_manifest_arguments_install_System-OS Platform": "64 bits ou 32 bits ? (x64 vs x86)",
|
|
||||||
"torrelay_manifest_arguments_install_contact": "Choisissez une adresse courriel 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",
|
|
||||||
"transwhat_manifest_arguments_install_architecture": "Quelle est l’architecture du serveur ?",
|
|
||||||
"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",
|
|
||||||
"wekan_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"wordpress_manifest_arguments_install_language": "Choissisez la langue du WordPress",
|
|
||||||
"wordpress_manifest_arguments_install_multisite": "Activer l’option multisite ?",
|
|
||||||
"ynapticron_manifest_arguments_install_emails": "Des adresses courriel auxquelles seront envoyées les notifications (séparées par des espaces).",
|
|
||||||
"youtube-dl-webui_manifest_arguments_install_download_folder": "Choisissez le dossier où les vidéos et musiques seront téléchargées",
|
|
||||||
"grav_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"grav_manifest_arguments_install_multisite": "Activer l’option multi-site ?",
|
|
||||||
"seenthis_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"spip2_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"spip_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"mytinytodo_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"spip_manifest_arguments_install_ldap": "Connexion LDAP",
|
|
||||||
"abantecart_manifest_arguments_install_admin_email": "Votre adresse courriel.",
|
|
||||||
"concrete5_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l’administrateur. ≥ cinq caractères",
|
|
||||||
"galette_manifest_arguments_install_adminPass": "Mot de passe administrateur",
|
|
||||||
"joomla_manifest_arguments_install_email": "Courriel de l’administrateur",
|
|
||||||
"joomla_manifest_arguments_install_username": "Identifiant de l’administrateur",
|
|
||||||
"nexusoss_manifest_arguments_install_lang": "Sélectionnez la langue par défaut",
|
|
||||||
"plonecms_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l’administrateur. ≥ cinq caractères",
|
|
||||||
"prestashop_manifest_arguments_install_passwd": "Définissez le mot de passe pour l’administrateur. ≥ cinq caractères",
|
|
||||||
"rocketchat_manifest_arguments_install_lang": "Sélectionnez la langue par défaut",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_key": "Clef Bitbucket (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_secret": "Clef secrète Bitbucket (champ optionnel)",
|
|
||||||
"webtrees_manifest_arguments_install_email": "Courriel de l’administrateur (toute inscription sera transmise à cette adresse)",
|
|
||||||
"coin_manifest_arguments_install_email": "Choisissez le courriel auquel transmettre les notifications",
|
|
||||||
"hubzilla_manifest_arguments_install_email": "Courriel pour l’administrateur du hub Hubzilla",
|
|
||||||
"adminer_manifest_arguments_install_root_access": "Permettre l’accès Root (par sécurité, désactivé par défaut) ?",
|
|
||||||
"archivist_manifest_arguments_install_apps_backup": "Voulez-vous sauvegarder vos applications ?",
|
|
||||||
"archivist_manifest_arguments_install_core_backup": "Voulez-vous sauvegarder votre système YunoHost ?",
|
|
||||||
"archivist_manifest_arguments_install_encrypt": "Voulez-vous chiffrer vos sauvegardes ?",
|
|
||||||
"archivist_manifest_arguments_install_encryption_pwd": "Définissez le mot de passe pour le chiffrement.",
|
|
||||||
"archivist_manifest_arguments_install_frequency": "Choisissez la fréquence de vos sauvegardes ?",
|
|
||||||
"archivist_manifest_arguments_install_help_encryption_pwd": "C’est nécessaire si vous utilisez le chiffrement des sauvegardes.",
|
|
||||||
"bozon_manifest_arguments_install_backup_core_only": "Dans le cas d’une sauvegarde, dois-je sauvegarder uniquement le cœur d’une application ? (vos données téléversées dans BoZoN telles que les vidéos, photos, documents… ne seront pas sauvegardées)",
|
|
||||||
"cachet_manifest_arguments_install_admin_password": "Définissez le mot de passe pour l’administrateur",
|
|
||||||
"cachet_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"concrete5_manifest_arguments_install_admin_name": "Choisissez l’administrateur de Concrete5 (doit être un utilisateur YunoHost existant)",
|
|
||||||
"concrete5_manifest_arguments_install_language": "Langue par défaut à utiliser sur votre interface d’administration",
|
|
||||||
"mailman_manifest_arguments_install_admin_password": "Choisissez un mot de passe d’administration pour mailman",
|
|
||||||
"mastodon_manifest_arguments_install_passwd": "Saisissez un mot de passe pour l’administrateur ≥ 8 caractères",
|
|
||||||
"mopidy_manifest_arguments_install_admin_mopidy": "Choisissez l’administrateur de Mopidy (doit être un utilisateur YunoHost)",
|
|
||||||
"nodebb_manifest_arguments_install_admin_name": "Choisissez l’administrateur de Abantecart (doit être un utilisateur YunoHost existant)",
|
|
||||||
"pgadmin_manifest_arguments_install_admin_password": "Saisissez un mot de passe pour l’administrateur",
|
|
||||||
"plonecms_manifest_arguments_install_admin_name": "Choisissez l’administrateur de Plone (doit être un utilisateur YunoHost)",
|
|
||||||
"webtrees_manifest_arguments_install_username": "Choisissez l’administrateur (pas un utilisateur LDAP)",
|
|
||||||
"coin_manifest_arguments_install_isp_name": "Saisissez le nom de votre fournisseur d’accès",
|
|
||||||
"coin_manifest_arguments_install_isp_site": "Saisissez l’adresse du site web de votre fournisseur d’accès",
|
|
||||||
"collabora_manifest_arguments_install_nextclouddomain": "Le domaine de votre instance Nextcloud",
|
|
||||||
"dolibarr_manifest_arguments_install_member": "Les utilisateurs YunoHost doivent-ils être ajoutés comme membres en attente de validation dans Dolibarr ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_useldap": "Souhaitez-vous utiliser LDAP avec mypads ?",
|
|
||||||
"flarum_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"horde_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"mastodon_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"monica_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"prestashop_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_pub_key": "Donnez une clef ssh publique",
|
|
||||||
"sympa_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"ulogger_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"umap_manifest_arguments_install_language": "Choisissez la langue de l’application",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_export": "Utiliser AbiWord (~260 Mio) ou LibreOffice (~400 Mio) (plus stable) pour étendre les capacités d’export (pdf, doc) ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_mypads": "<a href=https://git.framasoft.org/framasoft/ep_mypads target=_blank>plugin mypads</a>",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_path": "Si vous choisissez d’installer le plugin mypads, etherpad doit être à la racine (/)",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_useldap": "Utiliser LDAP ne vous permettra pas d’ajouter des utilisateurs autres que ceux de YunoHost.",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_mypads": "Voulez-vous installer le plugin mypads ?",
|
|
||||||
"fallback_manifest_arguments_install_auto_deploy": "[fallback server seulement] Déployer automatiquement le fallback en cas de panne.",
|
|
||||||
"fallback_manifest_arguments_install_auto_detect_failure": "[fallback server seulement] Détection automatique d’une panne du serveur principal ?",
|
|
||||||
"fallback_manifest_arguments_install_contact_mail": "[fallback server seulement] Adresse e-mail à contacter en cas de panne.",
|
|
||||||
"fallback_manifest_arguments_install_delay_before_incident": "[fallback server seulement] Délai avant de déclarer un incident avec le serveur principal.",
|
|
||||||
"fallback_manifest_arguments_install_encrypt": "[main server seulement] Voulez-vous chiffrer vos sauvegardes ?",
|
|
||||||
"fallback_manifest_arguments_install_encryption_pwd": "[main server seulement] Définissez le mot de passe de chiffrement.",
|
|
||||||
"fallback_manifest_arguments_install_help_auto_deploy": "Uniquement pour la détection automatique de panne.",
|
|
||||||
"fallback_manifest_arguments_install_help_contact_mail": "Uniquement pour la détection automatique de panne.<br>Devrait évidemment être une adresse sur un autre serveur !",
|
|
||||||
"fallback_manifest_arguments_install_help_delay_before_incident": "Uniquement pour la détection automatique de panne.",
|
|
||||||
"fallback_manifest_arguments_install_help_encrypt": "Vous ne devriez désactiver le chiffrement que si le serveur de secours est vraiment sûr.",
|
|
||||||
"fallback_manifest_arguments_install_help_encryption_pwd": "C’est nécessaire si vous n’avez pas désactivé le chiffrement.",
|
|
||||||
"fallback_manifest_arguments_install_help_install_type": "Choisissez « main server » si vous effectuez une installation sur votre vrai serveur. Ou « fallback server » si c’est votre serveur de secours.",
|
|
||||||
"fallback_manifest_arguments_install_help_pub_key": "La clé publique ssh vous sera fournie à la fin de l’installation du serveur principal.",
|
|
||||||
"fallback_manifest_arguments_install_help_ssh_host": "Ce serveur doit être en route, pour la commande ssh-keyscan.",
|
|
||||||
"fallback_manifest_arguments_install_install_type": "Choisissez le type d’installation que vous souhaitez.",
|
|
||||||
"fallback_manifest_arguments_install_pub_key": "[fallback server seulement] Placez ici la clé publique ssh.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_host": "[main server seulement] Définissez le nom de domaine (ou l’adresse ip) du serveur de secours.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_port": "[main server seulement] Définissez le port pour la connexion ssh.",
|
|
||||||
"flask_manifest_arguments_install_display_name": "Nom d’affichage (utilisé dans le portail SSO)",
|
|
||||||
"flask_manifest_arguments_install_help_system_name": "(minuscules uniquement, caractères alphanumériques, sans espaces)",
|
|
||||||
"flask_manifest_arguments_install_system_name": "Nom court utilisé par le système pour identifier votre application",
|
|
||||||
"grafana_manifest_arguments_install_port": "Choisissez un port pour votre serveur. Laissez la valeur par défaut si vous ne souhaitez pas le changer",
|
|
||||||
"horde_manifest_arguments_install_ansel_install": "Installer un gestionnaire de photos complet (Ansel) ?",
|
|
||||||
"horde_manifest_arguments_install_service_autodiscovery": "Voulez-vous activer le service d’auto-découverte CaldDav/CardDAV ?",
|
|
||||||
"horde_manifest_arguments_install_sesha_install": "Installer un gestionnaire d’inventaire (Sesha) ?",
|
|
||||||
"horde_manifest_arguments_install_whups_install": "Installer un système de gestion de tickets (Whups) ?",
|
|
||||||
"horde_manifest_arguments_install_wicked_install": "Installer un Wiki (Wicked) ?",
|
|
||||||
"hubzilla_manifest_arguments_install_run_exec": "Acceptez-vous de modifier php.ini pour permettre l’usage de la fonction exec() par Hubzilla ?",
|
|
||||||
"hubzilla_manifest_arguments_install_upload": "Taille maximale des téléversements (Mio)",
|
|
||||||
"kodi_manifest_arguments_install_launch_on_boot": "Lancer Kodi au démarrage du serveur YunoHost",
|
|
||||||
"kodi_manifest_arguments_install_open_webserver_port": "Ouvrir le port 8080 afin d’utiliser via votre téléphone une application à distance Kodi sur votre réseau local",
|
|
||||||
"mailman_manifest_arguments_install_help_admin_password": "Sera nécessaire pour créer et administrer les listes. Prudence cependant : ce mot de passe sera écrit en clair sur le disque…",
|
|
||||||
"mailman_manifest_arguments_install_help_domain": "Ceci sera le domaine sur lequel s’exécuteront les listes de discussions",
|
|
||||||
"mailman_manifest_arguments_install_help_path": "L’interface web pour mailman sera accessible via le.domaine.fr/chemin",
|
|
||||||
"mattermost_manifest_arguments_install_analytics": "Permettre à Mattermost d’envoyer des télémesures sur votre utilisation de cette application ?",
|
|
||||||
"minetest_manifest_arguments_install_creative": "Activer ou non le mode créatif (inventaire illimité)",
|
|
||||||
"minetest_manifest_arguments_install_damage": "Permettre aux joueurs de recevoir des dommages et de mourir",
|
|
||||||
"minetest_manifest_arguments_install_pvp": "S’il faut permettre aux joueurs de s’entretuer les uns les autres",
|
|
||||||
"monica_manifest_description": " Personal Relationship Manager - un nouveau type de CRM pour organiser les interactions avec vos amis et votre famille.",
|
|
||||||
"mopidy_manifest_arguments_install_soundcloud_id": "ID Soundcloud (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id": "Identifiant client Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id_secret": "Identifiant client secret Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_pass": "Mot de passe Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_user": "Utilisateur Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_description": "Mopidy - est un serveur de musique extensible écrit en Python.",
|
|
||||||
"ore_manifest_arguments_install_email": "Fournissez une adresse courriel pour envoyer les paramètres de la base de données (Le mot de passe sera envoyé dans ce courriel. Donc PRUDENCE)",
|
|
||||||
"pelican_manifest_arguments_install_author": "Choisissez un auteur",
|
|
||||||
"pelican_manifest_arguments_install_title": "Choisissez un titre par défaut pour votre site internet",
|
|
||||||
"pihole_manifest_arguments_install_enable_dhcp": "Voulez-vous définir Pi-hole comme votre serveur DHCP ?",
|
|
||||||
"pihole_manifest_arguments_install_help_enable_dhcp": "Si vous voulez faire ça, <a href=https://GitHub.com/YunoHost-Apps/pihole_ynh/blob/master/dhcp.md#faire-de-pi-hole-votre-serveur-dhcp target=_blank>vous devriez vraiment lire ça avant</a> !",
|
|
||||||
"pihole_manifest_arguments_install_help_query_logging": "Garder cette option désactivée rendra les graphiques sur la page d’administration inutiles. Mais respectera la vie privée des autres utilisateurs.",
|
|
||||||
"pihole_manifest_arguments_install_query_logging": "Voulez-vous enregistrer les requêtes DNS ?",
|
|
||||||
"roundcube_manifest_arguments_install_with_enigma": "Installer le plugin de chiffrement des messages Enigma ?",
|
|
||||||
"shaarli_manifest_arguments_install_privateinstance": "Cette instance est-elle privée ?",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_password": "OPTIONNEL. Il vaut mieux utiliser une clef publique ssh à la place. Voir si-dessous.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_pub_key": "OPTIONNEL. Vous pouvez utiliser un mot de passe à la place, mais une clé ssh publique est plus sécurisée. Demandez à votre bénéficiaire sa clé publique.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_size": "Kio par défaut, utilisez M, G ou T pour indiquer une autre unité.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_ssh_user": "Ce doit être un nouvel utilisateur, il sera créé pour cet usage.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_size": "Choisissez l’espace maximum à allouer à cet utilisateur",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_ssh_user": "Choisissez un nouvel utilisateur pour ce dossier",
|
|
||||||
"sympa_manifest_arguments_install_swap_ack": "Cette application nécessite 500 Mo de RAM. Le script d’installation va automatiquement ajouter du swap sur le système. Cependant, l’utilisation de swap risque de diminuer sa durée de vie. Êtes-vous d’accord avec l’ajout de swap (requis) ?",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_token_github": "Token de l’API GitHub",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_token_telegram": "Token Telegram",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_user_github": "Nom d’utilisateur GitHub",
|
|
||||||
"testupgrade_manifest_arguments_install_help_path": "Ce sera le chemin de votre application et non le chemin de votre système de fichiers",
|
|
||||||
"testupgrade_manifest_arguments_install_test_translation_generation": "Quelques chaînes de caractères aléatoires pour voir si cela est inclus dans en.json foobar",
|
|
||||||
"umap_manifest_arguments_install_github_key": "Clef GitHub (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_github_scope": "GitHub Scope (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_github_secret": "Clef secrète GitHub (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_key": "Clef OpenStreetMap (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_secret": "Clef secrète OpenStreetMap (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_twitter_key": "Clef Twitter (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_twitter_secret": "Clef secrète Twitter (champ optionnel)",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_after_apticron": "Aimeriez-vous recevoir un courriel pour vérifier s’il reste des mises à niveau après chaque mise à niveau automatique ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_help_unattended_verbosity": "1 : Rapport d’avancement seulement.<br>2 : Rapport d’avancement et sorties de commande.<br>3 : Rapport d’avancement et sorties de commande et trace.<br>",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_previous_apticron": "Souhaitez-vous recevoir un courriel vous informant des mises à jour à effectuer ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_mail": "Souhaitez-vous recevoir un courriel de Unattended-Upgrades ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_verbosity": "Choisissez le niveau de verbosité du courriel Unattended-Upgrades",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_upgrade_level": "Choisir les sources des paquets à mettre à niveau automatiquement",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_ynh_update": "Souhaitez-vous mettre à jour automatiquement les paquets YunoHost ?",
|
|
||||||
"weblate_manifest_arguments_install_github_account": "Nom d’utilisateur GitHub",
|
|
||||||
"weblate_manifest_arguments_install_github_token": "Jeton GitHub (oauth)",
|
|
||||||
"webtrees_manifest_arguments_install_name": "Nom de l’utilisateur (pas un utilisateur LDAP)"
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"dokuwiki_manifest_description": "DokuWiki \u00e8 un Wiki aderente agli standard, semplice da usare, finalizzato principalmente alla creazione di documentazione di qualsiasi tipo."
|
|
||||||
}
|
|
342
locales/nl.json
342
locales/nl.json
|
@ -1,342 +0,0 @@
|
||||||
{
|
|
||||||
"20euros_manifest_description": "2048 - 20euros",
|
|
||||||
"243_manifest_description": "2048 game clone",
|
|
||||||
"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_description": "Create a E-commerce Website",
|
|
||||||
"adhocserver_manifest_description": "An adhoc Server for the sony PSP",
|
|
||||||
"adminer_manifest_description": "Database management in a single PHP file",
|
|
||||||
"agendav_manifest_arguments_install_language": "Default language to be used in 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_description": "A web based audio/video streaming application",
|
|
||||||
"askbot_manifest_description": "Askbot is a Questions & Answers (Q&A) software",
|
|
||||||
"baikal_manifest_description": "Lightweight CalDAV+CardDAV server",
|
|
||||||
"bicbucstriim_manifest_arguments_install_login": "Disable BicBucStriim login ?",
|
|
||||||
"bicbucstriim_manifest_description": "BicBucStriim streams books, digital books, providing web-based access to your e-book collection.",
|
|
||||||
"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_filesize": "Define the file upload size limit",
|
|
||||||
"bozon_manifest_arguments_install_language": "Default language",
|
|
||||||
"bozon_manifest_description": "Minimalist Drag & drop file sharing app",
|
|
||||||
"btsync_manifest_arguments_install_platform": "Choose the BitTorrentSync platform",
|
|
||||||
"btsync_manifest_description": "BitTorrentSync : synchronize your files using bittorrent",
|
|
||||||
"cesium_manifest_description": "Duniter client to manage wallets, certifications in a libre money.",
|
|
||||||
"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_description": "Calibre OPDS (and HTML) PHP Server",
|
|
||||||
"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_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_description": "2048 game clone in 3D",
|
|
||||||
"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_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_description": "Docker allows to deploy applications which have not yet been integrated with YunoHost",
|
|
||||||
"dokuwiki_manifest_description": "DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database.",
|
|
||||||
"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_description": "Blog publishing application",
|
|
||||||
"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_public_site": "Should this application be public ?",
|
|
||||||
"emailpoubelle_manifest_description": "Create throwable email address redirected to your real one",
|
|
||||||
"ethercalc_manifest_arguments_install_expire": "Deletes a spreadsheet's content after N days of inactivity. (0 to diasable this feature)",
|
|
||||||
"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_language": "Choose your language",
|
|
||||||
"etherpad_mypads_manifest_description": "Framapad clone, a online editor providing collaborative editing in real-time.",
|
|
||||||
"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_description": "Mozilla\u2019s Sync-Server to host your Firefox account data",
|
|
||||||
"filebin_manifest_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data - File Edition",
|
|
||||||
"flarum_manifest_arguments_install_adminpass": "Put your password",
|
|
||||||
"flarum_manifest_arguments_install_title": "Choose a title for your forum",
|
|
||||||
"flarum_manifest_description": "Flarum (open-source forum software) package for YunoHost.",
|
|
||||||
"framagames_manifest_description": "Set of games Framagames from Framasoft",
|
|
||||||
"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_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_description": "FreshRSS is a selfhostable RSS reader",
|
|
||||||
"friendica_manifest_arguments_install_public_site": "Is it a public Friendica site ?",
|
|
||||||
"friendica_manifest_description": "Social Communication Server",
|
|
||||||
"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",
|
|
||||||
"gateone_manifest_description": "HTML5-powered terminal emulator and SSH client",
|
|
||||||
"ghostblog_manifest_description": "Just a blogging platform",
|
|
||||||
"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_public_site": "Should this application be public ?",
|
|
||||||
"gitweb_manifest_description": "Web interface to see gitolite repositories",
|
|
||||||
"glowingbear_manifest_description": "A web client for WeeChat.",
|
|
||||||
"glpi_manifest_arguments_install_language": "Choose the language of the GLPI site",
|
|
||||||
"glpi_manifest_description": "Create a beautiful blog or website easily",
|
|
||||||
"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_public_site": "Is it a public site ?",
|
|
||||||
"gogs_manifest_description": "A self-hosted Git service written in Go",
|
|
||||||
"grafana_manifest_description": "Beautiful metric & analytic dashboards for monitoring",
|
|
||||||
"grav_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"grav_manifest_arguments_install_multisite": "Enable multisite option ?",
|
|
||||||
"grav_manifest_description": "Grav - Grav is a modern open source flat-file CMS",
|
|
||||||
"haste_manifest_description": "Haste is an open-source pastebin software written in node.js",
|
|
||||||
"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_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_description": "A fast paced puzzle game.",
|
|
||||||
"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_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_description": "An easy HTML toolset",
|
|
||||||
"htpc-manager_manifest_description": "Manage your HTPC from anywhere",
|
|
||||||
"hubzilla_manifest_arguments_install_adminemail": "Email address for the Hubzilla hub admin",
|
|
||||||
"hubzilla_manifest_description": "Hubzilla is a decentralized publication platform and social network.",
|
|
||||||
"huginn_manifest_arguments_install_invitation": "Choose an invitation code for new users",
|
|
||||||
"huginn_manifest_description": " Build agents that monitor and act on your behalf. Your agents are standing by!",
|
|
||||||
"ihatemoney_manifest_description": "A simple shared budget manager web application",
|
|
||||||
"jappix_manifest_arguments_install_language": "Choose the default language of Jappix",
|
|
||||||
"jappix_manifest_arguments_install_name": "Choose a name for Jappix",
|
|
||||||
"jappix_manifest_description": "A free social network",
|
|
||||||
"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_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_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_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_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_description": "Video conferencing web application",
|
|
||||||
"kanboard_manifest_description": "Kanboard is a simple visual task board web application",
|
|
||||||
"keeweb_manifest_description": "Password manager compatible with KeePass.",
|
|
||||||
"kiwiirc_manifest_arguments_install_public_site": "Is it a public KiwiIRC site ?",
|
|
||||||
"kiwiirc_manifest_description": "Web IRC client",
|
|
||||||
"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_language": "Choose your agregator's language",
|
|
||||||
"leed_manifest_arguments_install_market": "Do you want to activate the Leed Market?",
|
|
||||||
"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_name": "Choose a name for your website",
|
|
||||||
"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_language": "Choose the default language of this LimeSurvey",
|
|
||||||
"limesurvey_manifest_description": "LimeSurvey is used to create advanced poll.",
|
|
||||||
"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_always_encrypt": "Force the encryption of images?",
|
|
||||||
"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_description": "Self-hosted photo-management done right",
|
|
||||||
"mailman_manifest_arguments_install_adminPass": "Choose a mailman administration password",
|
|
||||||
"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_description": "Free software for managing electronic mail discussion and e-newsletter lists.",
|
|
||||||
"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_public": "Is it a public site?",
|
|
||||||
"mediagoblin_manifest_description": "A free software media publishing platform",
|
|
||||||
"mediawiki_manifest_arguments_install_language": "Choose the language",
|
|
||||||
"mediawiki_manifest_arguments_install_wikiname": "Choose a name for the wiki",
|
|
||||||
"mediawiki_manifest_description": "Open Source Wiki software",
|
|
||||||
"minchat_manifest_arguments_install_ispublic": "Taper Y si le site est public",
|
|
||||||
"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_description": "Minimal RSS reader.",
|
|
||||||
"monit_manifest_description": "Monitoring of processes, files, directories, filesystems and hosts",
|
|
||||||
"monitorix_manifest_description": "A monitoring tools",
|
|
||||||
"movim_manifest_arguments_install_language": "Pod language",
|
|
||||||
"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_sql": "Create a database?",
|
|
||||||
"multi_webapp_manifest_description": "Empty App without FTP access",
|
|
||||||
"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_description": "Mumble-server web interface",
|
|
||||||
"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_description": "Outil de supervision de ressources",
|
|
||||||
"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_description": "Encrypted IM",
|
|
||||||
"mytinytodo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"mytinytodo_manifest_description": "Simple open source to-do list script.",
|
|
||||||
"netdata_manifest_description": "real-time performance and health monitoring",
|
|
||||||
"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_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_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_description": "Apache-OFBiz ERP",
|
|
||||||
"openidsimplesamlphp_manifest_description": "OpenID provider based on SimpleSAMLphp",
|
|
||||||
"opennote_manifest_description": "OpenNote was built to be an open web-based alternative to Microsoft OneNote (T) and EverNote.",
|
|
||||||
"opensondage_manifest_arguments_install_language": "Choose the default language of this 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_description": "Your Secure and Private Tunnel to the Internet",
|
|
||||||
"openwrt_manifest_arguments_install_server": "Choose IP where OpenWRT is installed",
|
|
||||||
"openwrt_manifest_description": "Access to OpenWRT",
|
|
||||||
"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_lang": "Configure phpBB's language",
|
|
||||||
"phpBB_manifest_description": "#1 free, opensource bulletin board software",
|
|
||||||
"phpldapadmin_manifest_description": "Manage OpenLDAP database over the web",
|
|
||||||
"phpmyadmin_manifest_description": "Manage MySQL databases over the web",
|
|
||||||
"phpsysinfo_manifest_arguments_install_display_mode": "Display Mode?",
|
|
||||||
"phpsysinfo_manifest_arguments_install_language": "Default Language?",
|
|
||||||
"phpsysinfo_manifest_description": "A customizable PHP script that displays information about your system nicely.",
|
|
||||||
"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_description": "PirateBox",
|
|
||||||
"piwigo_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"piwigo_manifest_description": "photo gallery",
|
|
||||||
"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_description": "Measurement Software web statistics to analyze traffic to your sites.",
|
|
||||||
"plexmediaserver_manifest_description": "Media server",
|
|
||||||
"pluxml_manifest_arguments_install_default_lang": "Default language",
|
|
||||||
"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_description": "",
|
|
||||||
"pydio_manifest_description": "File sharing platform",
|
|
||||||
"radicale_manifest_arguments_install_infcloud": "Install InfCloud web interface?",
|
|
||||||
"radicale_manifest_arguments_install_language": "Choose your interface language",
|
|
||||||
"radicale_manifest_description": "CalDAV (calendar) and CardDAV (contact) synchronization server",
|
|
||||||
"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_description": "Lightweight multi-account webmail",
|
|
||||||
"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_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_description": "Create a modern Website",
|
|
||||||
"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_description": "Torrent client",
|
|
||||||
"scm_manifest_arguments_install_admin_passwd": "Choose a password for SCM-Manager administrator",
|
|
||||||
"scm_manifest_description": "The easiest way to share and manage your Git, Mercurial and Subversion repositories over http",
|
|
||||||
"scrumblr_manifest_description": "Software for notes",
|
|
||||||
"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_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_description": "A privacy-respecting, hackable metasearch engine",
|
|
||||||
"seenthis_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"seenthis_manifest_description": "Seenthis - Short-blogging destin\u00e9 \u00e0 la veille d\u2019actualit\u00e9.",
|
|
||||||
"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_description": "Web based AJAX terminal emulator",
|
|
||||||
"shout_manifest_description": "Web IRC client",
|
|
||||||
"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_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_description": "Sogo is an opensource groupware for E-Mail, Contacts and Calender.",
|
|
||||||
"sonerezh_manifest_arguments_install_email_auth": "Email address which will be used for authentication",
|
|
||||||
"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_language": "Choose the application language",
|
|
||||||
"spip2_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"spip_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"spip_manifest_arguments_install_ldap": "LDAP Connection",
|
|
||||||
"spip_manifest_description": "SPIP - publishing system for the Internet",
|
|
||||||
"staticwebapp_manifest_description": "Minimal web application for static files (vhost)",
|
|
||||||
"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_description": "Subsonic is an open source, web-based media server.",
|
|
||||||
"synapse_manifest_description": "Instant messaging server who use matrix",
|
|
||||||
"syncthing_manifest_description": "Syncthing replaces proprietary sync and cloud services with something open, trustworthy and decentralized.",
|
|
||||||
"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_description": "TagSpaces is an open source personal data manager. It helps you organize files with tags on every platform.",
|
|
||||||
"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_description": "Telegram - a new era of messaging",
|
|
||||||
"testupgrade_manifest_description": "Dummy app for testing upgrade. Development purpose.",
|
|
||||||
"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_description": "A Fast, Easy, and Free BitTorrent Client",
|
|
||||||
"transwhat_manifest_arguments_install_architecture": "What is the server architecture?",
|
|
||||||
"transwhat_manifest_description": "A getway to whatsapp from Jabber",
|
|
||||||
"ttrss_manifest_description": "A PHP and Ajax feed reader",
|
|
||||||
"vpnclient_manifest_description": "VPN Client",
|
|
||||||
"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_description": "Web App Multi Instances without FTP access",
|
|
||||||
"webmin_manifest_description": "Webmin",
|
|
||||||
"wekan_manifest_arguments_install_language": "Choose the application language",
|
|
||||||
"wekan_manifest_description": "Trello-like kanban",
|
|
||||||
"wordpress_manifest_arguments_install_language": "Choose the language of the WordPress site",
|
|
||||||
"wordpress_manifest_arguments_install_multisite": "Enable multisite option ?",
|
|
||||||
"wordpress_manifest_description": "Create a beautiful blog or website easily",
|
|
||||||
"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_description": "An URL shortening service",
|
|
||||||
"youtube-dl-webui_manifest_arguments_install_download_folder": "Choose a folder where video and music will be downloaded",
|
|
||||||
"youtube-dl-webui_manifest_description": "Web interface for youtube-dl",
|
|
||||||
"yunofav_manifest_description": "A page of favorite links for Yunohost",
|
|
||||||
"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_description": "A minimalist, opensource online pastebin where the server has zero knowledge of pasted data",
|
|
||||||
"zeronet_manifest_description": "Decentralized websites using Bitcoin crypto and BitTorrent network",
|
|
||||||
"zomburl_manifest_description": "An URL shortening service"
|
|
||||||
}
|
|
570
locales/oc.json
570
locales/oc.json
|
@ -1,570 +0,0 @@
|
||||||
{
|
|
||||||
"20euros_manifest_description": "2048 - 20euros",
|
|
||||||
"243_manifest_description": "Clone du jeu 2048",
|
|
||||||
"LBCAlerte_manifest_description": "Aplicacion LBCAlerte pour YunoHost.",
|
|
||||||
"abantecart_manifest_arguments_install_admin_email": "Votre adresse courriel.",
|
|
||||||
"abantecart_manifest_arguments_install_admin_name": "Causissètz l’administrator de Abantecart (deu èsser un utilizaire YunoHost existent)",
|
|
||||||
"abantecart_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l’Administrateur. ≥ cinq caractères (sans caractères spéciaux)",
|
|
||||||
"abantecart_manifest_description": "Créer un site ecommerce",
|
|
||||||
"adhocserver_manifest_description": "Un serveur adhoc pour la PSP de sony",
|
|
||||||
"adminer_manifest_arguments_install_root_access": "Permettre l’accès Root (par sécurité, désactivé par défaut) ?",
|
|
||||||
"adminer_manifest_description": "Gestionnaire de base de données en un seul fichier PHP",
|
|
||||||
"agendav_manifest_arguments_install_language": "Lengue per defaut d’utilizar dins 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 Aplicacion créé un mirroir de ajax.googleapis.com",
|
|
||||||
"ampache_manifest_description": "Una aplicacion de streaming audio et vidéo",
|
|
||||||
"archivist_manifest_arguments_install_apps_backup": "Voulez-vous sauvegarder vos Aplicacions ?",
|
|
||||||
"archivist_manifest_arguments_install_core_backup": "Voulez-vous sauvegarder votre système YunoHost ?",
|
|
||||||
"archivist_manifest_arguments_install_encrypt": "Voulez-vous chiffrer vos sauvegardes ?",
|
|
||||||
"archivist_manifest_arguments_install_encryption_pwd": "Définissez le mot de passe pour le chiffrement.",
|
|
||||||
"archivist_manifest_arguments_install_frequency": "Choisissez la fréquence de vos sauvegardes ?",
|
|
||||||
"archivist_manifest_arguments_install_help_encryption_pwd": "C’est nécessaire si vous utilisez le chiffrement des sauvegardes.",
|
|
||||||
"archivist_manifest_description": "Sauvegardes automatisées.",
|
|
||||||
"askbot_manifest_description": "Askbot est un système de Questions et Réponses",
|
|
||||||
"baikal_manifest_description": "Serveur CalDAV+CardDAV léger",
|
|
||||||
"bicbucstriim_manifest_arguments_install_login": "Désactiver l’authentification BicBucStriim ?",
|
|
||||||
"bicbucstriim_manifest_description": "BicBucStriim est une interface web pour accéder à votre collection d’e-book.",
|
|
||||||
"bolt_manifest_arguments_install_public_site": "Est-ce un site Bold public ?",
|
|
||||||
"bolt_manifest_description": "Bolt est un outil de gestion de contenu qui vise à être aussi simple et direct que possible.",
|
|
||||||
"bozon_manifest_arguments_install_backup_core_only": "Dans le cas d’une sauvegarde, dois-je sauvegarder uniquement le cœur d’une Aplicacion ? (vos données téléversées dans BoZoN telles que les vidéos, photos, documents… ne seront pas sauvegardées)",
|
|
||||||
"bozon_manifest_arguments_install_filesize": "Définissez la taille limite de téléchargement",
|
|
||||||
"bozon_manifest_arguments_install_language": "Lenga (se la lenga del navegador es pas detectada)",
|
|
||||||
"bozon_manifest_description": "Aplicacion minimaliste de partage de fichiers",
|
|
||||||
"btsync_manifest_arguments_install_platform": "Choisissez la plateforme BitTorrentSync",
|
|
||||||
"btsync_manifest_description": "BitTorrent Sync : synchronisation de répertoire par torrent",
|
|
||||||
"cachet_manifest_arguments_install_admin_password": "Définissez le mot de passe pour l’administrateur",
|
|
||||||
"cachet_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"cachet_manifest_description": "Système de page de status open-source",
|
|
||||||
"cesium_manifest_description": "Client Duniter pour gérer ses portes-monnaie, les certifications au sein d’une monnaie libre.",
|
|
||||||
"cheky_manifest_description": "Le paquet Cheky pour YunoHost.",
|
|
||||||
"chtickynotes_manifest_description": "Des post-its génériques à tout faire",
|
|
||||||
"coin_manifest_arguments_install_email": "Choisissez le courriel auquel transmettre les notifications",
|
|
||||||
"coin_manifest_arguments_install_isp_name": "Saisissez le nom de votre fournisseur d’accès",
|
|
||||||
"coin_manifest_arguments_install_isp_site": "Saisissez l’adresse du site web de votre fournisseur d’accès",
|
|
||||||
"coin_manifest_description": "Tableau de bord des membres pour les fournisseurs d’accès associatifs.",
|
|
||||||
"collabora_manifest_arguments_install_nextclouddomain": "Le domaine de votre instance Nextcloud",
|
|
||||||
"collabora_manifest_description": "Le paquet Collabora Online pour YunoHost.",
|
|
||||||
"collaboradocker_manifest_description": "Collabora Online est une puissante suite bureautique en ligne basée sur LibreOffice",
|
|
||||||
"concrete5_manifest_arguments_install_admin_name": "Causissètz l’administrator de Concrete5 (deu èsser un utilizaire YunoHost existent)",
|
|
||||||
"concrete5_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l’administrateur. ≥ cinq caractères",
|
|
||||||
"concrete5_manifest_arguments_install_language": "Langue par défaut à utiliser sur votre interface d’administration",
|
|
||||||
"concrete5_manifest_description": "Créer un site web moderne",
|
|
||||||
"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 Aplicacion 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_description": "Calibre OPDS (et HTML) PHP Serveur",
|
|
||||||
"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_port": "LOCAL: Choisissez le port d’écoute de l’Aplicacion",
|
|
||||||
"couchpotato_manifest_arguments_install_public": "Es una aplicacion publica ?",
|
|
||||||
"couchpotato_manifest_arguments_remove_data": "Souhaitez-vous conserver les données ?",
|
|
||||||
"couchpotato_manifest_description": "Téléchargement automatisé de films",
|
|
||||||
"cryptpad_manifest_description": "Pad chiffré",
|
|
||||||
"cubiks2048_manifest_description": "Clone du jeu 2048 en 3D",
|
|
||||||
"democracyos_manifest_description": "Aplicacion qui rend possible la prise de décision.",
|
|
||||||
"diaspora_manifest_arguments_install_site_public": "Es un site public ?",
|
|
||||||
"diaspora_manifest_description": "Service de réseau social distribué",
|
|
||||||
"diasporadocker_manifest_description": "Un réseau social puissant et ouvert",
|
|
||||||
"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 Aplicacions qui n’ont pas encore été intégrées à YunoHost",
|
|
||||||
"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_description": "Docker permet de déployer des Aplicacions qui n’ont pas encore été intégrées à YunoHost",
|
|
||||||
"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_member": "Les utilisateurs YunoHost doivent-ils être ajoutés comme membres en attente de validation dans Dolibarr ?",
|
|
||||||
"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_description": "Moteur de blog",
|
|
||||||
"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_public_site": "Est-ce que cette Aplicacion doit être visible publiquement ?",
|
|
||||||
"emailpoubelle_manifest_description": "Créez des adresses courriel jetables qui redirigent les mails vers votre adresse réelle",
|
|
||||||
"ethercalc_manifest_arguments_install_expire": "Suppression après N jours d’inactivités. (0 pour désactiver cette fonctionnalité)",
|
|
||||||
"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_export": "Utiliser AbiWord (~260 Mio) ou LibreOffice (~400 Mio) (plus stable) pour étendre les capacités d’export (pdf, doc) ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_mypads": "<a href=https://git.framasoft.org/framasoft/ep_mypads target=_blank>plugin mypads</a>",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_path": "Si vous choisissez d’installer le plugin mypads, etherpad doit être à la racine (/)",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_help_useldap": "Utiliser LDAP ne vous permettra pas d’ajouter des utilisateurs autres que ceux de YunoHost.",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_language": "Causissètz la lenga",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_mypads": "Voulez-vous installer le plugin mypads ?",
|
|
||||||
"etherpad_mypads_manifest_arguments_install_useldap": "Souhaitez-vous utiliser LDAP avec mypads ?",
|
|
||||||
"etherpad_mypads_manifest_description": "Clone de Framapad, un éditeur en ligne fournissant l’édition collaborative en temps réel.",
|
|
||||||
"etherpadlite_manifest_arguments_install_public_site": "Est-ce un Etherpad public ?",
|
|
||||||
"etherpadlite_manifest_description": "Éditeur en ligne proposant une édition collaborative vraiment en temps réel",
|
|
||||||
"facette_manifest_description": "Paquet Facette pour YunoHost.",
|
|
||||||
"fallback_manifest_arguments_install_auto_deploy": "[fallback server seulement] Déployer automatiquement le fallback en cas de panne.",
|
|
||||||
"fallback_manifest_arguments_install_auto_detect_failure": "[fallback server seulement] Détection automatique d’une panne du serveur principal ?",
|
|
||||||
"fallback_manifest_arguments_install_contact_mail": "[fallback server seulement] Adresse e-mail à contacter en cas de panne.",
|
|
||||||
"fallback_manifest_arguments_install_delay_before_incident": "[fallback server seulement] Délai avant de déclarer un incident avec le serveur principal.",
|
|
||||||
"fallback_manifest_arguments_install_encrypt": "[main server seulement] Voulez-vous chiffrer vos sauvegardes ?",
|
|
||||||
"fallback_manifest_arguments_install_encryption_pwd": "[main server seulement] Définissez le mot de passe de chiffrement.",
|
|
||||||
"fallback_manifest_arguments_install_help_auto_deploy": "Uniquement pour la détection automatique de panne.",
|
|
||||||
"fallback_manifest_arguments_install_help_contact_mail": "Uniquement pour la détection automatique de panne.<br>Devrait évidemment être une adresse sur un autre serveur !",
|
|
||||||
"fallback_manifest_arguments_install_help_delay_before_incident": "Uniquement pour la détection automatique de panne.",
|
|
||||||
"fallback_manifest_arguments_install_help_encrypt": "Vous ne devriez désactiver le chiffrement que si le serveur de secours est vraiment sûr.",
|
|
||||||
"fallback_manifest_arguments_install_help_encryption_pwd": "C’est nécessaire si vous n’avez pas désactivé le chiffrement.",
|
|
||||||
"fallback_manifest_arguments_install_help_install_type": "Choisissez « main server » si vous effectuez une installation sur votre vrai serveur. Ou « fallback server » si c’est votre serveur de secours.",
|
|
||||||
"fallback_manifest_arguments_install_help_pub_key": "La clé publique ssh vous sera fournie à la fin de l’installation du serveur principal.",
|
|
||||||
"fallback_manifest_arguments_install_help_ssh_host": "Ce serveur doit être en route, pour la commande ssh-keyscan.",
|
|
||||||
"fallback_manifest_arguments_install_install_type": "Choisissez le type d’installation que vous souhaitez.",
|
|
||||||
"fallback_manifest_arguments_install_pub_key": "[fallback server seulement] Placez ici la clé publique ssh.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_host": "[main server seulement] Définissez le nom de domaine (ou l’adresse ip) du serveur de secours.",
|
|
||||||
"fallback_manifest_arguments_install_ssh_port": "[main server seulement] Définissez le port pour la connexion ssh.",
|
|
||||||
"fallback_manifest_description": "Serveur de secours pour YunoHost.",
|
|
||||||
"ffsync_manifest_description": "Le serveur de synchronisation de Mozilla, pour héberger vos données Firefox",
|
|
||||||
"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_adminpass": "Insérez votre mot de passe",
|
|
||||||
"flarum_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"flarum_manifest_arguments_install_title": "Choisissez un titre pour votre forum (nécessaire pour la post-installation automatique)",
|
|
||||||
"flarum_manifest_description": "Package Flarum (système de forum libre) pour YunoHost.",
|
|
||||||
"flask_manifest_arguments_install_display_name": "Nom d’affichage (utilisé dans le portail SSO)",
|
|
||||||
"flask_manifest_arguments_install_help_system_name": "(minuscules uniquement, caractères alphanumériques, sans espaces)",
|
|
||||||
"flask_manifest_arguments_install_system_name": "Nom court utilisé par le système pour identifier votre Aplicacion",
|
|
||||||
"flask_manifest_description": "Modèle de l’Aplicacion Flask.",
|
|
||||||
"fluxbb_manifest_description": "FluxBB est un forum ergonomique, rapide et léger pour votre site internet.",
|
|
||||||
"framaestro_hub_manifest_description": "Un hub agrégateur de services en ligne : vous permet d’avoir une Aplicacion Framaestro collaborative en temps réel (vous devez d’abord installer framaestro).",
|
|
||||||
"framaestro_manifest_description": "Agrégateur de services en ligne. Si vous voulez avoir un Framaestro collaboratif en temps réel, installez framaestro_hub (travail en cours)",
|
|
||||||
"framagames_manifest_description": "Ensemble de jeux Framagames venant de Framasoft",
|
|
||||||
"freeboard_manifest_arguments_install_adv_html": "Utilisé l’Html développeur ? (Tableau de bord permanent, plus de plugins...)",
|
|
||||||
"freeboard_manifest_arguments_install_dash": "Tableau de bord permanent, à placer dand /var/www/votre_dashboard/",
|
|
||||||
"freeboard_manifest_arguments_install_dash_bool": "Utiliser un tableau de bord permanent ? (Dev Html requis)",
|
|
||||||
"freeboard_manifest_description": "Créateur de tableaux de bords faits pour l’IOT.",
|
|
||||||
"freshrss_manifest_description": "FreshRSS est un agrégateur de flux RSS à auto-héberger",
|
|
||||||
"friendica_manifest_arguments_install_public_site": "Es un site public ?",
|
|
||||||
"friendica_manifest_description": "Serveur de Communication Social",
|
|
||||||
"ftp_webapp_manifest_arguments_install_language": "Causissètz la lenga del client ftp",
|
|
||||||
"ftp_webapp_manifest_description": "Serveur FTP et client Net2ftp configuré pour être utilisé avec les webapp sur le port personnalisé 21021",
|
|
||||||
"funkwhale_manifest_description": "Un serveur de musique moderne, libre et convivial",
|
|
||||||
"galette_manifest_arguments_install_adminPass": "Mot de passe administrateur",
|
|
||||||
"galette_manifest_description": "Aplicacion web de gestion des membres pour les associations",
|
|
||||||
"gateone_manifest_description": "Émulateur de terminal et client SSH en HTML5",
|
|
||||||
"ghostblog_manifest_description": "Plateforme de blogging",
|
|
||||||
"gitea_manifest_description": "Une forge git légère",
|
|
||||||
"gitlab_manifest_description": "Gitlab pour YunoHost.",
|
|
||||||
"gitolite_manifest_arguments_install_adminpubkey": "Veuillez placer 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_public_site": "Est-ce que cette Aplicacion doit être visible publiquement ?",
|
|
||||||
"gitweb_manifest_description": "Une interface web pour consulter les dépôts gitolite",
|
|
||||||
"glowingbear_manifest_description": "Un client Web pour WeeChat.",
|
|
||||||
"glpi_manifest_arguments_install_language": "Causissètz la lenga del GLPI",
|
|
||||||
"glpi_manifest_description": "Logiciel de création de blog ou de site Web",
|
|
||||||
"gnusocial_manifest_arguments_install_name": "Choisissez un nom pour votre nœud GNU Social",
|
|
||||||
"gnusocial_manifest_arguments_install_profile": "Q’est ce qu’un profile GNU Social ?",
|
|
||||||
"gnusocial_manifest_description": "Créer et fédérer les nœuds de communications",
|
|
||||||
"gogs_manifest_arguments_install_public_site": "Es un site public ?",
|
|
||||||
"gogs_manifest_description": "Une forge Git légère",
|
|
||||||
"grafana_manifest_arguments_install_port": "Choisissez un port pour votre serveur. Laissez la valeur par défaut si vous ne souhaitez pas le changer",
|
|
||||||
"grafana_manifest_description": "Tableaux de bords de supervision",
|
|
||||||
"grav_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"grav_manifest_arguments_install_multisite": "Activer l’option multi-site ?",
|
|
||||||
"grav_manifest_description": "Grav - Grav est un CMS moderne, open source et ne nécessitant aucune base de données",
|
|
||||||
"haste_manifest_description": "Haste est un presse-papier open source écrit en node.js",
|
|
||||||
"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_port": "LOCAL: Choisissez le port d’écoute de l’Aplicacion",
|
|
||||||
"headphones_manifest_arguments_install_public": "Es una aplicacion publica ?",
|
|
||||||
"headphones_manifest_arguments_remove_data": "Souhaitez-vous conserver les données ?",
|
|
||||||
"headphones_manifest_description": "Téléchargement automatisé de musiques",
|
|
||||||
"hextris_manifest_description": "Un jeu de puzzle très rapide.",
|
|
||||||
"horde_manifest_arguments_install_ansel_install": "Installer un gestionnaire de photos complet (Ansel) ?",
|
|
||||||
"horde_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"horde_manifest_arguments_install_service_autodiscovery": "Voulez-vous activer le service d’auto-découverte CaldDav/CardDAV ?",
|
|
||||||
"horde_manifest_arguments_install_sesha_install": "Installer un gestionnaire d’inventaire (Sesha) ?",
|
|
||||||
"horde_manifest_arguments_install_whups_install": "Installer un système de gestion de tickets (Whups) ?",
|
|
||||||
"horde_manifest_arguments_install_wicked_install": "Installer un Wiki (Wicked) ?",
|
|
||||||
"horde_manifest_description": "Un logiciel de groupe (messagerie web, carnet d’adresse, calendrier) utilisant PHP",
|
|
||||||
"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_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_description": "Un ensemble d’outils HTML simple et pratique",
|
|
||||||
"htpc-manager_manifest_description": "Piloter votre HTPC où vous souhaitez",
|
|
||||||
"hubzilla_manifest_arguments_install_adminemail": "Courriel pour l’administrateur du hub Hubzilla",
|
|
||||||
"hubzilla_manifest_arguments_install_email": "Courriel pour l’administrateur du hub Hubzilla",
|
|
||||||
"hubzilla_manifest_arguments_install_run_exec": "Acceptez-vous de modifier php.ini pour permettre l’usage de la fonction exec() par Hubzilla ?",
|
|
||||||
"hubzilla_manifest_arguments_install_upload": "Taille maximale des téléversements (Mio)",
|
|
||||||
"hubzilla_manifest_description": "Hubzilla est un réseau social décentralisé de partage de contenu.",
|
|
||||||
"huginn_manifest_arguments_install_invitation": "Choisissez un code d’invitation pour les nouveaux utilisateurs",
|
|
||||||
"huginn_manifest_description": " Construisez des agents qui surveillent et agissent en votre nom. Vos agents sont prêts !",
|
|
||||||
"humhub_manifest_description": "Réseau social d’entreprise.",
|
|
||||||
"ihatemoney_manifest_description": "Una aplicacion web de comptes partagés à plusieurs",
|
|
||||||
"jappix_manifest_arguments_install_language": "Causissètz la lenga per defaut de Jappix",
|
|
||||||
"jappix_manifest_arguments_install_name": "Choisissez un nom pour Jappix",
|
|
||||||
"jappix_manifest_description": "Un réseau social libre",
|
|
||||||
"jappix_mini_manifest_arguments_install_muc": "Jappix Mini doit rejoindre quel salon de discussion ? Répondre « No » pour qu’il ne rejoindre aucun salon de discussion.",
|
|
||||||
"jappix_mini_manifest_arguments_install_user": "Jappix Mini doit rejoindre quel utilisateur ? Répondre « No » pour qu’il ne rejoigne aucun utilisateur. L’étape suivante est pour rejoindre un salon de discussion.",
|
|
||||||
"jappix_mini_manifest_description": "Intégration de Jappix Mini chat XMPP.",
|
|
||||||
"jeedom_manifest_arguments_install_sudo": "Acceptez-vous de donner les droits sudo à l’utilisateur Jeedom ? C’est nécessaire pour le fonctionnement de la majorité des fonctionnalités de Jeedom. Cependant, des attaquants pourraient utiliser les vulnérabilités de Jeedom pour prendre le contrôle de votre serveur.",
|
|
||||||
"jeedom_manifest_arguments_install_zwave": "Do you want to install OpenZWave dependences for ZWave home automation modules ?",
|
|
||||||
"jeedom_manifest_description": "Jeedom est une Aplicacion de domotique",
|
|
||||||
"jenkins_manifest_description": "Serveur extensible d’intégration continue",
|
|
||||||
"jirafeau_manifest_arguments_install_admin_user": "Causissètz l’administrator (seul autorisé à accéder à la page admin.php)",
|
|
||||||
"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_description": "Aplicacion web de conférence vidéo",
|
|
||||||
"joomla_manifest_arguments_install_email": "Courriel de l’administrateur",
|
|
||||||
"joomla_manifest_arguments_install_username": "Identifiant de l’administrateur",
|
|
||||||
"joomla_manifest_description": "Joomla! est un système de gestion de contenu primé.",
|
|
||||||
"kanboard_manifest_description": "Kanboard est une Aplicacion web de management de tâches simples",
|
|
||||||
"keeweb_manifest_description": "Gestionnaire de mots de passe compatible avec KeePass.",
|
|
||||||
"kiwiirc_manifest_arguments_install_public_site": "Est-ce un site KiwiIRC public ?",
|
|
||||||
"kiwiirc_manifest_description": "Client Web pour IRC",
|
|
||||||
"kodi_manifest_arguments_install_launch_on_boot": "Lancer Kodi au démarrage du serveur YunoHost",
|
|
||||||
"kodi_manifest_arguments_install_open_webserver_port": "Ouvrir le port 8080 afin d’utiliser via votre téléphone une Aplicacion à distance Kodi sur votre réseau local",
|
|
||||||
"kodi_manifest_description": "Transforme votre serveur YunoHost en un centre multimédia avec Kodi",
|
|
||||||
"kresus_manifest_description": "Kresus est un gestionnaire de finances personnel.",
|
|
||||||
"laverna_manifest_description": "Laverna est une Aplicacion JavaScript de prise de notes supportant le format Markdown et le chiffrement. Une alternative open source à Evernote.",
|
|
||||||
"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_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": "Causissètz l’administrator (seul autorisé à accéder à l’interface d’administration)",
|
|
||||||
"lektor_manifest_arguments_install_name": "Choisissez un nom pour votre site web",
|
|
||||||
"lektor_manifest_arguments_install_ssh_pub_key": "Une clé ssh publique afin de pouvoir cloner le dépôt (non, pas de mot de passe).",
|
|
||||||
"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.",
|
|
||||||
"libresonic_manifest_description": "Libresonic est un serveur média open source basé sur le web.",
|
|
||||||
"limesurvey_manifest_arguments_install_language": "Causissètz la lenga per defaut de LimeSurvey",
|
|
||||||
"limesurvey_manifest_description": "LimeSurvey est un outil de création et diffusion de sondage en ligne.",
|
|
||||||
"linuxdash_manifest_arguments_install_user": "Choisissez l’utilisateur YunoHost qui a accès à Linux-Dash",
|
|
||||||
"linuxdash_manifest_description": "Tableau de bord léger pour le monitoring d’un serveur GNU/linux.",
|
|
||||||
"lstu_manifest_description": "Raccourcisseur d’adresses",
|
|
||||||
"lufi_manifest_description": "Aplicacion d’auto-hébergement de fichiers et de partages anonymes",
|
|
||||||
"lutim_manifest_arguments_install_always_encrypt": "Forcer le chiffrement des images ?",
|
|
||||||
"lutim_manifest_description": "Aplicacion d’hébergement et de partage d’images anonyme",
|
|
||||||
"lychee_manifest_arguments_install_admin_pwd": "Choisissez un mot de passe pour le compte administrateur",
|
|
||||||
"lychee_manifest_arguments_install_admin_user": "Choisissez le nom d’utilisateur de l’administrateur",
|
|
||||||
"lychee_manifest_description": "Gestionnaire de photos autohebergé",
|
|
||||||
"mailman_manifest_arguments_install_adminPass": "Choisissez un mot de passe d’administration pour mailman",
|
|
||||||
"mailman_manifest_arguments_install_admin_password": "Choisissez un mot de passe d’administration pour mailman",
|
|
||||||
"mailman_manifest_arguments_install_help_admin_password": "Sera nécessaire pour créer et administrer les listes. Prudence cependant : ce mot de passe sera écrit en clair sur le disque…",
|
|
||||||
"mailman_manifest_arguments_install_help_domain": "Ceci sera le domaine sur lequel s’exécuteront les listes de discussions",
|
|
||||||
"mailman_manifest_arguments_install_help_path": "L’interface web pour mailman sera accessible via le.domaine.fr/chemin",
|
|
||||||
"mailman_manifest_arguments_install_language": "Choisissez une langue par défaut pour mailman",
|
|
||||||
"mailman_manifest_arguments_install_listPrefix": "Choisissez un préfixe pour les listes mailman (c'est-à-dire prefix dans listname@prefix.yourdomain)",
|
|
||||||
"mailman_manifest_description": "Logiciel libre pour gérer des listes de diffusion et newsletters.",
|
|
||||||
"mastodon_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"mastodon_manifest_arguments_install_passwd": "Saisissez un mot de passe pour l’administrateur ≥ 8 caractères",
|
|
||||||
"mastodon_manifest_description": "Mastodon est un réseau social libre et gratuit.",
|
|
||||||
"mattermost_manifest_arguments_install_analytics": "Permettre à Mattermost d’envoyer des télémesures sur votre utilisation de cette Aplicacion ?",
|
|
||||||
"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",
|
|
||||||
"mediadrop_manifest_description": "Mediadrop - La plate-forme vidéo Open Source du Web",
|
|
||||||
"mediagoblin_manifest_arguments_install_public": "Es un site public ?",
|
|
||||||
"mediagoblin_manifest_description": "Plateforme de diffusion de différents types de multimédia",
|
|
||||||
"mediawiki_manifest_arguments_install_language": "Causissètz la lenga",
|
|
||||||
"mediawiki_manifest_arguments_install_wikiname": "Choisissez un nom pour le wiki",
|
|
||||||
"mediawiki_manifest_description": "Wiki Open Source",
|
|
||||||
"minchat_manifest_arguments_install_ispublic": "Type Y if website is public",
|
|
||||||
"minchat_manifest_description": "Un web chat minimaliste",
|
|
||||||
"minetest_manifest_arguments_install_creative": "Activer ou non le mode créatif (inventaire illimité)",
|
|
||||||
"minetest_manifest_arguments_install_damage": "Permettre aux joueurs de recevoir des dommages et de mourir",
|
|
||||||
"minetest_manifest_arguments_install_pvp": "S’il faut permettre aux joueurs de s’entretuer les uns les autres",
|
|
||||||
"minetest_manifest_description": "Minetest est un jeu et un moteur de jeu voxel open-source et libre. Complètement extensible. Nécessitant un client pour se connecter au serveur.",
|
|
||||||
"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_description": "Lecteur de flux RSS minimaliste.",
|
|
||||||
"modernpaste_manifest_description": "Une alternative Pastebin moderne et riche en fonctionnalités",
|
|
||||||
"monica_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"monica_manifest_description": " Personal Relationship Manager - un nouveau type de CRM pour organiser les interactions avec vos amis et votre famille.",
|
|
||||||
"monit_manifest_description": "Supervision de process, fichiers, répertoires, systèmes de fichiers and hôtes",
|
|
||||||
"monitorix_manifest_description": "Un outil de monitoring",
|
|
||||||
"mopidy_manifest_arguments_install_admin_mopidy": "Causissètz l’administrator de Mopidy (doit être un utilisateur YunoHost)",
|
|
||||||
"mopidy_manifest_arguments_install_soundcloud_id": "ID Soundcloud (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id": "Identifiant client Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_id_secret": "Identifiant client secret Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_pass": "Mot de passe Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_arguments_install_spotify_user": "Utilisateur Spotify (champ optionnel)",
|
|
||||||
"mopidy_manifest_description": "Mopidy - est un serveur de musique extensible écrit en Python.",
|
|
||||||
"movim_manifest_arguments_install_language": "Lenga del 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": "Le réseau social qui déchire",
|
|
||||||
"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_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_description": "Interface web pour administrer un serveur mumble",
|
|
||||||
"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) à faible latence et de haute qualité, l’usage principal étant lors des parties de jeux en réseau.",
|
|
||||||
"munin_manifest_description": "Resource monitoring tool",
|
|
||||||
"my_webapp_manifest_arguments_install_with_mysql": "Avez-vous besoin d’une base de données MySQL ?",
|
|
||||||
"my_webapp_manifest_description": "Aplicacion Web personnalisée avec accès SFTP",
|
|
||||||
"mycryptochat_manifest_description": "Messagerie Instantanée chiffrée",
|
|
||||||
"mytinytodo_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"mytinytodo_manifest_description": "Un script Open Source simple pour les listes de tâches.",
|
|
||||||
"netdata_manifest_description": "Monitoring serveur en temps reel",
|
|
||||||
"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",
|
|
||||||
"nexusoss_manifest_arguments_install_lang": "Seleccionatz la lenga per defaut",
|
|
||||||
"nexusoss_manifest_description": "Le gestionnaire de Nexus Repository OSS par Sonatype",
|
|
||||||
"noalyss_manifest_description": "Logiciel libre de comptabilité (comptabilité Belge et Française)",
|
|
||||||
"nodebb_manifest_arguments_install_admin_name": "Causissètz l’administrator de Abantecart (deu èsser un utilizaire YunoHost existent)",
|
|
||||||
"nodebb_manifest_description": "Forum Nodejs",
|
|
||||||
"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_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_description": "L’ERP de gestion d’entreprise Apache-OFBiz",
|
|
||||||
"openidsimplesamlphp_manifest_description": "Fournisseur OpenID basé sur SimpleSAMLphp",
|
|
||||||
"opennote_manifest_description": "OpenNote est une alternative web à Microsoft OneNote (T) and EverNote.",
|
|
||||||
"opensondage_manifest_arguments_install_language": "Choisissez la langue par défault d’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_description": "Votre tunnel privé et sécurisé vers Internet",
|
|
||||||
"openwrt_manifest_arguments_install_server": "Choisissez l’IP sur laquelle OpenWRT sera installé",
|
|
||||||
"openwrt_manifest_description": "Accès à OpenWRT",
|
|
||||||
"ore_manifest_arguments_install_email": "Fournissez une adresse courriel pour envoyer les paramètres de la base de données (Le mot de passe sera envoyé dans ce courriel. Donc PRUDENCE)",
|
|
||||||
"ore_manifest_description": "Paquet Open Real Estate pour YunoHost.",
|
|
||||||
"osjs_manifest_description": "Bureau auquel vous avez accès via votre navigateur",
|
|
||||||
"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 !",
|
|
||||||
"owntracks_manifest_description": "Paquet Owntracks (historique de localisation) pour YunoHost.",
|
|
||||||
"pagure_manifest_description": "Une forge logicielle utilisant git et Python",
|
|
||||||
"pelican_manifest_arguments_install_author": "Choisissez un auteur",
|
|
||||||
"pelican_manifest_arguments_install_title": "Choisissez un titre par défaut pour votre site internet",
|
|
||||||
"pelican_manifest_description": "Générateur de sites statiques Pelican",
|
|
||||||
"pgadmin_manifest_arguments_install_admin_password": "Saisissez un mot de passe pour l’administrateur",
|
|
||||||
"pgadmin_manifest_description": "Gérez des bases de données PostgreSQL sur le web",
|
|
||||||
"phpBB_manifest_arguments_install_admin_email": "Renseignez un courriel pour l’admin phpBB - Vérifiez bien qu’il existe sur ce serveur !",
|
|
||||||
"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_lang": "Configurar la lenga de phpBB",
|
|
||||||
"phpBB_manifest_description": "Le 1er logiciel de forum libre et gratuit",
|
|
||||||
"phpldapadmin_manifest_description": "Aplicacion web de gestion de la base OpenLDAP",
|
|
||||||
"phpmyadmin_manifest_description": "Aplicacion web de gestion des bases de données MySQL",
|
|
||||||
"phpsysinfo_manifest_arguments_install_display_mode": "Mode d’affichage ?",
|
|
||||||
"phpsysinfo_manifest_arguments_install_language": "Lenga per defaut ?",
|
|
||||||
"phpsysinfo_manifest_description": "Un script PHP paramétrable qui affiche des informations sur votre système.",
|
|
||||||
"pihole_manifest_arguments_install_enable_dhcp": "Voulez-vous définir Pi-hole comme votre serveur DHCP ?",
|
|
||||||
"pihole_manifest_arguments_install_help_enable_dhcp": "Si vous voulez faire ça, <a href=https://GitHub.com/YunoHost-Apps/pihole_ynh/blob/master/dhcp.md#faire-de-pi-hole-votre-serveur-dhcp target=_blank>vous devriez vraiment lire ça avant</a> !",
|
|
||||||
"pihole_manifest_arguments_install_help_query_logging": "Garder cette option désactivée rendra les graphiques sur la page d’administration inutiles. Mais respectera la vie privée des autres utilisateurs.",
|
|
||||||
"pihole_manifest_arguments_install_query_logging": "Voulez-vous enregistrer les requêtes DNS ?",
|
|
||||||
"pihole_manifest_description": "Filtrage publicitaire sur l’ensemble du réseau via votre propre serveur DNS.",
|
|
||||||
"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_description": "PirateBox",
|
|
||||||
"piwigo_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"piwigo_manifest_description": "Galerie photo",
|
|
||||||
"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_description": "Logiciel de mesure de statistiques web, pour analyser le trafic de vos sites.",
|
|
||||||
"plexmediaserver_manifest_description": "Serveur multimédia",
|
|
||||||
"plonecms_manifest_arguments_install_admin_name": "Causissètz l’administrator de Plone (doit être un utilisateur YunoHost)",
|
|
||||||
"plonecms_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l’administrateur. ≥ cinq caractères",
|
|
||||||
"plonecms_manifest_description": "Créez un site web moderne avec un CMS écrit en Python",
|
|
||||||
"pluxml_manifest_arguments_install_default_lang": "Lengue per defaut",
|
|
||||||
"pluxml_manifest_arguments_install_public_site": "Est-ce que cette Aplicacion doit être visible publiquement ?",
|
|
||||||
"pluxml_manifest_description": "Un blog/CMS rapide et léger enregistrant les données sous la forme de fichiers XML et non pas dans une Base de Données.",
|
|
||||||
"portainer_manifest_description": "Une interface web pour le Docker Engine Management",
|
|
||||||
"prestashop_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"prestashop_manifest_arguments_install_passwd": "Définissez le mot de passe pour l’administrateur. ≥ cinq caractères",
|
|
||||||
"prestashop_manifest_description": "Crée un site web e-commerce",
|
|
||||||
"proftpd_manifest_description": "Le serveur FTP Proftpd pour YunoHost",
|
|
||||||
"pydio_manifest_description": "Plateforme de partage de fichiers",
|
|
||||||
"radicale_manifest_arguments_install_infcloud": "Installer l’interface web InfCloud ?",
|
|
||||||
"radicale_manifest_arguments_install_language": "Causissètz la lenga de l’interfàcia",
|
|
||||||
"radicale_manifest_description": "Serveur de synchronisation CalDAV et CardDAV",
|
|
||||||
"rainloop_manifest_arguments_install_lang": "Seleccionatz la lenga per defaut",
|
|
||||||
"rainloop_manifest_arguments_install_ldap": "Souhaitez-vous ajouter les utilisateurs YunoHost dans les suggestions de destinataires ?",
|
|
||||||
"rainloop_manifest_description": "Webmail léger multi-comptes",
|
|
||||||
"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_description": "Un client web pour matrix",
|
|
||||||
"roadiz_manifest_arguments_install_admin_name": "Causissètz l’administrator de Roadiz (deu èsser un utilizaire YunoHost existent)",
|
|
||||||
"roadiz_manifest_arguments_install_admin_pass": "Définissez le mot de passe pour l’administrateur. ≥ cinq caractères",
|
|
||||||
"roadiz_manifest_description": "Créer un site web moderne avec un CMS polymorphique",
|
|
||||||
"rocketchat_manifest_arguments_install_lang": "Seleccionatz la lenga per defaut",
|
|
||||||
"rocketchat_manifest_description": "La plateforme de discussion ultime",
|
|
||||||
"roundcube_manifest_arguments_install_with_carddav": "Installer le plugin de synchronisation CardDAV ?",
|
|
||||||
"roundcube_manifest_arguments_install_with_enigma": "Installer le plugin de chiffrement des messages Enigma ?",
|
|
||||||
"roundcube_manifest_description": "Webmail Open Source",
|
|
||||||
"rss-bridge_manifest_description": "Un projet PHP capable de générer des flux ATOM pour des sites web n’en ayant pas.",
|
|
||||||
"rutorrent_manifest_arguments_install_data_dir": "Choisissez un dossier pour sauver les telechargements",
|
|
||||||
"rutorrent_manifest_description": "Client torrent",
|
|
||||||
"scm_manifest_arguments_install_admin_passwd": "Choisissez un mot de passe pour l’administrateur SCM-Manager",
|
|
||||||
"scm_manifest_description": "La facon la plus simple de gérer ses dépots Git, Mercurial et Subversion par http",
|
|
||||||
"scrumblr_manifest_description": "Aplicacion pour créer des post-it",
|
|
||||||
"seafile_manifest_arguments_install_admin_password": "Saisissez un mot de passe pour l’administrateur",
|
|
||||||
"seafile_manifest_arguments_install_architecture": "Quelle est l’architecture du serveur ?",
|
|
||||||
"seafile_manifest_arguments_install_public_site": "Es un site public ? Pour utiliser un client sur PC ou l’Aplicacion mobile, Seafile doit être public.",
|
|
||||||
"seafile_manifest_arguments_install_server_name": "Choisissez un nom (3 à 15 lettres ou chiffres)",
|
|
||||||
"seafile_manifest_description": "Stockage Cloud Open Source",
|
|
||||||
"searx_manifest_description": "Un méta-moteur de recherche respectueux de la vie privée et bidouillable",
|
|
||||||
"seenthis_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"seenthis_manifest_description": "Seenthis - Short-blogging destiné à la veille d’actualité.",
|
|
||||||
"shaarli_manifest_arguments_install_privateinstance": "Cette instance est-elle privée ?",
|
|
||||||
"shaarli_manifest_arguments_install_privatelinkbydefault": "Les nouveaux liens sont-ils privés par défaut ?",
|
|
||||||
"shaarli_manifest_arguments_install_public": "Est-ce un site Shaarli public ?",
|
|
||||||
"shaarli_manifest_arguments_install_title": "Choisissez un titre pour la page de Shaarli",
|
|
||||||
"shaarli_manifest_description": "Clone de delicious",
|
|
||||||
"shellinabox_manifest_description": "Émulateur de terminal web",
|
|
||||||
"shout_manifest_description": "Client Web IRC",
|
|
||||||
"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_port": "LOCAL: Choisissez le port d’écoute de l’Aplicacion",
|
|
||||||
"sickbeard_manifest_arguments_install_public": "Es una aplicacion publica ?",
|
|
||||||
"sickbeard_manifest_arguments_remove_data": "Souhaitez-vous conserver les données ?",
|
|
||||||
"sickbeard_manifest_description": "Téléchargement automatisé de séries TV",
|
|
||||||
"sickrage_manifest_description": "Téléchargement automatisé de séries TV",
|
|
||||||
"sogo_manifest_description": "Sogo est une solution open source pour gérer les E-mails, Contacts et Calendriers.",
|
|
||||||
"sonerezh_manifest_arguments_install_email_auth": "Adresse courriel qui servira à s’authentifier",
|
|
||||||
"sonerezh_manifest_arguments_install_url_path": "Chemin sur lequel installer Sonerezh",
|
|
||||||
"sonerezh_manifest_description": "Aplicacion web pour écouter en streaming de la musique partout.",
|
|
||||||
"spftoolbox_manifest_description": "Aplicacion de vérification des paramètres DNS.",
|
|
||||||
"spip2_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"spip2_manifest_description": "SPIP - Système de publication pour l’Internet",
|
|
||||||
"spip_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"spip_manifest_arguments_install_ldap": "Connexion LDAP",
|
|
||||||
"spip_manifest_description": "SPIP - Système de publication pour l’Internet",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_password": "OPTIONNEL. Il vaut mieux utiliser une clef publique ssh à la place. Voir si-dessous.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_pub_key": "OPTIONNEL. Vous pouvez utiliser un mot de passe à la place, mais une clé ssh publique est plus sécurisée. Demandez à votre bénéficiaire sa clé publique.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_size": "Kio par défaut, utilisez M, G ou T pour indiquer une autre unité.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_help_ssh_user": "Ce doit être un nouvel utilisateur, il sera créé pour cet usage.",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_pub_key": "Donnez une clef ssh publique",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_size": "Choisissez l’espace maximum à allouer à cet utilisateur",
|
|
||||||
"ssh_chroot_dir_manifest_arguments_install_ssh_user": "Choisissez un nouvel utilisateur pour ce dossier",
|
|
||||||
"ssh_chroot_dir_manifest_description": "Dossier ssh en chroot avec gestion de quotas.",
|
|
||||||
"staticwebapp_manifest_description": "Aplicacion web minimale pour les fichiers statiques (vhost)",
|
|
||||||
"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_description": "Subsonic est un server multimedia open-source avec interface web.",
|
|
||||||
"svgedit_manifest_description": "SVG-edit est un outil de manipulation de SVG en ligne, rapide, et écrit en JavaScript qui fonctionne avec tout navigateur moderne.",
|
|
||||||
"sympa_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"sympa_manifest_arguments_install_swap_ack": "Cette Aplicacion nécessite 500 Mo de RAM. Le script d’installation va automatiquement ajouter du swap sur le système. Cependant, l’utilisation de swap risque de diminuer sa durée de vie. Êtes-vous d’accord avec l’ajout de swap (requis) ?",
|
|
||||||
"sympa_manifest_description": "Gestionnaire de listes de discussions",
|
|
||||||
"synapse_manifest_description": "Un serveur de messagerie instantané basé sur matrix",
|
|
||||||
"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_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_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_description": "Gestionnaire de mots de passes",
|
|
||||||
"teamspeak_manifest_arguments_install_System-OS Platform": "64 bits ou 32 bits ? (x64 vs x86)",
|
|
||||||
"teamspeak_manifest_description": "Serveur de communication vocale multi-plateforme",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_token_github": "Token de l’API GitHub",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_token_telegram": "Token Telegram",
|
|
||||||
"telegram_chatbot_manifest_arguments_install_user_github": "Nom d’utilizaire GitHub",
|
|
||||||
"telegram_chatbot_manifest_description": "Chatbot Telegram - mini robot conversationnel pour Telegram",
|
|
||||||
"telegram_manifest_description": "Telegram - un nouvelle espace de messagerie",
|
|
||||||
"testupgrade_manifest_arguments_install_help_path": "Ce sera le chemin de votre Aplicacion et non le chemin de votre système de fichiers",
|
|
||||||
"testupgrade_manifest_arguments_install_test_translation_generation": "Quelques chaînes de caractères aléatoires pour voir si cela est inclus dans en.json foobar",
|
|
||||||
"testupgrade_manifest_description": "Aplicacion fictive pour tester les mises à jour pour raison de développement.",
|
|
||||||
"thelounge_manifest_description": "The Lounge est un client web IRC.",
|
|
||||||
"timeoff_manifest_description": "Logiciel de gestion des absences simple et puissant pour les petites et moyennes entreprises.",
|
|
||||||
"torclient_manifest_description": "Client Tor",
|
|
||||||
"torrelay_manifest_arguments_install_contact": "Choisissez une adresse courriel 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_description": "Un client BitTorrent libre et rapide",
|
|
||||||
"transwhat_manifest_arguments_install_architecture": "Quelle est l’architecture du serveur ?",
|
|
||||||
"transwhat_manifest_description": "Une passerelle whatsapp depuis Jabber",
|
|
||||||
"ttrss_manifest_description": "Un lecteur de flux en PHP et Ajax",
|
|
||||||
"turtl_manifest_description": "Turtl vous permet de prendre des notes, de marquer des sites Web et de stocker des documents pour des projets sensibles. Qu’il s’agisse de partager des mots de passe avec vos collègues de travail ou de suivre les recherches sur un article que vous écrivez, Turtl protège ceci de tout le monde sauf vous et ceux avec qui vous partagez.",
|
|
||||||
"ulogger_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"ulogger_manifest_description": "Paquet ulogger pour YunoHost.",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_key": "Clef Bitbucket (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_bitbucket_secret": "Clef secrète Bitbucket (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_github_key": "Clef GitHub (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_github_scope": "GitHub Scope (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_github_secret": "Clef secrète GitHub (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_key": "Clef OpenStreetMap (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_openstreetmap_secret": "Clef secrète OpenStreetMap (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_twitter_key": "Clef Twitter (champ optionnel)",
|
|
||||||
"umap_manifest_arguments_install_twitter_secret": "Clef secrète Twitter (champ optionnel)",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_after_apticron": "Aimeriez-vous recevoir un courriel pour vérifier s’il reste des mises à niveau après chaque mise à niveau automatique ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_help_unattended_verbosity": "1 : Rapport d’avancement seulement.<br>2 : Rapport d’avancement et sorties de commande.<br>3 : Rapport d’avancement et sorties de commande et trace.<br>",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_previous_apticron": "Souhaitez-vous recevoir un courriel vous informant des mises à jour à effectuer ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_mail": "Souhaitez-vous recevoir un courriel de Unattended-Upgrades ?",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_unattended_verbosity": "Choisissez le niveau de verbosité du courriel Unattended-Upgrades",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_upgrade_level": "Choisir les sources des paquets à mettre à niveau automatiquement",
|
|
||||||
"unattended_upgrades_manifest_arguments_install_ynh_update": "Souhaitez-vous mettre à jour automatiquement les paquets YunoHost ?",
|
|
||||||
"unattended_upgrades_manifest_description": "Mises à niveau automatiques quotidiennes",
|
|
||||||
"vpnclient_manifest_description": "Client VPN",
|
|
||||||
"wallabag2_manifest_description": "Una aplicacion read-it-later auto-hébergeable",
|
|
||||||
"wallabag_manifest_description": "Una aplicacion 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_description": "Web App Multi Instances vide sans accès FTP",
|
|
||||||
"weblate_manifest_arguments_install_github_account": "Nom d’utilizaire GitHub",
|
|
||||||
"weblate_manifest_arguments_install_github_token": "Jeton GitHub (oauth)",
|
|
||||||
"weblate_manifest_description": "Une plateforme de traduction utilisant Git et Python",
|
|
||||||
"webmin_manifest_description": "Webmin",
|
|
||||||
"webogram_manifest_description": "Webogram - une nouvelle ère de la messagerie",
|
|
||||||
"webtrees_manifest_arguments_install_email": "Courriel de l’administrateur (toute inscription sera transmise à cette adresse)",
|
|
||||||
"webtrees_manifest_arguments_install_name": "Nom de l’utilisateur (pas un utilisateur LDAP)",
|
|
||||||
"webtrees_manifest_arguments_install_username": "Causissètz l’administrator (pas un utilisateur LDAP)",
|
|
||||||
"webtrees_manifest_description": "Webtrees est une Aplicacion de généalogie en ligne, open-source et gratuite.",
|
|
||||||
"wekan_manifest_arguments_install_language": "Causissètz la lenga de l’aplicacion",
|
|
||||||
"wekan_manifest_description": "Un kanban similaire à Trello",
|
|
||||||
"wemawema_manifest_description": "WemaWema est un générateur de mèmes « WE MAKE PORN » mais il peut faire plus",
|
|
||||||
"wordpress_manifest_arguments_install_language": "Causissètz la lenga de WordPress",
|
|
||||||
"wordpress_manifest_arguments_install_multisite": "Activer l’option multisite ?",
|
|
||||||
"wordpress_manifest_description": "Logiciel de création de blog ou de site Web",
|
|
||||||
"yacy_manifest_description": "Un moteur de recherche libre et décentralisé",
|
|
||||||
"yellowcms_manifest_description": "CMS pour sites web simples",
|
|
||||||
"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 courriel auxquelles 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_description": "Un service de raccourcisseur d’url",
|
|
||||||
"youtube-dl-webui_manifest_arguments_install_download_folder": "Choisissez le dossier où les vidéos et musiques seront téléchargées",
|
|
||||||
"youtube-dl-webui_manifest_description": "Interface web pour youtube-dl",
|
|
||||||
"yunofav_manifest_description": "Une page de liens favoris pour YunoHost",
|
|
||||||
"yunohost_manifest_description": "Obtenez YunoHost sur YunoHost, délirant :)",
|
|
||||||
"z-push_manifest_description": "Z-Push est un fronted Exchange ActiveSync écrit en php qui permet de synchroniser vos courriels (backend imap/smtp) et vos contacts/calendrier (backend carddav et caldav)",
|
|
||||||
"zerobin_manifest_description": "Un pastebin minimaliste, libre et où le serveur n’a aucune connaissance des données copiées",
|
|
||||||
"zeronet_manifest_description": "Sites web décentralisées utilisant la crypto Bitcoin et le réseau BitTorrent",
|
|
||||||
"zomburl_manifest_description": "Un service de raccourcisseur d’url",
|
|
||||||
"mattermost_manifest_arguments_install_admin_password": "Senhal per chat admin",
|
|
||||||
"Remotestorage_manifest_description": "Aquò es un servidor remoteStorage escrich en PHP.",
|
|
||||||
"dynette_manifest_arguments_install_subdomains": "Causissètz un jos domeni gerit per Dynette",
|
|
||||||
"dynette_manifest_description": "Dynette es un servidor dyndns",
|
|
||||||
"gitlab-runner_manifest_arguments_install_instance": "URL de l'instància GitLab",
|
|
||||||
"gitlab-runner_manifest_arguments_install_token": "Picatz lo geton GitLab-CI runner per aqueste runner",
|
|
||||||
"gitlab-runner_manifest_description": "Executar los trabalhs GitLab-CI sus vòtre pròpri servidor",
|
|
||||||
"mattermost_manifest_arguments_install_admin_email": "Corrièl d'identificacion pel chat admin",
|
|
||||||
"mattermost_manifest_arguments_install_admin_locale": "Causissètz una lenga pel chat dels administrators",
|
|
||||||
"mattermost_manifest_arguments_install_team_display_name": "Causissètz un nom de còla",
|
|
||||||
"menu_manifest_description": "Mostrar un menú public/privat per totas las paginas generadas per YunoHost",
|
|
||||||
"moodle_manifest_description": "Paquets Moodle per l'aplicacion YunoHost.",
|
|
||||||
"my-mind_manifest_description": "Creacion de mapas mentalas en linha",
|
|
||||||
"odoo_manifest_arguments_install_tz": "Causissètz una zòna orària per Odoo",
|
|
||||||
"odoo_manifest_arguments_install_version": "Quala version d'Odoo volètz installar ?",
|
|
||||||
"peertube_manifest_arguments_install_email": "Causissètz una adreça per l'admin (pòt se cambiar aprèp l'installacion)",
|
|
||||||
"peertube_manifest_description": "Plataforma de difusion de vidèos via P2P gràcia al navigador, connectada a un malhum federat",
|
|
||||||
"subscribe_manifest_description": "Pagina web per permetre al monde de demandar un compte a l'instància YunoHost",
|
|
||||||
"wifiwithme_manifest_arguments_install_cnil_link": "Picatz l'URL de vòstra declaracion CNIL",
|
|
||||||
"wifiwithme_manifest_arguments_install_cnil_number": "Picatz lo numèro de vòstra declaracion CNIL",
|
|
||||||
"wifiwithme_manifest_arguments_install_email": "Causissètz una adreça per i enviar las notificacions",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_name": "Picatz lo nom de vòstre provesidor de servici Internet",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_site": "Picatz l'adreça de vòstre provesidor de servici Internet",
|
|
||||||
"wifiwithme_manifest_arguments_install_isp_zone": "Causissètz la zòna a l'interior d'ont vòltz crear una ret Wifi",
|
|
||||||
"wifiwithme_manifest_arguments_install_latitude": "Picatz la latitud per defaut",
|
|
||||||
"wifiwithme_manifest_arguments_install_longitude": "Picatz la longitud per defaut",
|
|
||||||
"wifiwithme_manifest_arguments_install_url_contact": "Picatz l'adreça de vòstra pagina de contacte",
|
|
||||||
"wifiwithme_manifest_arguments_install_zoom": "Causissètz un nivèl de zoom per defaut"
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue