Browse Source

Added a title to the people search text box.

jalbr74 6 năm trước cách đây
mục cha
commit
77d9e47ac0

+ 1 - 0
client/src/i18n/translations_en.json

@@ -46,6 +46,7 @@
   "Display_ViewDetails": "View Details",
   "Display_EmailPrefix": "Email - ",
   "Display_SmsPrefix": "SMS - ",
+  "Display_PeopleSearch": "Please type your search query below.  You may search for a person based on name, email address or telephone number.",
   "Field_DateTime": "Date/Time",
   "Field_Display": "Display",
   "Field_LdapProfile": "LDAP Profile",

+ 1 - 1
client/src/modules/peoplesearch/peoplesearch-cards.component.html

@@ -23,7 +23,7 @@
 <div class="peoplesearch-header">
     <div class="basic-search-container" ng-if="!$ctrl.advancedSearch">
         <h2 id="page-content-title"  translate="Title_PeopleSearch">People Search</h2>
-        <ias-search-box id="input" ng-model="$ctrl.query"
+        <ias-search-box id="input" ng-model="$ctrl.query" title="{{'Display_PeopleSearch' | translate}}"
                         ng-model-options="{debounce: $ctrl.inputDebounce}"
                         placeholder="{{'Placeholder_Search' | translate}}" auto-focus>
         </ias-search-box>