diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-05-04 22:13:48 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-05-04 22:13:48 -0400 |
commit | 8001e3284e069dded37a1aa42b25c201102b9460 (patch) | |
tree | 39d985f62caf6f9d24fa7f9de628668c26009775 /res/values/strings.xml | |
parent | c4e1aa78bc868d2ee8c8fc01bf7224b98f5524dd (diff) | |
parent | 8662dfb7361c7ba9291a5e2bf9ebd55cb41932ba (diff) |
Merge branch 'lukeshu'
Conflicts:
src/us/minak/OnGestureRecognizedListener.java
Diffstat (limited to 'res/values/strings.xml')
-rw-r--r-- | res/values/strings.xml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml new file mode 100644 index 0000000..e6474ea --- /dev/null +++ b/res/values/strings.xml @@ -0,0 +1,51 @@ +<resources xmlns:android="http://schemas.android.com/apk/res/android"> + + <string name="app_name">Minak</string> + <string name="minak_ime_label">Minak IME Label</string> + <string name="minak_settings_label">Minak Settings Label</string> + + <string name="application_name">Gestures Builder</string> + <!-- Title, name of the activity used to create a gesture --> + <string name="label_create_gesture">Create a gesture</string> + + <!-- Buttons --> + <!-- Label, button used to add a gesture --> + <string name="button_add">Add gesture</string> + <!-- Label, button used to reload all gestures --> + <string name="button_reload">Reload</string> + <!-- Label, button used to cancel the operation of adding a gesture --> + <string name="button_discard">Discard</string> + <!-- Label, button used to save a gesture newly created --> + <string name="button_done">Done</string> + + <!-- Gestures --> + <!-- Label, prompt asking the user to enter the name of the gesture --> + <string name="prompt_gesture_name">Name</string> + <!-- Error message, informs the user he needs to enter a name before saving a gesture --> + <string name="error_missing_name">You must enter a name</string> + <!-- success message, tells the user where the gesture was saved --> + <string name="save_success">Gesture saved in %s</string> + <!-- Buttons in Rename gesture dialog box --> + <string name="rename_action">OK</string> + <!-- Buttons in Rename gesture dialog box --> + <string name="cancel_action">Cancel</string> + <!-- Message displayed when the user opens the gestures settings screen --> + <string name="gestures_loading">Loading gestures…</string> + <!-- Message displayed when the user has no gestures --> + <string name="gestures_empty">No gestures</string> + <!-- Title of the screen used to view/manage gestures --> + <string name="gestures_activity">Gestures</string> + <!-- Noun, menu item used to rename a gesture --> + <string name="gestures_rename">Rename</string> + <!-- Noun, menu item used to remove a gesture --> + <string name="gestures_delete">Delete</string> + <!-- Message displayed when a gesture is successfully deleted --> + <string name="gestures_delete_success">Gesture deleted</string> + <!-- Title of dialog box --> + <string name="gestures_rename_title">Rename gesture</string> + <!-- Label of gesture name field in Rename gesture dialog box --> + <string name="gestures_rename_label">Gesture name</string> + <!-- Message, displayed when the sdcard cannot be found, 1st parameter is the name of the file that stores the gestures. CHAR LIMIT=80 --> + <string name="gestures_error_loading">Could not load %s. Make sure you have storage available.</string> + +</resources> |