1 # 2 # Copyright (C) 2012 The Android Open Source Project 3 # 4 # Licensed under the Apache License, Version 2.0 (the "License"); 5 # you may not use this file except in compliance with the License. 6 # You may obtain a copy of the License at 7 # 8 # http://www.apache.org/licenses/LICENSE-2.0 9 # 10 # Unless required by applicable law or agreed to in writing, software 11 # distributed under the License is distributed on an "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 # See the License for the specific language governing permissions and 14 # limitations under the License. 15 # 16 17 Plugin_Vendor = Motorola Mobility, Inc. 18 Plugin_Name = MOTODEV Studio for Android Code Utils Plug-in 19 20 android.wizard.activity = Android Activity 21 android.wizard.activity.description = Creates a new Activity building block 22 android.wizard.activity.template = Android Activity Based on Template 23 android.wizard.activity.template.description = Creates a new Activity building block based on a template 24 25 android.wizard.activity.list = Android List Activities 26 27 android.wizard.activity.imageoptionlist.name = Image option list 28 android.wizard.activity.imageoptionlist.description = List with items that may contain an image and text 29 30 android.wizard.activity.expandablelist.name = Expandable list 31 android.wizard.activity.expandablelist.description = List grouped by sections which can be expanded and collapsed 32 33 android.wizard.activity.singlechoicelist.name = Single choice list 34 android.wizard.activity.singlechoicelist.description = List containing image and single-choice items (radio buttons) 35 36 android.wizard.activity.multiplechoicelist.name = Multiple choice list 37 android.wizard.activity.multiplechoicelist.description = List containing image and multiple-choice items (checkboxes) 38 39 android.wizard.activity.autoloadlist.name = Auto-load list 40 android.wizard.activity.autoloadlist.description = List that loads additional items as needed 41 42 android.wizard.activity.treelist.name = Tree list 43 android.wizard.activity.treelist.description = List that presents items in a collapsible tree 44 45 android.wizard.activity.endlesslist.name = Endless List 46 android.wizard.activity.endlesslist.description = List which has no end. Every time its end is about to be reached, more data is retrieved and added to the list. 47 48 android.wizard.activity.pulltorefresh.name = Endless List (Pull to Refresh) 49 android.wizard.activity.pulltorefresh.description = List which has no end. Pulling down on the list while it is scrolled to the top causes more data to be retrieved and added to the beginning of the list. 50 51 android.wizard.receiver = Android Broadcast Receiver 52 android.wizard.receiver.description = Creates a new Broadcast Receiver building block 53 android.wizard.service = Android Service 54 android.wizard.service.description = Creates a new Service building block 55 android.wizard.provider = Android Content Provider 56 android.wizard.provider.description = Creates a new Content Provider building block 57 android.wizard.project.name = Android Project Using Studio for Android 58 android.wizard.project.description = Creates a new MOTODEV Studio for Android project 59 android.wizard.widget.project.name = Android Widget Project Using Studio for Android 60 61 android.wizard.widget.project.description = Creates a new MOTODEV Studio for Android widget project 62 63 android.wizard.widget.provider = Android Widget Provider 64 65 android.wizard.widget.provider.description = Creates a new Widget Provider building block 66 67 android.wizard.category.description = Creates a new MOTODEV Studio for Android project 68 69 motodevmenu.autogeneratedcode=Auto-Generated Code 70 motodevmenu.autogeneratedcode.activity=Create Activity Based on Template 71 72 motodevmenu.new.activity=New Android Activity 73 motodevmenu.new.broadcastreceiver=New Android Broadcast Receiver 74 motodevmenu.new.contentprovider=New Android Content Provider 75 motodevmenu.new.service=New Android Service 76 motodevmenu.new.widget.provider=New Android Widget Provider 77 78 motodevmenu.localization.openEditor=Open Android Localization Files Editor 79 80 Motodev_Studio_Fill_Activity_Based_On_Layout=Generate Java Code Based on Android Layout... 81 fill_save_instance_state_command_name=Generate Save UI State Code... 82 fill_save_instance_state_command_description=Generates the onSaveInstanceState() method based on those layout items that are handled by the activity 83 84 Motodev_Studio_Generate_Menu_Code=Generate Java Code Based on Menu XML Files... 85 86 Activity_Samples_DB_name=Database List 87 Activity_Samples_DB_description=Displays the contents of a specified database table. 88 Activity_Samples_Dialog_name=Dialog 89 Activity_Samples_Dialog_description=A dialog containing a list of choices. 90 Activity_Samples_DDList_name=Drop Down List 91 Activity_Samples_DDList_description=A drop down list. 92 Activity_Samples_Multitouch_name=Multitouch Event 93 Activity_Samples_Multitouch_description=Enables the user to move or resize an image using multitouch. 94 Activity_Samples_Preference_name=Preference Activity 95 Activity_Samples_Preference_description=An XML-based preferences activity. 96 Activity_Samples_RadioButton_name=Radio Button 97 Activity_Samples_RadioButton_description=Radio buttons. 98 Activity_Samples_SelectionList_name=Selection List 99 Activity_Samples_SelectionList_description=A selection list that can be configured to allow for one or multiple choices. 100 Activity_Samples_SimpleList_name=Simple List 101 Activity_Samples_SimpleList_description=A simple list of strings. 102 Activity_Samples_Tabs_name=Tabs for versions of Android versions prior to 3.2 103 Activity_Samples_Tabs_description=An activity containing tabs that are created as they are selected.\n\nNotes:\n\n - The API used in this template is deprecated as of Android 3.2.\n - New applications should use fragments. 104 Activity_Samples_ListActivities_name=List Activities 105 Activity_Samples_ListActivities_description=Set of templates involving many list layouts. 106 Activity_Samples_DashboardPattern_name=Dashboard Pattern 107 Activity_Samples_DashboardPattern_description=A landing page for your application with large icons representing its most important features. 108 Activity_Samples_ActionBar_name=Action Bar for Android 3.0 and later 109 Activity_Samples_ActionBar_description=An activity that uses the Action Bar UI design pattern. 110 Activity_Samples_ActionBarCompatibility_name=Action Bar for versions of Android prior to 3.0 111 Activity_Samples_ActionBarCompatibility_description=An activity that uses the Action Bar UI design pattern. 112 Activity_Samples_QuickAction_name=Quick Action Menu 113 Activity_Samples_QuickAction_description=An activity that uses the Quick Action UI design pattern. 114 115 android.wizard.activity.endlesslist.usingfragment.name = Endless List (using fragment - requires API level 11 or higher) 116 android.wizard.activity.endlesslist.usingfragment.description = ListFragment which has no end. Every time the end of the list is about to be reached, more data is retrieved and added to the list.