From ad2cde4705ecbcc60743106fc03939c68d9dd348 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 29 Jan 2018 19:04:00 +0100 Subject: [PATCH] Add warning about anonymous drive in localStorage --- customize.dist/translations/messages.fr.js | 3 ++- customize.dist/translations/messages.js | 3 ++- www/drive/inner.js | 5 +++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/customize.dist/translations/messages.fr.js b/customize.dist/translations/messages.fr.js index b13f2bc7f..2c4bb6ec4 100644 --- a/customize.dist/translations/messages.fr.js +++ b/customize.dist/translations/messages.fr.js @@ -393,7 +393,8 @@ define(function () { out.updated_0_fm_info_trash = "Vider la corbeille permet de libérer de l'espace dans votre CryptDrive"; out.fm_info_trash = out.updated_0_fm_info_trash; out.fm_info_allFiles = 'Contient tous les fichiers de "Documents", "Fichiers non triés" et "Corbeille". Vous ne pouvez pas supprimer ou déplacer des fichiers depuis cet endroit.'; // Same here - out.fm_info_anonymous = 'Vous n\'êtes pas connecté, ces pads risquent donc d\'être supprimés (découvrez pourquoi). ' + + out.fm_info_anonymous = 'Vous n\'êtes pas connecté, ces pads seront donc supprimés après 3 mois d\'inactivité (découvrez pourquoi). ' + + 'Ils sont stockés dans votre navigateur donc nettoyer votre historique peut les faire disparaître.
' + 'Inscrivez-vous ou connectez-vous pour les maintenir en vie.'; out.fm_info_owned = "Vous êtes propriétaire des pads affichés dans cette catégorie. Cela signifie que vous pouvez choisir de les supprimer définitivement du serveur à n'importe quel moment. Ils seront alors inaccessibles pour tous les autres utilisateurs."; out.fm_alert_backupUrl = "Lien de secours pour ce CryptDrive.
" + diff --git a/customize.dist/translations/messages.js b/customize.dist/translations/messages.js index e8783ec74..32c61825f 100644 --- a/customize.dist/translations/messages.js +++ b/customize.dist/translations/messages.js @@ -396,7 +396,8 @@ define(function () { out.fm_info_trash = out.updated_0_fm_info_trash; out.fm_info_allFiles = 'Contains all the files from "Documents", "Unsorted" and "Trash". You can\'t move or remove files from here.'; // Same here out.fm_info_anonymous = 'You are not logged in so your pads will expire after 3 months (find out more). ' + - 'Sign up or Log in to keep them alive.'; + 'They are stored in your browser so clearing history may make them disappear.
' + + 'Sign up or Log in to keep them alive.
'; out.fm_info_owned = "You are the owner of the pads displayed here. This means you can remove them permanently from the server whenever you want. If you do so, other users won't be able to access them anymore."; out.fm_alert_backupUrl = "Backup link for this drive.
" + "It is highly recommended that you keep it secret.
" + diff --git a/www/drive/inner.js b/www/drive/inner.js index 5bb678a9c..11d96df42 100644 --- a/www/drive/inner.js +++ b/www/drive/inner.js @@ -1509,6 +1509,11 @@ define([ if (!APP.loggedIn) { msg = Messages.fm_info_anonymous; $box.html(msg); + $box.find('a[target!="_blank"]').click(function (e) { + e.preventDefault(); + var href = $(this).attr('href'); + common.gotoURL(href); + }); return $box; } if (!msg || APP.store['hide-info-' + path[0]] === '1') {