From d50a6929866c448119a0282cd35ee5236470dc51 Mon Sep 17 00:00:00 2001 From: ansuz Date: Mon, 9 Oct 2017 16:51:57 +0200 Subject: [PATCH] add note about tags to prompt --- customize.dist/translations/messages.js | 1 + www/common/common-interface.js | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/customize.dist/translations/messages.js b/customize.dist/translations/messages.js index 3bf37b51c..42266c1fb 100644 --- a/customize.dist/translations/messages.js +++ b/customize.dist/translations/messages.js @@ -162,6 +162,7 @@ define(function () { out.tags_title = "Tags (for you only)"; out.tags_add = "Update this page's tags"; out.tags_searchHint = "Find files by their tags by searching in your CryptDrive"; + out.tags_notShared = "Your tags are not shared with other users"; out.tags_duplicate = "Duplicate tag: {0}"; diff --git a/www/common/common-interface.js b/www/common/common-interface.js index badfa4e57..da50c3c01 100644 --- a/www/common/common-interface.js +++ b/www/common/common-interface.js @@ -178,10 +178,14 @@ define([ var tagger = dialog.frame([ dialog.message([ - Messages.tags_add, - h('p', Messages.tags_searchHint) + h('ul', [ + Messages.tags_add, + h('br'), + Messages.tags_searchHint, + ]), ]), input, + h('center', h('small', Messages.tags_notShared)), dialog.nav(), ]);