diff --git a/js/app.js b/js/app.js index 13dc7f17..2c0273c1 100644 --- a/js/app.js +++ b/js/app.js @@ -977,7 +977,7 @@ app = Sammy('#main', function (sam) { sam.get('#/apps/:app', function (c) { c.api('/apps/'+c.params['app']+'?raw', function(data) { // http://api.yunohost.org/#!/app/app_info_get_9 // Presentation - data.settings.allowed_users = (data.settings.allowed_users) ? data.settings.allowed_users.replace(',', ', ') : ''; + data.settings.allowed_users = (data.settings.allowed_users) ? data.settings.allowed_users.replace(',', ', ')+"." : y18n.t('everyone_has_access'); // Multilingual description data.description = (typeof data.manifest.description[y18n.locale] !== 'undefined') ? diff --git a/locales/en.json b/locales/en.json index a6fb8348..e4e5dbd9 100644 --- a/locales/en.json +++ b/locales/en.json @@ -95,7 +95,7 @@ "install_name" : "Install %s", "label" : "Label", "label_for_manifestname" : "Label for %s", - "app_info_access_desc" : "Manage user access. Allowed users: %s.", + "app_info_access_desc" : "Manage user access. Allowed users: %s", "app_info_default_desc" : "Redirect domain root to this application (%s).", "app_info_uninstall_desc" : "Remove this application.", "app_access" : "Access", diff --git a/locales/fr.json b/locales/fr.json index a749f192..21d79a0a 100644 --- a/locales/fr.json +++ b/locales/fr.json @@ -95,7 +95,7 @@ "install_name" : "Installer %s", "label" : "Libellé", "label_for_manifestname" : "Libellé pour %s", - "app_info_access_desc" : "Gestion des droits d'accès. Utilisateurs autorisés : %s.", + "app_info_access_desc" : "Gestion des droits d'accès. Utilisateurs autorisés : %s", "app_info_default_desc" : "Redirige la racine du domaine vers cette application (%s).", "app_info_uninstall_desc" : "Supprimer cette application.", "app_access" : "Accès",