Context-detection API for Android developed as a university project
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

strings.xml 1.7KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <resources>
  3. <string name="app_name">Context Analyser</string>
  4. <string name="permlab_receiveUpdates">receive context updates</string>
  5. <string name="permdesc_receiveUpdates">Allows the application to
  6. receive updates about your current context, which includes your
  7. (symbolic) location and activity.</string>
  8. <string name="permlab_readPlaces">retrieve your places</string>
  9. <string name="permdesc_readPlaces">Allows the application to
  10. retrieve a list of places you have been, and to convert symbolic
  11. locations into physical co-ordinates</string>
  12. <string name="permlab_writePlaces">modify your places</string>
  13. <string name="permdesc_writePlaces">Allows the application to
  14. modify the list of places that the context analyser knows about.</string>
  15. <string name="permlab_readJourneys">retrieve your journeys</string>
  16. <string name="permdesc_readJourneys">Allows the application to
  17. retrieve a list of journeys you have made, including the activities
  18. that make up the journeys and symbolic locations they run between.</string>
  19. <string name="permlab_writeJourneys">modify your journeys</string>
  20. <string name="permdesc_writeJourneys">Allows the application to
  21. modify the list of journeys that the context analyser knows about.</string>
  22. <string name="permgrouplabel">Context information</string>
  23. <string name="permgroupdesc">Permissions related to the context analyser
  24. service and its API.</string>
  25. <string name="permlab_broadcast">broadcast information</string>
  26. <string name="permdesc_broadcast">Allows the application to make
  27. context-related broadcasts.</string>
  28. </resources>