diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2017-06-14 10:29:36 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2017-06-14 11:52:52 +0200 |
commit | aab5dd7d7e484bfda28b6d78a7f2acd6e4d0f6b6 (patch) | |
tree | bb0cde6a956abac015e98966428a25cb63bdec0d /core/js | |
parent | fbeb6659f82cc501cc1361795532f7f18e6e764a (diff) | |
download | nextcloud-server-aab5dd7d7e484bfda28b6d78a7f2acd6e4d0f6b6.tar.gz nextcloud-server-aab5dd7d7e484bfda28b6d78a7f2acd6e4d0f6b6.zip |
Localize contacts menu search input placeholder
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/contactsmenu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/contactsmenu.js b/core/js/contactsmenu.js index 3da6ea127cd..6d57ae72e65 100644 --- a/core/js/contactsmenu.js +++ b/core/js/contactsmenu.js @@ -26,7 +26,7 @@ 'use strict'; var MENU_TEMPLATE = '' - + '<input id="contactsmenu-search" type="search" placeholder="Search contacts …" value="{{searchTerm}}">' + + '<input id="contactsmenu-search" type="search" placeholder="' + t('core', 'Search contacts …') + '" value="{{searchTerm}}">' + '<div class="content">' + '</div>'; var CONTACTS_LIST_TEMPLATE = '' |