diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/js/strings.js | 1 | ||||
-rw-r--r-- | src/js/views/around.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/js/strings.js b/src/js/strings.js index f89975f..a3c5a1c 100644 --- a/src/js/strings.js +++ b/src/js/strings.js @@ -24,6 +24,7 @@ logout_error: 'There was a problem logging you out. Please try again later.', login_details_error: 'There was a problem logging you in. Please check your email and password', password_problem: 'There was a problem with your email/password combination. If you have forgotten your password, or do not have one, you can set one by returning to the email screen and selecting the set password option.', + search_placeholder: 'Search for a place or postcode', location_error: 'Location error', location_problem: 'There was a problem looking up your location.', multiple_locations: 'More than one location matched that name. Select one below or try entering street name and area, or a postcode.', diff --git a/src/js/views/around.js b/src/js/views/around.js index ccc2ef0..70b6a02 100644 --- a/src/js/views/around.js +++ b/src/js/views/around.js @@ -173,7 +173,7 @@ if ( !fixmystreet.map ) { $('#relocate').hide(); $('#mark-here').hide(); - $('#pc').attr('placeholder', 'Search for a place or postcode.').focus(); + $('#pc').attr('placeholder', FMS.strings.search_placeholder).focus(); } $('#front-howto').html('<p>' + msg + '</msg>'); $('#front-howto').show(); |