Home | History | Annotate | Download | only in preflighting.checkers
      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 #################################################################################
     18 #
     19 # Android Main Activity checker properties
     20 #
     21 #################################################################################
     22 
     23 pluginName=MOTODEV Studio App Validator Checkers
     24 providerName=Motorola Mobility, Inc.
     25 
     26 mainactivitydescription=Checks the number of activities set as main.
     27 mainactivityname=Single Main Activity Checker
     28 mainActivity_singleMainActivity_ConditionName=One Main Activity
     29 mainActivity_singleMainActivity_ConditionDescription=Presence of exactly one activity set as main
     30 
     31 missingDrawableResourcesDescription=Checks your application's drawable resources, looking to see if your app has properly-sized images for every supported screen size and density.\nNote that the android:anyDensity attribute in the Android manifest file can be updated during the packaging process, which may affect validation.
     32 missingDrawableResourcesName=Missing Drawable Resources Checker
     33 
     34 localizationStringDescription=attempts to verify that the application is correctly localized, specifically by checking if all values are translated to all languages.\nNote that this checker only validates applications that have at least one language-specific resource.
     35 localizationStringName=Localization Strings Checker
     36 localizationString_missingDefaultLanguageKey_name=Keys missing in default language
     37 localizationString_missingDefaultLanguageKey_description=Keys are present in other languages that are missing in the default language.
     38 localizationStrings_missingLanguageKey_name=Keys missing in alternate language
     39 localizationStrings_missingLanguageKey_description=Keys are present in the default language that are missing in non-default languages.
     40 localizationStrings_missingValue_name=Keys without value
     41 localizationStrings_missingValue_description=One or more keys exist without a defined value either in the default language or in other languages.
     42 
     43 androidMarketFiltersCheckerDescription=Helps prevent your application from being rejected by Google Play, and from not appearing in Google Play on some devices.
     44 androidMarketFiltersCheckerName=Google Play Filters Checker
     45 androidMarketFilters_logCallsConditionName=Log Calls
     46 androidMarketFilters_logCallsConditionDescription=Search for log calls within code.
     47 androidMarketFilters_isDebuggableConditionName=Debuggable
     48 androidMarketFilters_isDebuggableConditionDescription=Verifies if the android:debuggable flag is set to true.
     49 androidMarketFilters_certificateExpiredConditionName=Certificate Period Expired
     50 androidMarketFilters_certificateExpiredConditionDescription=Verify that the certificate period is valid as required by Google Play.
     51 androidMarketFilters_missingManifestIconOrLabelConditionName=Missing Icon or Label
     52 androidMarketFilters_missingManifestIconOrLabelConditionDescription=Verify the existence of android:icon and android:label in the Android manifest.
     53 androidMarketFilters_missingVersionCodeOrNameConditionName=Missing Version Code or Name
     54 androidMarketFilters_missingVersionCodeOrNameConditionDescription=Verify the existence of android:versionCode and android:versionName in the Android manifest.
     55 androidMarketFilters_missingMinSdkVersionConditionName=Missing minSdkVersion
     56 androidMarketFilters_missingMinSdkVersionConditionDescription=Check if the uses-sdk android:minSdkVersion property is missing. This may lead to an application crash if your app uses an API that is not supported by an older Android OS version.
     57 androidMarketFilters_declaredMaxSdkVersionConditionName=Declared maxSdkVersion
     58 androidMarketFilters_declaredMaxSdkVersionConditionDescription=Check if the uses-sdk android:maxSdkVersion property is set.
     59 androidMarketFilters_minSdkFilterSmallScreenDevicesConditionName=Availability for Small Screen Devices
     60 androidMarketFilters_minSdkFilterSmallScreenDevicesConditionDescription=See if the uses-sdk android:minSdkVersion property may prevent applications from appearing in Google Play on small-screen devices.
     61 androidMarketFilters_permissionToImpliedFeaturesConditionName=Features implied by permissions
     62 androidMarketFilters_permissionToImpliedFeaturesConditionDescription=Checks if an application declares permissions without declaring required implied features.
     63 androidMarketFilters_minSdkIsPreviewConditionName=Preview minSdkVersion
     64 androidMarketFilters_minSdkIsPreviewConditionDescription=Checks if the SDK specified in the android:minSdkVersion attribute within the Android manifest file is a preview SDK.
     65 androidMarketFilters_targetSdkIsPreviewConditionName=Preview targetSdkVersion
     66 androidMarketFilters_targetSdkIsPreviewConditionDescription=Checks if an application declares an android:targetSdkVersion within its Android manifest file that is for an SDK preview release.
     67 androidMarketFilters_zipalignedConditionName=Zipaligned
     68 androidMarketFilters_zipalignedConditionDescription=Checks if the APK file is optimized using zipalign.
     69 
     70 deviceCompatibilityCheckerDescription=Looks for properties within your Android application that are not suitable for a particular device.
     71 deviceCompatibilityCheckerName=Device Compatibility Checker
     72 DeviceCompatibilityChecker_SmallScreens_Support_Condition_Name=Small Screens Support
     73 DeviceCompatibilityChecker_SmallScreens_Support_Condition_Description=Support for devices with small screens.
     74 DeviceCompatibilityChecker_Unsupported_Features_Condition_Name=Unsupported Features
     75 DeviceCompatibilityChecker_Unsupported_Features_Condition_Description=Checks the application manifest for permission or feature declarations that are not supported for a particular device, which might prevent the app from being installed on that device.
     76 
     77 DeviceCompatibilityChecker_XLargeScreens_Support_Condition_Name=Extra Large Screens Support
     78 DeviceCompatibilityChecker_XLargeScreens_Support_Condition_Description=Support for devices with extra large screens.
     79 
     80 
     81 permissionsCheckerDescription=Examines the permissions required by the app and the APIs used by the app, looking for possible problems.
     82 permissionsCheckerName=Permissions Checker
     83 
     84 buildingBlocksDeclarationCheckerDescription=Looks for inconsistencies within the Android building blocks declared in your AndroidManifest.xml file.
     85 buildingBlocksDeclarationCheckerName=Building Blocks Declaration Checker
     86 
     87 buildingBlocksDeclarationCheckerDescription_Inheritance = Check whether all building blocks declared in AndroidManifest.xml extend the classes they are meant to inherit from. 
     88 buildingBlocksDeclarationCheckerName_Inheritance = Building Blocks Inheritance
     89 
     90 layoutCheckerDescription=Examine the application layout files, looking for problems in their definitions and inconsistencies among the layouts for different configurations.
     91 layoutCheckerName=Layout Checker
     92 layoutChecker_MissingIDConditionName=Missing View ID
     93 layoutChecker_MissingIDConditionDescription=Check if all layouts are using the same set of IDs for their components.
     94 layoutChecker_repeatedIdConditionName=Repeated View ID
     95 layoutChecker_repeatedIdConditionDescription=Reads all layout files looking for repeated IDs.
     96 layoutChecker_viewTypeIdsConditionName=View Type ID
     97 layoutChecker_viewTypeIdsConditionDescription=Checks if an ID is always used by the same kind of view on different layout configurations.
     98 layoutChecker_XlargeConfigConditionName = XLarge Layouts
     99 layoutChecker_XlargeConfigConditionDescription=Checks to see if the project contains layouts under xlarge folders.
    100 
    101 permissionsChecker_MissingPermissionName=Missing Permissions
    102 permissionsChecker_MissingPermissionDescription=Check for required permissions that are not declared in the AndroidManifest.xml file.
    103 
    104 permissionsChecker_BlockedPermissionName=Blocked Permissions
    105 permissionsChecker_BlockedPermissionDescription=Verify if a restricted permission is required by the application. Restricted permissions can only be used by applications signed with the same certificates as those in the system image (in other words, mostly by vendor applications, not third-party applications).
    106 
    107 widgetPreviewCheckerDescription=Verify if a widget project supports the preview feature 
    108 widgetPreviewCheckerName=Widget Preview Checker
    109 
    110 missingWidgetPreviewConditionName=Missing Widget Preview 
    111 missingWidgetPreviewConditionDescription=Verify that there is a declaration for the widgetPreview tag
    112 
    113 UnneededPermissions.description = Looks for any unneeded permissions declared in the manifest file
    114 UnneededPermissions.Name = Unneeded Permissions
    115 
    116 codeChecker_Description=Looks for possible issues in your Java code
    117 codeChecker_Name = Code Checker
    118 openedCursorsCondition.description=Looks for methods with non-closed cursors
    119 openedCursorsCondition.name = Opened Cursors
    120 
    121 orphanedItemsCheckerName=Orphaned Items Checker
    122 orphanedItemsCheckerDescription=Looks for declared items that are not referenced in Java or XML files
    123 
    124 orphanedStringsConditionName=Orphaned Strings
    125 orphanedStringsConditionDescription=\tLooks for declared strings that are not referenced in Java or XML files
    126 
    127 MissingDrawableChecker_conditionMissingDrawableFolders_Name=Missing Drawable Folders
    128 MissingDrawableChecker_conditionMissingDrawableFolders_Description=Existence of all density-specific drawable folders.
    129 
    130 MissingDrawableChecker_conditionMissingDrawableResources_Name=Missing Drawable Resources
    131 MissingDrawableChecker_conditionMissingDrawableResources_Description=Existence of all density-specific versions of drawable resources (images).
    132 
    133 MissingDrawableChecker_conditionUnsupportedDensity_Name=All densities support
    134 MissingDrawableChecker_conditionUnsupportedDensity_Description=Verify that the application's API level supports all referenced density values. 
    135