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 10:29:36 +0200 |
commit | 64d39aad253b1a8ab83a27215143cf66e149cb17 (patch) | |
tree | 9bf23bcf2f284e3dab342a3a95a92254b44c4b9d /core | |
parent | b76e43e0a321e23ecd7ec9e9c71a9b5c6ee208ec (diff) | |
download | nextcloud-server-64d39aad253b1a8ab83a27215143cf66e149cb17.tar.gz nextcloud-server-64d39aad253b1a8ab83a27215143cf66e149cb17.zip |
Localize contacts menu search input placeholder
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core')
-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 = '' |