aboutsummaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2012-02-01 12:50:21 +0000
committerChristopher Baines <cbaines8@gmail.com>2012-02-01 12:50:21 +0000
commit17ab48f10cc7cc56c7234695b2372445cb6adf6d (patch)
treec60689135169d348ab90b2a135e91397f4424330 /res
parent19eb4506294a4be1a399c9f7a2860b23c65e7268 (diff)
downloadsouthamptonuniversitymap-17ab48f10cc7cc56c7234695b2372445cb6adf6d.tar
southamptonuniversitymap-17ab48f10cc7cc56c7234695b2372445cb6adf6d.tar.gz
Added a icon for xhdpi, and fixed up some hardcoded strings.
Diffstat (limited to 'res')
-rw-r--r--res/drawable-xhdpi/icon.pngbin0 -> 7507 bytes
-rw-r--r--res/values/strings.xml8
-rw-r--r--res/xml/preferences.xml4
3 files changed, 9 insertions, 3 deletions
diff --git a/res/drawable-xhdpi/icon.png b/res/drawable-xhdpi/icon.png
new file mode 100644
index 0000000..88c4f63
--- /dev/null
+++ b/res/drawable-xhdpi/icon.png
Binary files differ
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 033a6a9..948c10e 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -18,7 +18,7 @@
<string name="menu_about">About</string>
<string name="menu_favourites">Favourites</string>
- <!-- Preferences Messages -->
+ <!-- Help Messages -->
<string name="map_help_message">You can drag the map to move it, you can use pinch motions to zoom in and out, this can also be done with the buttons at the bottom of the screen. Taping the building markers will show you there full name, and tapping the bus stop markers will show the live times at that stop. Presing and holding a marker, will add the item to the favourites list.</string>
<string name="find_help_message">The Find screen allows you to search for buildings, bus stops and sites. You can search by description and id. If your location is known, the results will be sorted by distance from your current location.</string>
<string name="preferences_help_message">You can disable and enable the apps use of live bus times and gps positioning from the preferences screen.</string>
@@ -47,6 +47,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
<string name="preferences">Preferences</string>
<string name="favourites_dialog_message">No Favourite\'s. To add a building or bus stop to the favourites list, just press and hold it on the map.</string>
+ <!-- View Strings -->
<string-array name="uniLinkBusRoutes">
<item>U1</item>
<item>U1N</item>
@@ -71,10 +72,13 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
<item>Other</item>
</string-array>
+ <!-- Preferences Messages -->
<string name="preferences_catagory_positioning">Positioning</string>
+ <string name="preferences_gps">GPS</string>
<string name="preferences_gps_enabled">GPS Enabled</string>
<string name="preferences_gps_disabled">GPS Disabled</string>
<string name="preferences_catagory_bus_times">Bus Times</string>
+ <string name="preferences_live_bus_times">Live Bus Times</string>
<string name="preferences_live_bus_times_enabled">Live Bus Times Enabled</string>
<string name="preferences_live_bus_times_disabled">Live Bus Times Disabled</string>
<string name="about_menu_instruction_text">Expand the items below to learn more about each feature of the application.</string>
@@ -84,6 +88,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.<
<string name="menu_previous_stop">Previous</string>
<string name="menu_next_stop">Next</string>
<string name="menu_refresh_stop">Refresh</string>
+
+ <!-- About Strings -->
<string name="about">About</string>
<string name="about_version">Version</string>
<string name="about_version_summary">0.2.1 (alpha)</string>
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
index 51f176c..8aec00c 100644
--- a/res/xml/preferences.xml
+++ b/res/xml/preferences.xml
@@ -8,7 +8,7 @@
android:key="GPSEnabled"
android:summaryOff="@string/preferences_gps_disabled"
android:summaryOn="@string/preferences_gps_enabled"
- android:title="GPS" />
+ android:title="@string/preferences_gps" />
</PreferenceCategory>
<PreferenceCategory
android:orderingFromXml="true"
@@ -17,7 +17,7 @@
android:key="liveBusTimesEnabled"
android:summaryOff="@string/preferences_live_bus_times_disabled"
android:summaryOn="@string/preferences_live_bus_times_enabled"
- android:title="Live Bus Times" />
+ android:title="@string/preferences_live_bus_times" />
</PreferenceCategory>
</PreferenceScreen> \ No newline at end of file