mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[fix] If everyone has access, say it.
This commit is contained in:
parent
8fdc582f03
commit
9c80b7a89f
3 changed files with 3 additions and 3 deletions
|
@ -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') ?
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue