Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3 /*
      4 * Copyright (C) 2009 The Android Open Source Project
      5 *
      6 * Licensed under the Apache License, Version 2.0 (the "License");
      7 * you may not use this file except in compliance with the License.
      8 * You may obtain a copy of the License at
      9 *
     10 *      http://www.apache.org/licenses/LICENSE-2.0
     11 *
     12 * Unless required by applicable law or agreed to in writing, software
     13 * distributed under the License is distributed on an "AS IS" BASIS,
     14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15 * See the License for the specific language governing permissions and
     16 * limitations under the License.
     17 */
     18 -->
     19 
     20 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
     21     <!-- General -->
     22     <skip />
     23     <!-- Application name -->
     24     <string name="application_name">Gestures Builder</string>
     25     <!-- Title, name of the activity used to create a gesture -->
     26     <string name="label_create_gesture">Create a gesture</string>
     27 
     28     <!-- Buttons -->
     29     <skip />
     30     <!-- Label, button used to add a gesture -->
     31     <string name="button_add">Add gesture</string>
     32     <!-- Label, button used to reload all gestures -->
     33     <string name="button_reload">Reload</string>
     34     <!-- Label, button used to cancel the operation of adding a gesture -->
     35     <string name="button_discard">Discard</string>
     36     <!-- Label, button used to save a gesture newly created -->
     37     <string name="button_done">Done</string>
     38     
     39     <!-- Gestures -->
     40     <skip />
     41     <!-- Label, prompt asking the user to enter the name of the gesture -->
     42     <string name="prompt_gesture_name">Name</string>
     43     <!-- Error message, informs the user he needs to enter a name before saving a gesture -->
     44     <string name="error_missing_name">You must enter a name</string>
     45     <!-- success message, tells the user where the gesture was saved -->
     46     <string name="save_success">Gesture saved in %s</string>
     47     <!-- Buttons in Rename gesture dialog box -->
     48     <string name="rename_action">OK</string>
     49     <!-- Buttons in Rename gesture dialog box -->
     50     <string name="cancel_action">Cancel</string>
     51     <!-- Message displayed when the user opens the gestures settings screen -->
     52     <string name="gestures_loading">Loading gestures...</string>
     53     <!-- Message displayed when the user has no gestures -->
     54     <string name="gestures_empty">No gestures</string>
     55     <!-- Title of the screen used to view/manage gestures -->
     56     <string name="gestures_activity">Gestures</string>
     57     <!-- Noun, menu item used to rename a gesture -->
     58     <string name="gestures_rename">Rename</string>
     59     <!-- Noun, menu item used to remove a gesture -->
     60     <string name="gestures_delete">Delete</string>
     61     <!-- Message displayed when a gesture is successfully deleted -->
     62     <string name="gestures_delete_success">Gesture deleted</string>
     63     <!-- Title of dialog box -->
     64     <string name="gestures_rename_title">Rename gesture</string>
     65     <!-- Label of gesture name field in Rename gesture dialog box -->
     66     <string name="gestures_rename_label">Gesture name</string>
     67     <!-- Message, displayed when the sdcard cannot be found, 1st parameter is the name of the file that stores the gestures.  CHAR LIMIT=80 -->
     68     <string name="gestures_error_loading">Could not load %s. Make sure you have storage available.</string>
     69 </resources>
     70