Context-detection API for Android developed as a university project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

strings.xml 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <resources>
  3. <string name="app_name">Sensor Logger</string>
  4. <string name="introheader">Introduction</string>
  5. <string name="intro1">
  6. This application records any changes in your phone\'s accelerometer and
  7. magnetic field sensors over a period of 50 seconds. The purpose is to
  8. automatically determine what activity you are performing (such as
  9. walking, standing or sitting).
  10. </string>
  11. <string name="intro2">
  12. Once 1,000 entries have been recorded (around 50 seconds), the data
  13. will be analysed to try and determine your activity. You can then say
  14. whether or not this is correct, and submit the data and the verdict
  15. to a website in order to help improve the software in the future.
  16. </string>
  17. <string name="intro3">
  18. When you click Begin there will be a 10 second delay to allow you
  19. to put the phone in your pocket or usual carrying place. After that,
  20. data will be recorded for approximately 50 seconds. You\'ll hear a
  21. beep when it\'s done.
  22. </string>
  23. <string name="continuebutton">Begin</string>
  24. <string name="countdownheader">Starting in...</string>
  25. <string name="countdowninitial"></string>
  26. <string name="countdownblurb">Put the phone away and wait for the beep!</string>
  27. <string name="error_disconnected">Error: disconnected from service</string>
  28. <string name="recordingheader">Recording...</string>
  29. <string name="analysingheader">Analysing...</string>
  30. <string name="recordinginitial"></string>
  31. <string name="recordingwait">Please wait</string>
  32. <string name="resultsheader">Results</string>
  33. <string name="resultsblurb">Based on the data collected, it would appear
  34. that you were...</string>
  35. <string name="resultsresult">\?</string>
  36. <string name="resultscorrect">Is this correct?</string>
  37. <string name="thanksheader">Thank you</string>
  38. <string name="thanksblurb">The data you have collected has been submitted
  39. for analysis, and will be used to improve the classification algorithm
  40. in the future.</string>
  41. <string name="thankslinktext">You can view your data graphically, and find
  42. out more about this project, at:</string>
  43. <string name="yesbutton">Yes</string>
  44. <string name="nobutton">No</string>
  45. <string name="correct_activity">What activity were you actually performing?</string>
  46. <string name="correct_title">Enter correction</string>
  47. <string name="correct_button">Submit</string>
  48. <string name="activity_unknown">Unknown</string>
  49. <string name="activity_walking">Walking</string>
  50. <string name="activity_walking_stairs_up">Walking (up stairs)</string>
  51. <string name="activity_walking_stairs_down">Walking (down stairs)</string>
  52. <string name="activity_dancing">Dancing</string>
  53. <string name="activity_idle_standing">Standing still</string>
  54. <string name="activity_idle_sitting">Sitting down</string>
  55. <string name="activity_vehicle_bus">Travelling by bus</string>
  56. <string name="activity_vehicle_car">Travelling by car</string>
  57. </resources>