auto import from //depot/cupcake/@135843
14
Android.mk
Normal file
@@ -0,0 +1,14 @@
|
||||
LOCAL_PATH:= $(call my-dir)
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
LOCAL_MODULE_TAGS := user development
|
||||
|
||||
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
||||
|
||||
LOCAL_PACKAGE_NAME := Settings
|
||||
LOCAL_CERTIFICATE := platform
|
||||
|
||||
include $(BUILD_PACKAGE)
|
||||
|
||||
# Use the folloing include to make our test apk.
|
||||
include $(call all-makefiles-under,$(LOCAL_PATH))
|
508
AndroidManifest.xml
Normal file
@@ -0,0 +1,508 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.settings"
|
||||
android:sharedUserId="android.uid.system">
|
||||
|
||||
<uses-permission android:name="com.google.android.providers.gmail.permission.WRITE_GMAIL" />
|
||||
<uses-permission android:name="com.google.android.providers.gmail.permission.READ_GMAIL" />
|
||||
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
|
||||
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
||||
<uses-permission android:name="android.permission.HARDWARE_TEST" />
|
||||
<uses-permission android:name="android.permission.CALL_PHONE" />
|
||||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
||||
<uses-permission android:name="android.permission.MASTER_CLEAR" />
|
||||
<uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" />
|
||||
<uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER" />
|
||||
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" />
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
||||
<uses-permission android:name="android.permission.WRITE_APN_SETTINGS"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"/>
|
||||
<uses-permission android:name="android.permission.READ_USER_DICTIONARY"/>
|
||||
<uses-permission android:name="android.permission.WRITE_USER_DICTIONARY"/>
|
||||
<uses-permission android:name="android.permission.RESTART_PACKAGES"/>
|
||||
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS"/>
|
||||
<uses-permission android:name="android.permission.BATTERY_STATS"/>
|
||||
<uses-permission android:name="com.android.launcher.permission.READ_SETTINGS" />
|
||||
<uses-permission android:name="com.android.launcher.permission.WRITE_SETTINGS" />
|
||||
|
||||
<application android:label="@string/settings_label" android:icon="@drawable/ic_launcher_settings">
|
||||
|
||||
<!-- Settings -->
|
||||
|
||||
<activity android:name="Settings" android:label="@string/settings_label"
|
||||
android:clearTaskOnLaunch="true"
|
||||
android:launchMode="singleTop">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- Wireless Controls -->
|
||||
|
||||
<activity android:name="WirelessSettings"
|
||||
android:label="@string/radio_controls_title"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.WIRELESS_SETTINGS" />
|
||||
<action android:name="android.settings.AIRPLANE_MODE_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
|
||||
<!-- Top-level settings -->
|
||||
|
||||
<activity android:name=".wifi.WifiSettings" android:label="@string/wifi_settings"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.WIFI_SETTINGS" />
|
||||
<action android:name="android.net.wifi.PICK_WIFI_NETWORK" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".wifi.AdvancedSettings" android:label="@string/wifi_ip_settings_titlebar"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.WIFI_IP_SETTINGS" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ApnSettings" android:label="@string/apn_settings"
|
||||
android:configChanges="orientation|keyboardHidden"
|
||||
android:launchMode="singleInstance"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.APN_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".bluetooth.BluetoothSettings"
|
||||
android:label="@string/bluetooth_settings_title"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.BLUETOOTH_SETTINGS" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="DateTimeSettings" android:label="@string/date_and_time"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.DATE_SETTINGS" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="DateTimeSettingsSetupWizard" android:label="@string/date_and_time">
|
||||
android:screenOrientation="portrait"
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="LocalePicker" android:label="@string/language_picker_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.LOCALE_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="LocalePickerInSetupWizard" android:label="@string/language_picker_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="LanguageSettings" android:label="@string/language_picker_title"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="InputMethodsSettings" android:icon="@drawable/app_settings"
|
||||
android:label="@string/input_methods_settings_title"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.INPUT_METHOD_SETTINGS" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="UserDictionarySettings" android:icon="@drawable/app_settings"
|
||||
android:label="@string/user_dict_settings_titlebar">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.USER_DICTIONARY_SETTINGS" />
|
||||
<action android:name="com.android.settings.USER_DICTIONARY_INSERT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="SoundAndDisplaySettings" android:label="@string/sound_and_display_settings"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="com.android.settings.SOUND_SETTINGS" />
|
||||
<action android:name="com.android.settings.DISPLAY_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="DeviceInfoSettings" android:label="@string/device_info_settings"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="SettingsLicenseActivity"
|
||||
android:label="@string/settings_license_activity_title"
|
||||
android:theme="@*android:style/Theme.Dialog.Alert">
|
||||
<intent-filter>
|
||||
<action android:name="android.settings.LICENSE" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ApplicationSettings" android:label="@string/applications_settings_header"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.APPLICATION_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ManageApplications"
|
||||
android:label="@string/manageapplications_settings_title"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.intent.action.MANAGE_PACKAGE_STORAGE" />
|
||||
<action android:name="android.settings.MANAGE_APPLICATIONS_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.MONKEY" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="InstalledAppDetails" android:label="@string/application_info_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="SecuritySettings" android:label="@string/security_settings_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.SECURITY_SETTINGS" />
|
||||
<action android:name="android.settings.LOCATION_SOURCE_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="SimLockSettings" android:label="@string/sim_lock_settings"
|
||||
android:process="com.android.phone">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Second and third-level settings -->
|
||||
|
||||
<activity android:name="ConfirmLockPattern"/>
|
||||
|
||||
<activity android:name="ChooseLockPattern" android:label="@string/lockpattern_change_lock_pattern_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ChooseLockPatternTutorial"
|
||||
android:label="@string/lockpattern_change_lock_pattern_label"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ChooseLockPatternExample"
|
||||
android:label="@string/lockpattern_change_lock_pattern_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ZoneList" android:label="@string/choose_timezone" />
|
||||
|
||||
<activity android:name=".deviceinfo.Status" android:label="@string/device_status_activity_title"
|
||||
android:process="com.android.phone">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".deviceinfo.Memory" android:label="@string/storage_settings_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.settings.INTERNAL_STORAGE_SETTINGS" />
|
||||
<action android:name="android.settings.MEMORY_CARD_SETTINGS" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ApnEditor" android:label="@string/apn_edit">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<action android:name="android.intent.action.EDIT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="vnd.android.cursor.item/telephony-carrier" />
|
||||
</intent-filter>
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.INSERT" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="vnd.android.cursor.dir/telephony-carrier" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="MasterClear" android:label="@string/master_clear_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="MediaFormat" android:label="@string/media_format_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".quicklaunch.QuickLaunchSettings"
|
||||
android:label="@string/quick_launch_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="com.android.settings.QUICK_LAUNCH_SETTINGS" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".quicklaunch.BookmarkPicker" android:label="@string/quick_launch_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="DevelopmentSettings" android:icon="@drawable/app_settings"
|
||||
android:label="@string/development_settings_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Bluetooth stuff -->
|
||||
|
||||
<activity android:name=".bluetooth.ConnectSpecificProfilesActivity"
|
||||
android:label="@string/bluetooth_connect_specific_profiles_title" />
|
||||
|
||||
<activity android:name=".bluetooth.BluetoothPinDialog"
|
||||
android:label="@string/bluetooth_pin_entry"
|
||||
android:theme="@*android:style/Theme.Dialog.Alert">
|
||||
<intent-filter>
|
||||
<action android:name="android.bluetooth.intent.action.PAIRING_REQUEST" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<receiver android:name=".bluetooth.BluetoothPinRequest">
|
||||
<intent-filter>
|
||||
<action android:name="android.bluetooth.intent.action.PAIRING_REQUEST" />
|
||||
<action android:name="android.bluetooth.intent.action.PAIRING_CANCEL" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<activity android:name="ActivityPicker" android:label="@string/activity_picker_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.PICK_ACTIVITY" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Development settings -->
|
||||
|
||||
<activity android:name="DebugIntentSender" android:label="@string/debug_intent_sender_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="DeviceInfo" android:label="@string/device_info_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- DeviceInfo adds the user's requested build to stats upload. -->
|
||||
<receiver android:name=".DeviceInfo$StatsReportReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.STATISTICS_REPORT" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<activity android:name="BatteryInfo" android:label="@string/battery_info_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name=".battery_history.BatteryHistory" android:label="@string/battery_history_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="Display" android:label="@string/display_label"
|
||||
android:configChanges="fontScale">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="RadioInfo" android:label="@string/phone_info_label"
|
||||
android:process="com.android.phone">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="SdCardSettings" android:label="@string/sd_card_settings_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="ProxySelector" android:label="@string/proxy_settings_label"
|
||||
android:theme="@android:style/Theme.Dialog">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- TODO: Is this needed? -->
|
||||
<activity android:name="BandMode"
|
||||
android:theme="@android:style/Theme.Dialog"
|
||||
android:process="com.android.phone">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.VOICE_LAUNCH" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity android:name="TestingSettings" android:label="@string/testing">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<receiver android:name="TestingSettingsBroadcastReceiver">
|
||||
<intent-filter>
|
||||
<action android:name="android.provider.Telephony.SECRET_CODE" />
|
||||
<data android:scheme="android_secret_code" android:host="4636" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<!-- Standard picker for gadgets -->
|
||||
<activity android:name="GadgetPickActivity" android:label="@string/widget_picker_title">
|
||||
<intent-filter>
|
||||
<action android:name="android.gadget.action.GADGET_PICK" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<!-- Helper to bind any unbound gadgets in Launcher, used as
|
||||
part of initialization and upgrade process -->
|
||||
<activity android:name="LauncherGadgetBinder"
|
||||
android:permission="com.android.launcher.permission.WRITE_SETTINGS"
|
||||
android:theme="@android:style/Theme.NoDisplay" android:exported="true" />
|
||||
|
||||
<activity android:name="UsageStats" android:label="@string/usage_stats_label">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
0
MODULE_LICENSE_APACHE2
Normal file
190
NOTICE
Normal file
@@ -0,0 +1,190 @@
|
||||
|
||||
Copyright (c) 2005-2008, The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
BIN
res/drawable/app_settings.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
res/drawable/border_item_thumbnail.png
Executable file
After Width: | Height: | Size: 230 B |
BIN
res/drawable/dotted_line_480px.png
Executable file
After Width: | Height: | Size: 129 B |
BIN
res/drawable/ic_bt_cellphone.png
Executable file
After Width: | Height: | Size: 810 B |
BIN
res/drawable/ic_bt_headphones_a2dp.png
Executable file
After Width: | Height: | Size: 742 B |
BIN
res/drawable/ic_bt_headset_hfp.png
Normal file
After Width: | Height: | Size: 737 B |
BIN
res/drawable/ic_bt_laptop.png
Executable file
After Width: | Height: | Size: 3.2 KiB |
BIN
res/drawable/ic_btn_next.png
Normal file
After Width: | Height: | Size: 779 B |
BIN
res/drawable/ic_launcher_settings.png
Executable file
After Width: | Height: | Size: 3.2 KiB |
BIN
res/drawable/ic_menu_3d_globe.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
res/drawable/ic_menu_add.png
Executable file
After Width: | Height: | Size: 2.0 KiB |
BIN
res/drawable/ic_menu_filter_settings.png
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
res/drawable/ic_menu_scan_network.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
res/drawable/ic_network_signal_0.png
Executable file
After Width: | Height: | Size: 581 B |
BIN
res/drawable/ic_network_signal_1.png
Executable file
After Width: | Height: | Size: 586 B |
BIN
res/drawable/ic_network_signal_2.png
Executable file
After Width: | Height: | Size: 565 B |
BIN
res/drawable/ic_network_signal_3.png
Executable file
After Width: | Height: | Size: 583 B |
BIN
res/drawable/ic_network_signal_4.png
Executable file
After Width: | Height: | Size: 559 B |
BIN
res/drawable/ic_popup_brightness.png
Executable file
After Width: | Height: | Size: 2.8 KiB |
BIN
res/drawable/ic_wifi_lock_signal_1.png
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable/ic_wifi_lock_signal_2.png
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable/ic_wifi_lock_signal_3.png
Executable file
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable/ic_wifi_lock_signal_4.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
res/drawable/ic_wifi_signal_1.png
Executable file
After Width: | Height: | Size: 1.3 KiB |
BIN
res/drawable/ic_wifi_signal_2.png
Executable file
After Width: | Height: | Size: 1.3 KiB |
BIN
res/drawable/ic_wifi_signal_3.png
Executable file
After Width: | Height: | Size: 1.3 KiB |
BIN
res/drawable/ic_wifi_signal_4.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
37
res/drawable/lock_anim.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2008, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<animation-list
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:oneshot="false">
|
||||
<item android:drawable="@drawable/lock_anim_0" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_1" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_2" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_3" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_4" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_5" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_6" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_7" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_8" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_9" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_10" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_11" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_12" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_13" android:duration="200" />
|
||||
<item android:drawable="@drawable/lock_anim_14" android:duration="200" />
|
||||
</animation-list>
|
BIN
res/drawable/lock_anim_0.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
res/drawable/lock_anim_1.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
res/drawable/lock_anim_10.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
res/drawable/lock_anim_11.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
res/drawable/lock_anim_12.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
res/drawable/lock_anim_13.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
res/drawable/lock_anim_14.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
res/drawable/lock_anim_2.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
res/drawable/lock_anim_3.png
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
res/drawable/lock_anim_4.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
res/drawable/lock_anim_5.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
res/drawable/lock_anim_6.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
res/drawable/lock_anim_7.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
res/drawable/lock_anim_8.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
res/drawable/lock_anim_9.png
Normal file
After Width: | Height: | Size: 16 KiB |
24
res/drawable/signal.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:maxLevel="0" android:drawable="@drawable/ic_network_signal_0" />
|
||||
<item android:maxLevel="1" android:drawable="@drawable/ic_network_signal_1" />
|
||||
<item android:maxLevel="2" android:drawable="@drawable/ic_network_signal_2" />
|
||||
<item android:maxLevel="3" android:drawable="@drawable/ic_network_signal_3" />
|
||||
<item android:maxLevel="4" android:drawable="@drawable/ic_network_signal_4" />
|
||||
</level-list>
|
||||
|
22
res/drawable/wifi_signal.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
|
||||
<item settings:state_encrypted="true" android:drawable="@drawable/wifi_signal_lock" />
|
||||
<item settings:state_encrypted="false" android:drawable="@drawable/wifi_signal_open" />
|
||||
</selector>
|
||||
|
23
res/drawable/wifi_signal_lock.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:maxLevel="0" android:drawable="@drawable/ic_wifi_lock_signal_1" />
|
||||
<item android:maxLevel="1" android:drawable="@drawable/ic_wifi_lock_signal_2" />
|
||||
<item android:maxLevel="2" android:drawable="@drawable/ic_wifi_lock_signal_3" />
|
||||
<item android:maxLevel="3" android:drawable="@drawable/ic_wifi_lock_signal_4" />
|
||||
</level-list>
|
||||
|
23
res/drawable/wifi_signal_open.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<level-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:maxLevel="0" android:drawable="@drawable/ic_wifi_signal_1" />
|
||||
<item android:maxLevel="1" android:drawable="@drawable/ic_wifi_signal_2" />
|
||||
<item android:maxLevel="2" android:drawable="@drawable/ic_wifi_signal_3" />
|
||||
<item android:maxLevel="3" android:drawable="@drawable/ic_wifi_signal_4" />
|
||||
</level-list>
|
||||
|
86
res/layout-land/choose_lock_pattern.xml
Normal file
@@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/topLayout"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@color/black">
|
||||
|
||||
<!-- left side: instructions and messages -->
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="0dip"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_weight="1.0"
|
||||
>
|
||||
|
||||
<!-- header message -->
|
||||
<TextView android:id="@+id/headerText"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textSize="18sp"/>
|
||||
|
||||
<!-- footer can show a message, or confirm / restart buttons -->
|
||||
<RelativeLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
android:layout_weight="1.0">
|
||||
|
||||
<!-- left button: skip, or re-try -->
|
||||
<Button android:id="@+id/footerLeftButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:text="@string/lockpattern_restart_button_text"/>
|
||||
|
||||
<!-- right button: confirm or ok -->
|
||||
<Button android:id="@+id/footerRightButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:drawableRight="@drawable/ic_btn_next"
|
||||
android:drawablePadding="3dip"
|
||||
android:text="@string/lockpattern_confirm_button_text"/>
|
||||
|
||||
<!-- message above buttons -->
|
||||
<TextView android:id="@+id/footerText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_above="@+id/footerRightButton"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginBottom="4dip"
|
||||
android:textSize="14sp"/>
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:background="@*android:drawable/code_lock_left"
|
||||
android:layout_width="2dip"
|
||||
android:layout_height="fill_parent" />
|
||||
<!-- right side: lock pattern -->
|
||||
<com.android.internal.widget.LockPatternView android:id="@+id/lockPattern"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
|
||||
</com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient>
|
||||
|
66
res/layout-land/confirm_lock_pattern.xml
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/topLayout"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@color/black">
|
||||
|
||||
<!-- left side: instructions and messages -->
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="0dip"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_weight="1.0"
|
||||
>
|
||||
|
||||
<!-- header message -->
|
||||
<TextView android:id="@+id/headerText"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textSize="18sp"/>
|
||||
|
||||
<!-- fill space between header and button below -->
|
||||
<View
|
||||
android:layout_weight="1.0"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
/>
|
||||
|
||||
<!-- footer message -->
|
||||
<TextView android:id="@+id/footerText"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:textSize="14sp"/>
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:background="@*android:drawable/code_lock_left"
|
||||
android:layout_width="2dip"
|
||||
android:layout_height="fill_parent" />
|
||||
<!-- right side: lock pattern -->
|
||||
<com.android.internal.widget.LockPatternView android:id="@+id/lockPattern"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
|
||||
</com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient>
|
||||
|
30
res/layout/band_mode.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2007 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:padding="4dip"
|
||||
android:gravity="center_horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<ListView android:id="@+id/band"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:textSize="7sp">
|
||||
</ListView>
|
||||
|
||||
</LinearLayout>
|
144
res/layout/battery_history.xml
Normal file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/topLayout"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/title"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/graphLayout"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent" >
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/typeSpinner"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:entries="@array/battery_history_type_spinner" />
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/whichSpinner"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:entries="@array/battery_history_which_spinner" />
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
|
||||
<TextView
|
||||
android:id="@+id/messageText"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:textSize="17dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button0"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button1"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button2"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button3"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button4"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button5"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button6"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<com.android.settings.battery_history.GraphableButton
|
||||
android:id="@+id/button7"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:layout_marginBottom="4dp"
|
||||
android:layout_weight="1" />
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/textLayout"
|
||||
android:visibility="gone"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent" >
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent" >
|
||||
<TextView
|
||||
android:id="@+id/detailsText"
|
||||
android:layout_width="fill_parent"
|
||||
android:textSize="17dp"
|
||||
android:layout_height="1000dp"/>
|
||||
</ScrollView>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
89
res/layout/battery_info.xml
Normal file
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/Settings/assets/res/any/layout/battery_info.xml
|
||||
**
|
||||
** Copyright 2006, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/info_layout">
|
||||
|
||||
<!-- Battery Status -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_status_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/status" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Battery Level -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_level_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/level" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Battery Scale -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_scale_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/scale" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Battery Health -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_health_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/health" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Battery Voltage -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_voltage_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/voltage" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Battery Temperature -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_temperature_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/temperature" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Battery Technology -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_technology_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/technology" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Uptime -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_uptime" style="@style/info_label" />
|
||||
<TextView android:id="@+id/uptime" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Awaketime Battery -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_awake_battery" style="@style/info_label" />
|
||||
<TextView android:id="@+id/awakeBattery" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Awaketime Plugged In -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_awake_plugged" style="@style/info_label" />
|
||||
<TextView android:id="@+id/awakePlugged" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Screen On Time -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/battery_info_screen_on" style="@style/info_label" />
|
||||
<TextView android:id="@+id/screenOn" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
51
res/layout/bluetooth.xml
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/Settings/assets/res/layout/bluetooth.xml
|
||||
**
|
||||
** Copyright 2006, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:paddingLeft="2dip"
|
||||
android:paddingRight="2dip">
|
||||
|
||||
<Button android:id="@+id/enable"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/bluetooth_enable_text"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<Button android:id="@+id/scan"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/bluetooth_scan_text"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<Button android:id="@+id/settings"
|
||||
android:textStyle="bold"
|
||||
android:text="@string/bluetooth_settings_text"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
|
||||
<ListView android:id="@android:id/list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:drawSelectorOnTop="false">
|
||||
</ListView>
|
||||
|
||||
</LinearLayout>
|
62
res/layout/bluetooth_device_info.xml
Normal file
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2007 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/scroll_content"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/bluetooth_device_info_alias" />
|
||||
|
||||
<TextView android:id="@+id/deviceAlias"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/bluetooth_device_info_no_alias" />
|
||||
|
||||
<Button android:id="@+id/connectButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/bluetooth_device_info_connectButton_text" />
|
||||
|
||||
<Button android:id="@+id/deleteButton"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/bluetooth_device_info_delete" />
|
||||
|
||||
<Button android:id="@+id/querySDP"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/bluetooth_device_info_sdp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/bluetooth_device_info" />
|
||||
|
||||
<TextView android:id="@+id/deviceInfo"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/bluetooth_device_info_deviceInfo_text" />
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
51
res/layout/bluetooth_pin_entry.xml
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2008, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<ScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_width="fill_parent">
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_width="fill_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/message"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="20dip"
|
||||
android:layout_marginRight="20dip"
|
||||
android:gravity="center_horizontal"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/text"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_marginTop="20dip"
|
||||
android:layout_marginLeft="20dip"
|
||||
android:layout_marginRight="20dip"
|
||||
android:singleLine="true" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
38
res/layout/bookmark_picker_item.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2008, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:paddingLeft="2dip"
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<ImageView android:id="@+id/icon"
|
||||
android:layout_width="@android:dimen/app_icon_size"
|
||||
android:layout_height="@android:dimen/app_icon_size"
|
||||
android:scaleType="fitCenter" />
|
||||
|
||||
<TextView android:id="@+id/title"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:paddingLeft="6dip" />
|
||||
|
||||
</LinearLayout>
|
||||
|
81
res/layout/choose_lock_pattern.xml
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/topLayout"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@color/black">
|
||||
|
||||
<TextView android:id="@+id/headerText"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center"
|
||||
android:textSize="18sp"/>
|
||||
|
||||
<View
|
||||
android:background="@*android:drawable/code_lock_top"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="2dip" />
|
||||
<com.android.internal.widget.LockPatternView android:id="@+id/lockPattern"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
<View
|
||||
android:background="@*android:drawable/code_lock_bottom"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="8dip" />
|
||||
|
||||
<!-- message just above the button bar -->
|
||||
<TextView android:id="@+id/footerText"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
<!-- confirm / restart buttons -->
|
||||
<LinearLayout style="@android:style/ButtonBar"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<!-- left button: skip, or retry -->
|
||||
<Button android:id="@+id/footerLeftButton"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/lockpattern_restart_button_text"/>
|
||||
|
||||
<!-- Placeholder to get blank space between the two buttons -->
|
||||
<View
|
||||
android:visibility="invisible"
|
||||
android:layout_height="0dip"
|
||||
android:layout_width="1dip"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<!-- right button: confirm or ok -->
|
||||
<Button android:id="@+id/footerRightButton"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:drawableRight="@drawable/ic_btn_next"
|
||||
android:drawablePadding="3dip"
|
||||
android:text="@string/lockpattern_confirm_button_text"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient>
|
93
res/layout/choose_lock_pattern_example.xml
Normal file
@@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_width="fill_parent">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_width="fill_parent"
|
||||
android:padding="5dip">
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/lock_example_title"
|
||||
android:gravity="center_horizontal"
|
||||
style="?android:attr/textAppearanceLarge"
|
||||
/>
|
||||
|
||||
<ImageView android:id="@+id/lock_anim"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="11dip"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:focusable="false"
|
||||
android:clickable="false"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dip"
|
||||
android:text="@string/lock_example_message"
|
||||
android:layout_gravity="left"
|
||||
style="?android:attr/textAppearanceMedium"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
||||
<LinearLayout style="@android:style/ButtonBar"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<Button android:id="@+id/skip_button"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/skip_button_label"
|
||||
/>
|
||||
|
||||
<View
|
||||
android:visibility="invisible"
|
||||
android:layout_height="0dip"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
/>
|
||||
|
||||
<Button android:id="@+id/next_button"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:drawableRight="@drawable/ic_btn_next"
|
||||
android:drawablePadding="3dip"
|
||||
android:text="@string/next_button_label"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
85
res/layout/choose_lock_pattern_tutorial.xml
Normal file
@@ -0,0 +1,85 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_width="fill_parent">
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
android:layout_weight="1">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:padding="5dip">
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:text="@string/lock_title"
|
||||
android:paddingBottom="10dip"
|
||||
android:layout_marginTop="3dip"
|
||||
style="?android:attr/textAppearanceLarge"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_marginTop="10dip"
|
||||
android:text="@string/lock_intro_message"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
||||
|
||||
<LinearLayout style="@android:style/ButtonBar"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<Button android:id="@+id/skip_button"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/skip_button_label"
|
||||
/>
|
||||
|
||||
<View
|
||||
android:visibility="invisible"
|
||||
android:layout_height="0dip"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
/>
|
||||
|
||||
<Button android:id="@+id/next_button"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:drawableRight="@drawable/ic_btn_next"
|
||||
android:drawablePadding="3dip"
|
||||
android:text="@string/next_button_label"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout >
|
36
res/layout/compute_sizes.xml
Executable file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
<ListView
|
||||
android:id="@android:id/list"
|
||||
android:drawSelectorOnTop="false"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
<TextView android:id="@+id/empty_view"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="20dip"
|
||||
android:paddingTop="5dip"
|
||||
android:text="@string/empty_list_msg"
|
||||
android:gravity="center"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||||
</LinearLayout>
|
||||
|
||||
|
51
res/layout/confirm_lock_pattern.xml
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/topLayout"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="fill_parent"
|
||||
android:background="@color/black">
|
||||
|
||||
<TextView android:id="@+id/headerText"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
android:layout_weight="1.0"
|
||||
android:gravity="center"
|
||||
android:textSize="18sp"/>
|
||||
|
||||
<View
|
||||
android:background="@*android:drawable/code_lock_top"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="2dip" />
|
||||
<com.android.internal.widget.LockPatternView android:id="@+id/lockPattern"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
<View
|
||||
android:background="@*android:drawable/code_lock_bottom"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="8dip" />
|
||||
|
||||
<TextView android:id="@+id/footerText"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="0dip"
|
||||
android:layout_weight="1.0"
|
||||
android:gravity="center"
|
||||
android:textSize="14sp"/>
|
||||
|
||||
|
||||
</com.android.internal.widget.LinearLayoutWithDefaultTouchRecepient>
|
55
res/layout/date_time_settings_setupwizard.xml
Normal file
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_height="fill_parent"
|
||||
android:layout_width="fill_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_height="0dip"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_weight="1"
|
||||
android:gravity="left">
|
||||
|
||||
<ListView android:id="@android:id/list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:drawSelectorOnTop="false"
|
||||
android:paddingTop="2dip"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="fill_parent"
|
||||
android:background="@android:drawable/bottom_bar">
|
||||
|
||||
<Button android:id="@+id/next_button"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="5dip"
|
||||
android:layout_alignParentRight="true"
|
||||
android:drawableRight="@drawable/ic_btn_next"
|
||||
android:drawablePadding="10dip"
|
||||
android:text="@string/next_label"
|
||||
/>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
29
res/layout/dialog_edittext.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2006 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="8dip"
|
||||
android:paddingRight="8dip">
|
||||
|
||||
<EditText
|
||||
android:id="@+id/edittext"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
49
res/layout/display.xml
Normal file
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/Settings/res/layout/display.xml
|
||||
**
|
||||
** Copyright 2007, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/info_layout">
|
||||
<LinearLayout style="@style/entry_layout"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/display_font_size_label" />
|
||||
|
||||
<Spinner android:id="@+id/fontSize"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
</Spinner>
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/display_preview_label" />
|
||||
|
||||
<TextView android:id="@+id/preview"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<Button android:id="@+id/save"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
311
res/layout/installed_app_details.xml
Normal file
@@ -0,0 +1,311 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2008, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<ScrollView
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
<LinearLayout
|
||||
android:id="@+id/all_details"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingTop="5dip"
|
||||
android:paddingBottom="5dip"
|
||||
android:orientation="vertical">
|
||||
<include
|
||||
layout="@layout/manage_applications_item"
|
||||
android:id="@+id/app_snippet"/>
|
||||
|
||||
<TextView
|
||||
style="?android:attr/listSeparatorTextViewStyle"
|
||||
android:text="@string/storage_label" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="6dip"
|
||||
android:orientation="vertical">
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:baselineAligned="true"
|
||||
android:paddingTop="-1dip">
|
||||
<TextView
|
||||
android:id="@+id/total_size_prefix"
|
||||
android:text="@string/total_size_label"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingLeft="6dip"/>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/info_size_dots"
|
||||
android:src="@drawable/dotted_line_480px"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="1px"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginLeft="1dip"
|
||||
android:layout_marginRight="1dip"
|
||||
android:layout_marginBottom="4dip"
|
||||
android:scaleType="center" />
|
||||
<TextView
|
||||
android:id="@+id/total_size_text"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingRight="6dip"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1" />
|
||||
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:baselineAligned="true"
|
||||
android:paddingTop="-1dip">
|
||||
<TextView
|
||||
android:id="@+id/application_size_prefix"
|
||||
android:text="@string/application_size_label"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingLeft="6dip"/>
|
||||
<ImageView
|
||||
android:id="@+id/info_size_dots"
|
||||
android:src="@drawable/dotted_line_480px"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="1px"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginLeft="1dip"
|
||||
android:layout_marginRight="1dip"
|
||||
android:layout_marginBottom="4dip"
|
||||
android:scaleType="center" />
|
||||
<TextView
|
||||
android:id="@+id/application_size_text"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingRight="6dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1" />
|
||||
|
||||
</LinearLayout>
|
||||
<LinearLayout
|
||||
android:id="@+id/info_size"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:baselineAligned="true"
|
||||
android:paddingTop="-1dip">
|
||||
<TextView
|
||||
android:id="@+id/data_size_prefix"
|
||||
android:text="@string/data_size_label"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingLeft="6dip"/>
|
||||
<ImageView
|
||||
android:id="@+id/info_size_dots"
|
||||
android:src="@drawable/dotted_line_480px"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="1px"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginLeft="1dip"
|
||||
android:layout_marginRight="1dip"
|
||||
android:layout_marginBottom="4dip"
|
||||
android:scaleType="center" />
|
||||
<TextView
|
||||
android:id="@+id/data_size_text"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingRight="6dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1" />
|
||||
|
||||
</LinearLayout>
|
||||
<!-- Manage space, Clear data/Uninstall buttons -->
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="bottom"
|
||||
android:orientation="horizontal">
|
||||
<Button
|
||||
android:id="@+id/manage_space_button"
|
||||
android:text="@string/manage_space_text"
|
||||
android:visibility="invisible"
|
||||
android:layout_width="150dip"
|
||||
android:paddingLeft="6dip"
|
||||
android:layout_gravity="left"
|
||||
android:layout_weight="0.4"
|
||||
android:layout_height="wrap_content"/>
|
||||
<!-- Spacer -->
|
||||
<View
|
||||
android:id="@+id/buttons_spacer_left"
|
||||
android:layout_width="0dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="0.2"
|
||||
android:visibility="gone" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/uninstall_button"
|
||||
android:layout_width="150dip"
|
||||
android:paddingRight="6dip"
|
||||
android:layout_gravity="right"
|
||||
android:layout_weight="0.4"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Clear cache section -->
|
||||
<RelativeLayout
|
||||
android:id="@+id/cache_panel"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
<TextView
|
||||
android:id="@+id/cache_header"
|
||||
style="?android:attr/listSeparatorTextViewStyle"
|
||||
android:text="@string/cache_header_label" />
|
||||
<LinearLayout
|
||||
android:id="@+id/cache_size"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:baselineAligned="true"
|
||||
android:layout_below="@id/cache_header"
|
||||
android:paddingTop="-1dip">
|
||||
<TextView
|
||||
android:text="@string/cache_size_label"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:paddingTop="6dip"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingLeft="6dip"/>
|
||||
<ImageView
|
||||
android:src="@drawable/dotted_line_480px"
|
||||
android:layout_width="0dip"
|
||||
android:layout_weight="1"
|
||||
android:layout_height="1px"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginLeft="1dip"
|
||||
android:layout_marginRight="1dip"
|
||||
android:layout_marginBottom="4dip"
|
||||
android:scaleType="center" />
|
||||
<TextView
|
||||
android:id="@+id/cache_size_text"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingRight="6dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:maxLines="1" />
|
||||
</LinearLayout>
|
||||
|
||||
<Button android:id="@+id/clear_cache_button"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@id/cache_size"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_width="150dip"
|
||||
android:text="@string/clear_cache_btn_text"
|
||||
android:layout_height="wrap_content" />
|
||||
</RelativeLayout>
|
||||
|
||||
<!-- Prefered activities section -->
|
||||
<TextView
|
||||
style="?android:attr/listSeparatorTextViewStyle"
|
||||
android:text="@string/auto_launch_label" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical">
|
||||
<TextView android:id="@+id/auto_launch"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingLeft="6dip" />
|
||||
<Button android:id="@+id/clear_activities_button"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@id/auto_launch"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_width="150dip"
|
||||
android:text="@string/clear_activities"
|
||||
android:layout_height="wrap_content" />
|
||||
</RelativeLayout>
|
||||
|
||||
<!-- Permissions section -->
|
||||
<LinearLayout
|
||||
android:id="@+id/permissions_section"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical">
|
||||
<TextView
|
||||
style="?android:attr/listSeparatorTextViewStyle"
|
||||
android:text="@string/permissions_label" />
|
||||
<TextView
|
||||
android:text="@string/security_settings_desc"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingLeft="6dip"
|
||||
android:paddingBottom="6dip"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
<LinearLayout
|
||||
android:id="@+id/security_settings_list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical"/>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Prefered activities section -->
|
||||
<TextView
|
||||
style="?android:attr/listSeparatorTextViewStyle"
|
||||
android:text="@string/controls_label" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical">
|
||||
<Button android:id="@+id/force_stop_button"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_width="150dip"
|
||||
android:text="@string/force_stop"
|
||||
android:layout_height="wrap_content" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
111
res/layout/intent_sender.xml
Normal file
@@ -0,0 +1,111 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/Preferences/assets/res/any/layout/intent_sender.xml
|
||||
**
|
||||
** Copyright 2006, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:paddingLeft="6dip"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingBottom="3dip"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:maxLines="1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/intent_sender_action_label" />
|
||||
|
||||
<EditText android:id="@+id/intent"
|
||||
android:singleLine="true"
|
||||
android:layout_marginTop="2dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:scrollHorizontally="true"
|
||||
android:capitalize="none"
|
||||
android:autoText="false" />
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:maxLines="1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/intent_sender_data_label" />
|
||||
|
||||
<EditText android:id="@+id/data"
|
||||
android:singleLine="true"
|
||||
android:layout_marginTop="2dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:scrollHorizontally="true"
|
||||
android:capitalize="none"
|
||||
android:autoText="false" />
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:maxLines="1"
|
||||
android:layout_marginTop="4dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/intent_sender_account_label" />
|
||||
|
||||
<EditText android:id="@+id/account"
|
||||
android:singleLine="true"
|
||||
android:layout_marginTop="2dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:scrollHorizontally="true"
|
||||
android:capitalize="none"
|
||||
android:autoText="false" />
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:maxLines="1"
|
||||
android:layout_marginTop="4dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/intent_sender_resource_label" />
|
||||
|
||||
<EditText android:id="@+id/resource"
|
||||
android:singleLine="true"
|
||||
android:layout_marginTop="2dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:scrollHorizontally="true"
|
||||
android:capitalize="none"
|
||||
android:autoText="false" />
|
||||
|
||||
<Button android:id="@+id/sendbroadcast"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/intent_sender_sendbroadcast_text" />
|
||||
|
||||
<Button android:id="@+id/startactivity"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/intent_sender_startactivity_text" />
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
35
res/layout/list_content_with_empty_view.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent" >
|
||||
|
||||
<ListView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:drawSelectorOnTop="false"
|
||||
/>
|
||||
|
||||
<TextView android:id="@+id/empty"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:padding="5dip"
|
||||
android:gravity="center"
|
||||
android:visibility="gone" />
|
||||
|
||||
</FrameLayout>
|
28
res/layout/locale_picker.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<ListView android:id="@android:id/list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:drawSelectorOnTop="false"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
44
res/layout/locale_picker_in_setupwizard.xml
Normal file
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/select_your_language"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:paddingBottom="10dip"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
/>
|
||||
|
||||
<View
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="1dip"
|
||||
android:layout_marginTop="8dip"
|
||||
android:background="@android:drawable/divider_horizontal_dark"
|
||||
/>
|
||||
|
||||
<ListView android:id="@android:id/list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:drawSelectorOnTop="false"
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
38
res/layout/locale_picker_item.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="horizontal"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="fill_parent"
|
||||
android:gravity="center_vertical"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:padding="5dip">
|
||||
<!--
|
||||
<ImageView android:id="@+id/icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:focusable="false"
|
||||
android:clickable="false"
|
||||
android:src="@drawable/place_holder_for_locale"
|
||||
/>
|
||||
-->
|
||||
<TextView android:id="@+id/locale"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
/>
|
||||
</LinearLayout >
|
59
res/layout/manage_applications_item.xml
Executable file
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2008, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:orientation="horizontal"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingLeft="6dip"
|
||||
android:paddingTop="5dip"
|
||||
android:paddingBottom="5dip"
|
||||
android:gravity="center_vertical" >
|
||||
|
||||
<ImageView android:id="@+id/app_icon"
|
||||
android:layout_width="@android:dimen/app_icon_size"
|
||||
android:layout_height="@android:dimen/app_icon_size"
|
||||
android:layout_marginLeft="5dip"
|
||||
android:layout_marginRight="11dip"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:scaleType="fitCenter"/>
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
<TextView android:id="@+id/app_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textStyle="bold"
|
||||
android:singleLine="true"
|
||||
android:ellipsize="marquee"
|
||||
android:layout_marginBottom="2dip" />
|
||||
<TextView android:id="@+id/app_size"
|
||||
android:layout_marginTop="-4dip"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
38
res/layout/master_clear_final.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright (C) 2008 The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
style="@style/info_layout">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="20sp"
|
||||
android:text="@string/master_clear_final_desc" />
|
||||
|
||||
<Button android:id="@+id/execute_master_clear"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="40dip"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/master_clear_final_button_text"
|
||||
android:gravity="center" />
|
||||
|
||||
</LinearLayout>
|
39
res/layout/master_clear_primary.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
**
|
||||
** Copyright (C) 2008 The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
style="@style/info_layout">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="18sp"
|
||||
android:text="@string/master_clear_desc" />
|
||||
|
||||
<Button android:id="@+id/initiate_master_clear"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="40dip"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/master_clear_button_text"
|
||||
android:gravity="center" />
|
||||
|
||||
</LinearLayout>
|
38
res/layout/media_format_final.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright (C) 2008 The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
style="@style/info_layout">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="20sp"
|
||||
android:text="@string/media_format_final_desc" />
|
||||
|
||||
<Button android:id="@+id/execute_media_format"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="40dip"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/media_format_final_button_text"
|
||||
android:gravity="center" />
|
||||
|
||||
</LinearLayout>
|
39
res/layout/media_format_primary.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
**
|
||||
** Copyright (C) 2008 The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
style="@style/info_layout">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="18sp"
|
||||
android:text="@string/media_format_desc" />
|
||||
|
||||
<Button android:id="@+id/initiate_media_format"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="40dip"
|
||||
android:layout_width="150dip"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/media_format_button_text"
|
||||
android:gravity="center" />
|
||||
|
||||
</LinearLayout>
|
56
res/layout/preference_bluetooth.xml
Normal file
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2006 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingLeft="16dip"
|
||||
android:paddingRight="?android:attr/scrollbarSize">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="6dip"
|
||||
android:layout_marginTop="6dip"
|
||||
android:layout_marginBottom="6dip"
|
||||
android:layout_weight="1">
|
||||
|
||||
<TextView android:id="@+android:id/title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge" />
|
||||
|
||||
<TextView android:id="@+android:id/summary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@android:id/title"
|
||||
android:layout_alignLeft="@android:id/title"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:maxLines="2" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/btClass"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="12dip"
|
||||
android:layout_gravity="center_vertical" />
|
||||
|
||||
</LinearLayout>
|
71
res/layout/preference_dialog_ringervolume.xml
Normal file
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical"
|
||||
android:gravity="center_horizontal"
|
||||
android:paddingBottom="20dip">
|
||||
|
||||
<ImageView android:id="@android:id/icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="20dip" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/incoming_call_volume_title"
|
||||
android:paddingTop="20dip"
|
||||
android:paddingLeft="20dip"
|
||||
android:paddingRight="20dip" />
|
||||
|
||||
<!-- Used for the ring volume. This is what the superclass VolumePreference uses. -->
|
||||
<SeekBar android:id="@*android:id/seekbar"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingLeft="20dip"
|
||||
android:paddingRight="20dip" />
|
||||
|
||||
<CheckBox android:id="@+id/same_notification_volume"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/checkbox_notification_same_as_incoming_call"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:layout_marginTop="6dip"
|
||||
android:layout_marginLeft="20dip"
|
||||
android:layout_marginRight="20dip" />
|
||||
|
||||
<TextView android:id="@+id/notification_volume_title"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/notification_volume_title"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingLeft="20dip"
|
||||
android:paddingRight="20dip" />
|
||||
|
||||
<!-- Used for the notification volume -->
|
||||
<SeekBar android:id="@+id/notification_volume_seekbar"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="6dip"
|
||||
android:paddingLeft="20dip"
|
||||
android:paddingRight="20dip" />
|
||||
|
||||
</LinearLayout>
|
||||
|
57
res/layout/preference_progress_category.xml
Normal file
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2006 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<!-- Layout used for ProgressCategory in bluetooth settings. -->
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
style="?android:attr/listSeparatorTextViewStyle">
|
||||
|
||||
<!-- This and the other text view have the style of the list separator text view without the background and padding -->
|
||||
<TextView
|
||||
style="?android:attr/listSeparatorTextViewStyle"
|
||||
android:background="@null"
|
||||
android:paddingLeft="0dip"
|
||||
android:id="@+android:id/title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/scanning_progress"
|
||||
android:text="@string/progress_scanning"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="?android:attr/scrollbarSize"
|
||||
style="?android:attr/progressBarStyleSmallTitle"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
style="?android:attr/listSeparatorTextViewStyle"
|
||||
android:background="@null"
|
||||
android:paddingLeft="0dip"
|
||||
android:id="@+id/scanning_text"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toLeftOf="@id/scanning_progress"
|
||||
android:layout_marginRight="5sp"
|
||||
android:text="@string/progress_scanning"
|
||||
/>
|
||||
|
||||
</RelativeLayout>
|
25
res/layout/preference_widget_shortcut.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/shortcut"
|
||||
android:layout_width="40dip"
|
||||
android:layout_height="40dip"
|
||||
android:layout_marginRight="4sp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:background="#55ffffff"
|
||||
android:gravity="center"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge" />
|
23
res/layout/preference_widget_wifi_signal.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/signal"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="4sp"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:src="@drawable/wifi_signal" />
|
78
res/layout/proxy.xml
Normal file
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/Browser/res/layout/proxy.xml
|
||||
**
|
||||
** Copyright 2006, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="6dip"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingBottom="3dip"
|
||||
android:layout_width="fill_parent" android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:maxLines="1"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content" android:layout_height="wrap_content"
|
||||
android:text="@string/proxy_hostname_label" />
|
||||
|
||||
<EditText android:id="@+id/hostname"
|
||||
android:maxLines="1"
|
||||
android:layout_marginTop="2dip"
|
||||
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
||||
android:autoText="false"
|
||||
android:capitalize="none"
|
||||
android:scrollHorizontally="true" />
|
||||
|
||||
<TextView
|
||||
android:textStyle="bold"
|
||||
android:maxLines="1"
|
||||
android:layout_marginTop="4dip"
|
||||
android:layout_width="wrap_content" android:layout_height="wrap_content"
|
||||
android:text="@string/proxy_port_label" />
|
||||
|
||||
<EditText android:id="@+id/port"
|
||||
android:numeric="integer"
|
||||
android:maxLines="1"
|
||||
android:layout_marginTop="2dip"
|
||||
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
||||
android:scrollHorizontally="true" />
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:paddingTop="8dip"
|
||||
android:layout_width="wrap_content" android:layout_height="wrap_content">
|
||||
|
||||
<Button android:id="@+id/action"
|
||||
android:layout_width="wrap_content" android:layout_height="fill_parent"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/proxy_action_text" />
|
||||
|
||||
<Button android:id="@+id/clear"
|
||||
android:layout_width="wrap_content" android:layout_height="fill_parent"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/proxy_clear_text" />
|
||||
|
||||
<Button android:id="@+id/defaultView"
|
||||
android:layout_width="wrap_content" android:layout_height="fill_parent"
|
||||
android:layout_weight="1"
|
||||
android:text="@string/proxy_defaultView_text" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
265
res/layout/radio_info.xml
Normal file
@@ -0,0 +1,265 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/Settings/assets/res/any/layout/radio_info.xml
|
||||
**
|
||||
** Copyright 2006, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent" >
|
||||
|
||||
<LinearLayout style="@style/info_layout">
|
||||
|
||||
<!-- IMEI -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_imei_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/imei" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Phone Number -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_phone_number_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/number" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Network Identifier -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_current_network_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/operator" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Ping stats -->
|
||||
<Button android:id="@+id/ping_test"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/ping_test_label"
|
||||
/>
|
||||
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_ping_ipaddr" style="@style/info_label" />
|
||||
<TextView android:id="@+id/pingIpAddr" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_ping_hostname" style="@style/info_label" />
|
||||
<TextView android:id="@+id/pingHostname" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_http_client_test" style="@style/info_label" />
|
||||
<TextView android:id="@+id/httpClientTest" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Signal Strength -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_signal_strength_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/dbm" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Location -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_signal_location_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/location" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Neighboring Cids -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_neighboring_location_label"
|
||||
style="@style/info_label" />
|
||||
<TextView android:id="@+id/neighboring" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Roaming -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_roaming_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/roaming" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- GSM Service -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_gsm_service_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/gsm" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- GPRS Service -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_gprs_service_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/gprs" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Network Type -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_network_type_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/network" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Message Waiting Indicator -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_message_waiting_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/mwi" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Call Forwarding Indicator -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_call_redirect_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/cfi" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Call Status -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_call_status_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/call" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<!-- Radio Resets -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_radio_resets_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/resets" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Attempted Data Connections -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_data_attempts_label"
|
||||
style="@style/info_label" />
|
||||
<TextView android:id="@+id/attempts" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Successful Data Connections -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_data_successes_label"
|
||||
style="@style/info_label" />
|
||||
<TextView android:id="@+id/successes" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- GSM Disconnects -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_gsm_disconnects_label"
|
||||
style="@style/info_label" />
|
||||
<TextView android:id="@+id/disconnects" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- PPP Sent -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_ppp_sent_label"
|
||||
style="@style/info_label" />
|
||||
<TextView android:id="@+id/sent" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- PPP Received -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_ppp_received_label"
|
||||
style="@style/info_label" />
|
||||
<TextView android:id="@+id/received" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- PPP Sent since last received -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<TextView android:text="@string/radio_info_ppp_resets_label"
|
||||
style="@style/info_label" />
|
||||
<TextView android:id="@+id/sentSinceReceived" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Preferred Network Type -->
|
||||
<TextView
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/radio_info_set_perferred_label"
|
||||
style="@style/info_label"
|
||||
/>
|
||||
|
||||
<Spinner android:id="@+id/preferredNetworkType"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
|
||||
<!-- Ciphering -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<Button android:id="@+id/ciph_toggle"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/radio_info_toggle_ciph_label"
|
||||
/>
|
||||
<TextView android:id="@+id/ciphState" style="@style/info_value" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- QXDM logging & radio power -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<Button android:id="@+id/qxdm_log"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
|
||||
<Button android:id="@+id/radio_power"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
</LinearLayout>
|
||||
|
||||
<!-- SMSC -->
|
||||
<RelativeLayout android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView android:id="@+id/smsc_label"
|
||||
android:text="@string/radio_info_smsc_label"
|
||||
android:layout_alignBaseline="@+id/update_smsc"
|
||||
style="@style/info_label" />
|
||||
<Button android:id="@+id/refresh_smsc"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/radio_info_smsc_refresh_label"
|
||||
android:layout_alignParentRight="true"
|
||||
/>
|
||||
<Button android:id="@+id/update_smsc"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/radio_info_smsc_update_label"
|
||||
android:layout_toLeftOf="@+id/refresh_smsc"
|
||||
android:layout_alignBaseline="@+id/refresh_smsc"
|
||||
/>
|
||||
<EditText android:id="@+id/smsc"
|
||||
style="@style/form_value"
|
||||
android:layout_alignBaseline="@+id/refresh_smsc"
|
||||
android:layout_toLeftOf="@id/update_smsc"
|
||||
android:layout_toRightOf="@id/smsc_label" />
|
||||
</RelativeLayout>
|
||||
|
||||
<!-- Test setting to ignore bad DNS, useful in lab environments -->
|
||||
<LinearLayout style="@style/entry_layout">
|
||||
<Button android:id="@+id/dns_check_toggle"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/radio_info_toggle_dns_check_label"
|
||||
/>
|
||||
<TextView android:id="@+id/dnsCheckState" style="@style/info_value" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
132
res/layout/sdcard_settings_screen.xml
Normal file
@@ -0,0 +1,132 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/Settings/res/layout/sdcard_settings_screen.xml
|
||||
**
|
||||
** Copyright 2007, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<LinearLayout android:id="@+id/list"
|
||||
android:orientation="vertical"
|
||||
android:padding="10dip"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout android:id="@+id/usb"
|
||||
android:orientation="vertical"
|
||||
android:paddingBottom="10dip"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<CheckBox android:id="@+id/mass_storage"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/sdcard_settings_screen_mass_storage_text">
|
||||
<requestFocus/>
|
||||
</CheckBox>
|
||||
|
||||
<TextView android:text="@string/sdcard_changes_instructions" style="@style/info_small" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- divider line -->
|
||||
<View android:background="#FF000000"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="1dip" />
|
||||
|
||||
<LinearLayout android:id="@+id/mounted"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="10dip">
|
||||
|
||||
<TextView android:id="@+id/read_only"
|
||||
android:text="@string/sdcard_settings_read_only_status"
|
||||
style="@style/info_label" />
|
||||
|
||||
<Button android:id="@+id/sdcard_unmount"
|
||||
android:text="@string/sdcard_unmount"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
||||
|
||||
<Button android:id="@+id/sdcard_format"
|
||||
android:text="@string/sdcard_format"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dip"
|
||||
android:layout_width="wrap_content" android:layout_height="wrap_content" />
|
||||
|
||||
<TableLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="10dip">
|
||||
<TableRow>
|
||||
<TextView android:text="@string/sdcard_settings_total_bytes_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/total" style="@style/info_value" />
|
||||
</TableRow>
|
||||
<TableRow>
|
||||
<TextView android:text="@string/sdcard_settings_used_bytes_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/used" style="@style/info_value" />
|
||||
</TableRow>
|
||||
<TableRow>
|
||||
<TextView android:text="@string/sdcard_settings_available_bytes_label" style="@style/info_label" />
|
||||
<TextView android:id="@+id/available" style="@style/info_value" />
|
||||
</TableRow>
|
||||
</TableLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout style="@style/entry_layout"
|
||||
android:id="@+id/scanning"
|
||||
android:paddingTop="10dip">
|
||||
<TextView android:text="@string/sdcard_settings_scanning_status" style="@style/info_label" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout style="@style/entry_layout"
|
||||
android:id="@+id/removed"
|
||||
android:paddingTop="10dip">
|
||||
<TextView android:text="@string/sdcard_settings_not_present_status" style="@style/info_label" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout android:id="@+id/shared"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="10dip">
|
||||
|
||||
<LinearLayout style="@style/entry_layout" >
|
||||
<TextView android:text="@string/sdcard_settings_mass_storage_status" style="@style/info_label" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout style="@style/entry_layout"
|
||||
android:id="@+id/unmounted"
|
||||
android:paddingTop="10dip">
|
||||
<TextView android:text="@string/sdcard_settings_unmounted_status" style="@style/info_label" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout style="@style/entry_layout"
|
||||
android:id="@+id/bad_removal"
|
||||
android:paddingTop="10dip">
|
||||
<TextView android:text="@string/sdcard_settings_bad_removal_status" style="@style/info_label" />
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
|
45
res/layout/usage_stats.xml
Executable file
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent">
|
||||
|
||||
<TextView
|
||||
android:text="@string/display_order_text"
|
||||
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/typeSpinner"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:entries="@array/usage_stats_display_order_types" />
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" >
|
||||
<TextView
|
||||
android:text="@string/app_name_label"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_width="wrap_content"
|
||||
android:paddingRight="6dip"
|
||||
android:layout_height="wrap_content" />
|
||||
<TextView
|
||||
android:text="@string/launch_count_label"
|
||||
android:paddingRight="6dip"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
<TextView
|
||||
android:text="@string/usage_time_label"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content" />
|
||||
</LinearLayout>
|
||||
<ListView android:id="@+id/pkg_list"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:drawSelectorOnTop="false" />
|
||||
</LinearLayout>
|
50
res/layout/usage_stats_item.xml
Executable file
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2008, The Android Open Source Project
|
||||
**
|
||||
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||
** you may not use this file except in compliance with the License.
|
||||
** You may obtain a copy of the License at
|
||||
**
|
||||
** http://www.apache.org/licenses/LICENSE-2.0
|
||||
**
|
||||
** Unless required by applicable law or agreed to in writing, software
|
||||
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
** See the License for the specific language governing permissions and
|
||||
** limitations under the License.
|
||||
*/
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight">
|
||||
|
||||
<TextView android:id="@+id/package_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingLeft="12dip"
|
||||
android:maxLines="1" />
|
||||
|
||||
<TextView android:id="@+id/launch_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingLeft="12dip"
|
||||
android:maxLines="1" />
|
||||
|
||||
<TextView android:id="@+id/usage_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:paddingRight="6dip"
|
||||
android:paddingLeft="12dip"
|
||||
android:maxLines="1" />
|
||||
</LinearLayout>
|
||||
|
91
res/layout/wifi_ap_configure.xml
Normal file
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="8dip"
|
||||
android:orientation="vertical">
|
||||
|
||||
|
||||
|
||||
<!-- SSID -->
|
||||
|
||||
<TextView
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/wifi_type_ssid" />
|
||||
|
||||
<EditText android:id="@+id/ssid_edit"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dip"
|
||||
android:singleLine="true" />
|
||||
|
||||
|
||||
|
||||
<!-- Security -->
|
||||
|
||||
<TextView
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dip"
|
||||
android:text="@string/wifi_security" />
|
||||
|
||||
<!-- The entries will be set programmatically -->
|
||||
<Spinner android:id="@+id/security_spinner"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
|
||||
|
||||
<!-- Password -->
|
||||
|
||||
<TextView android:id="@+id/password_text"
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dip"
|
||||
android:text="@string/please_type_passphrase" />
|
||||
|
||||
<EditText android:id="@+id/password_edit"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dip"
|
||||
android:singleLine="true"
|
||||
android:password="true" />
|
||||
|
||||
<CheckBox android:id="@+id/show_password_checkbox"
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dip"
|
||||
android:text="@string/wifi_show_password" />
|
||||
|
||||
<Spinner android:id="@+id/wep_type_spinner"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:entries="@array/wifi_wep_type" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
61
res/layout/wifi_ap_info.xml
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="8dip"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/table"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="fill_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<!-- Info dynamically added here. -->
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Password -->
|
||||
<TextView android:id="@+id/password_text"
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dip"
|
||||
android:text="@string/please_type_passphrase" />
|
||||
|
||||
<EditText android:id="@+id/password_edit"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dip"
|
||||
android:singleLine="true"
|
||||
android:password="true" />
|
||||
|
||||
<CheckBox android:id="@+id/show_password_checkbox"
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dip"
|
||||
android:text="@string/wifi_show_password" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
32
res/layout/wifi_ap_info_row.xml
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:id="@+id/name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginRight="8dip"
|
||||
android:textAppearance="?android:attr/textAppearanceSmallInverse" />
|
||||
<TextView
|
||||
android:id="@+id/value"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceSmallInverse"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
57
res/layout/wifi_ap_retry_password.xml
Normal file
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
|
||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="8dip"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/wifi_password_incorrect_error" />
|
||||
|
||||
<!-- Password -->
|
||||
<TextView android:id="@+id/password_text"
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dip"
|
||||
android:text="@string/please_type_passphrase" />
|
||||
|
||||
<EditText android:id="@+id/password_edit"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dip"
|
||||
android:singleLine="true"
|
||||
android:password="true" />
|
||||
|
||||
<CheckBox android:id="@+id/show_password_checkbox"
|
||||
style="?android:attr/textAppearanceSmallInverse"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dip"
|
||||
android:text="@string/wifi_show_password" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</ScrollView>
|
19
res/values-cs-nokeys/strings.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="applications_settings_summary">"Správa aplikací"</string>
|
||||
</resources>
|
72
res/values-cs/arrays.xml
Normal file
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string-array name="timezone_filters">
|
||||
<item>"Amerika"</item>
|
||||
<item>"Evropa"</item>
|
||||
<item>"Afrika"</item>
|
||||
<item>"Asie"</item>
|
||||
<item>"Austrálie"</item>
|
||||
<item>"Tichomoří"</item>
|
||||
<item>"Všechny"</item>
|
||||
</string-array>
|
||||
<string-array name="screen_timeout_entries">
|
||||
<item>"15 sekund"</item>
|
||||
<item>"30 sekund"</item>
|
||||
<item>"1 minuta"</item>
|
||||
<item>"2 minuty"</item>
|
||||
<item>"10 minut"</item>
|
||||
<item>"Nevypínat"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_security_entries">
|
||||
<item>"Automaticky"</item>
|
||||
<item>"Žádné"</item>
|
||||
<item>"WEP"</item>
|
||||
<item>"WPA Personal"</item>
|
||||
<item>"WPA2 Personal"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_security_without_auto_entries">
|
||||
<item>"Žádné"</item>
|
||||
<item>"WEP"</item>
|
||||
<item>"WPA Personal"</item>
|
||||
<item>"WPA2 Personal"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_wep_type">
|
||||
<item>"Automaticky"</item>
|
||||
<item>"WEP ASCII"</item>
|
||||
<item>"Hexadecimální WEP"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_sleep_policy_entries">
|
||||
<item>"Při vypnutí obrazovky"</item>
|
||||
<item>"Nikdy, je-li zapnuto napájení"</item>
|
||||
<item>"Nikdy"</item>
|
||||
</string-array>
|
||||
<!-- no translation found for battery_history_type_spinner:0 (2193799199027871385) -->
|
||||
<!-- no translation found for battery_history_type_spinner:1 (6401018715947316517) -->
|
||||
<!-- no translation found for battery_history_type_spinner:2 (188092590354892392) -->
|
||||
<!-- no translation found for battery_history_type_spinner:3 (8414109131222049141) -->
|
||||
<!-- no translation found for battery_history_type_spinner:4 (1327904325081257093) -->
|
||||
<!-- no translation found for battery_history_type_spinner:5 (4832254146664706277) -->
|
||||
<!-- no translation found for battery_history_which_spinner:0 (3451981114763440074) -->
|
||||
<!-- no translation found for battery_history_which_spinner:1 (166936313535197598) -->
|
||||
<!-- no translation found for battery_history_which_spinner:2 (4793941382744963893) -->
|
||||
<string-array name="usage_stats_display_order_types">
|
||||
<item>"Doba použití"</item>
|
||||
<item>"Počet spuštění"</item>
|
||||
<item>"Název aplikace"</item>
|
||||
</string-array>
|
||||
</resources>
|
672
res/values-cs/strings.xml
Normal file
@@ -0,0 +1,672 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="device_info_default">"Neznámé"</string>
|
||||
<string name="turn_on_radio">"Zapnout rádio"</string>
|
||||
<string name="turn_off_radio">"Vypnout rádio"</string>
|
||||
<string name="turn_on_qxdm">"Povolit protokol QXDM SD"</string>
|
||||
<string name="turn_off_qxdm">"Zakázat protokol QXDM SD"</string>
|
||||
<string name="radioInfo_menu_viewADN">"Zobrazit adresář karty SIM"</string>
|
||||
<string name="radioInfo_menu_viewFDN">"Zobrazit povolená telefonní čísla"</string>
|
||||
<string name="radioInfo_menu_viewSDN">"Zobrazit čísla volání služeb"</string>
|
||||
<string name="radioInfo_menu_getPDP">"Získat seznam PDP"</string>
|
||||
<string name="radioInfo_menu_enableData">"Povolit připojení datových služeb"</string>
|
||||
<string name="radioInfo_menu_disableData">"Zakázat připojení datových služeb"</string>
|
||||
<string name="radioInfo_menu_enableDataOnBoot">"Povolit startovací data"</string>
|
||||
<string name="radioInfo_menu_disableDataOnBoot">"Zakázat startovací data"</string>
|
||||
<string name="radioInfo_service_in">"V provozu"</string>
|
||||
<string name="radioInfo_service_out">"Nepokrytá oblast"</string>
|
||||
<string name="radioInfo_service_emergency">"Pouze tísňová volání"</string>
|
||||
<string name="radioInfo_service_off">"Rádio je vypnuto"</string>
|
||||
<string name="radioInfo_roaming_in">"Roaming"</string>
|
||||
<string name="radioInfo_roaming_not">"Bez roamingu"</string>
|
||||
<string name="radioInfo_phone_idle">"Nečinný"</string>
|
||||
<string name="radioInfo_phone_ringing">"Vyzvánění"</string>
|
||||
<string name="radioInfo_phone_offhook">"Probíhající hovor"</string>
|
||||
<string name="radioInfo_data_disconnected">"Odpojeno"</string>
|
||||
<string name="radioInfo_data_connecting">"Připojování"</string>
|
||||
<string name="radioInfo_data_connected">"Připojeno"</string>
|
||||
<string name="radioInfo_data_suspended">"Pozastaveno"</string>
|
||||
<string name="radioInfo_unknown">"neznámý"</string>
|
||||
<string name="radioInfo_display_packets">"pakety"</string>
|
||||
<string name="radioInfo_display_bytes">"B"</string>
|
||||
<string name="radioInfo_display_dbm">"dBm"</string>
|
||||
<string name="radioInfo_display_asu">"asu"</string>
|
||||
<string name="radioInfo_lac">"LAC"</string>
|
||||
<string name="radioInfo_cid">"CID"</string>
|
||||
<string name="sdcard_unmount">"Odpojit kartu SD"</string>
|
||||
<string name="sdcard_format">"Formátovat kartu SD"</string>
|
||||
<string name="small_font">"Malá"</string>
|
||||
<string name="medium_font">"Střední"</string>
|
||||
<string name="large_font">"Velká"</string>
|
||||
<string name="font_size_save">"OK"</string>
|
||||
<string name="sdcard_setting">"Karta SD"</string>
|
||||
<string name="battery_info_status_label">"Stav baterie:"</string>
|
||||
<string name="battery_info_scale_label">"Měřítko baterie:"</string>
|
||||
<string name="battery_info_level_label">"Stav baterie:"</string>
|
||||
<string name="battery_info_health_label">"Zdraví baterie:"</string>
|
||||
<string name="battery_info_technology_label">"Technologie baterie:"</string>
|
||||
<string name="battery_info_voltage_label">"Napětí baterie:"</string>
|
||||
<string name="battery_info_voltage_units">"mV"</string>
|
||||
<string name="battery_info_temperature_label">"Teplota baterie:"</string>
|
||||
<string name="battery_info_temperature_units">"°C"</string>
|
||||
<string name="battery_info_uptime">"Čas od spuštění:"</string>
|
||||
<string name="battery_info_awake_battery">"Doba provozu z baterie:"</string>
|
||||
<string name="battery_info_awake_plugged">"Doba provozu při nabíjení:"</string>
|
||||
<string name="battery_info_screen_on">"Doba zapnutí obrazovky:"</string>
|
||||
<string name="battery_info_status_unknown">"Neznámé"</string>
|
||||
<string name="battery_info_status_charging">"Nabíjení"</string>
|
||||
<string name="battery_info_status_charging_ac">"(AC)"</string>
|
||||
<string name="battery_info_status_charging_usb">"(USB)"</string>
|
||||
<string name="battery_info_status_discharging">"Vybíjení"</string>
|
||||
<string name="battery_info_status_not_charging">"Nenabíjí se"</string>
|
||||
<string name="battery_info_status_full">"Plná"</string>
|
||||
<string name="battery_info_health_unknown">"Neznámé"</string>
|
||||
<string name="battery_info_health_good">"Dobrá"</string>
|
||||
<string name="battery_info_health_overheat">"Přehřátá"</string>
|
||||
<string name="battery_info_health_dead">"Vybitá"</string>
|
||||
<string name="battery_info_health_over_voltage">"Přepětí"</string>
|
||||
<string name="battery_info_health_unspecified_failure">"Neznámá chyba"</string>
|
||||
<string name="bluetooth">"Bluetooth"</string>
|
||||
<string name="bluetooth_visibility">"Viditelné"</string>
|
||||
<string name="bluetooth_is_discoverable">"Zařízení je viditelné v intervalu <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> s."</string>
|
||||
<string name="bluetooth_not_discoverable">"Přepne zařízení do viditelného režimu"</string>
|
||||
<string name="bluetooth_devices">"Zařízení Bluetooth"</string>
|
||||
<string name="bluetooth_device_name">"Název zařízení"</string>
|
||||
<string name="bluetooth_name_not_set">"Název není nastaven, použit název účtu"</string>
|
||||
<string name="bluetooth_scan_for_devices">"Vyhledat zařízení"</string>
|
||||
<string name="bluetooth_disconnect_blank">"Zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> bude odpojeno."</string>
|
||||
<string name="bluetooth_connected">"Připojeno"</string>
|
||||
<string name="bluetooth_disconnected">"Odpojeno"</string>
|
||||
<string name="bluetooth_disconnecting">"Odpojování..."</string>
|
||||
<string name="bluetooth_connecting">"Připojování..."</string>
|
||||
<!-- no translation found for bluetooth_unknown (1905151516611093010) -->
|
||||
<skip />
|
||||
<string name="bluetooth_not_connected">"Párovat s tímto zařízením"</string>
|
||||
<string name="bluetooth_pairing">"Párování..."</string>
|
||||
<!-- no translation found for bluetooth_paired (1247541089000057726) -->
|
||||
<skip />
|
||||
<string name="bluetooth_device">"Náhlavní souprava či handsfree"</string>
|
||||
<string name="progress_scanning">"Vyhledávání"</string>
|
||||
<string name="bluetooth_notif_ticker">"Požadavek na párování zařízení Bluetooth"</string>
|
||||
<string name="bluetooth_notif_title">"Požadavek na párování"</string>
|
||||
<string name="bluetooth_notif_message">"Povolit párování se zařízením "</string>
|
||||
<string name="date_and_time">"Nastavení data a času"</string>
|
||||
<string name="date_time_12_hour_sample">"13:00"</string>
|
||||
<string name="date_time_24_hour_sample">"13:00"</string>
|
||||
<string name="choose_timezone">"Volba časového pásma"</string>
|
||||
<string name="display_preview_label">"Náhled:"</string>
|
||||
<string name="display_font_size_label">"Velikost písma:"</string>
|
||||
<!-- no translation found for intent_sender_data_label (8363026381459131554) -->
|
||||
<skip />
|
||||
<string name="intent_sender_sendbroadcast_text">"Odeslat <xliff:g id="BROADCAST">broadcast</xliff:g>"</string>
|
||||
<string name="intent_sender_action_label">"<xliff:g id="ACTION">Action</xliff:g>:"</string>
|
||||
<string name="intent_sender_startactivity_text">"Spustit činnost <xliff:g id="ACTIVITY">activity</xliff:g>"</string>
|
||||
<string name="intent_sender_resource_label">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
|
||||
<string name="intent_sender_account_label">"Účet:"</string>
|
||||
<string name="proxy_clear_text">"Vymazat"</string>
|
||||
<string name="proxy_port_label">"Port"</string>
|
||||
<string name="proxy_defaultView_text">"Obnovit výchozí nastavení"</string>
|
||||
<string name="proxy_action_text">"Uložit"</string>
|
||||
<string name="proxy_hostname_label">"Název hostitele"</string>
|
||||
<string name="proxy_error">"Upozornění"</string>
|
||||
<string name="proxy_error_dismiss">"OK"</string>
|
||||
<string name="proxy_error_invalid_host">"Zadaný název hostitele není platný."</string>
|
||||
<string name="proxy_error_empty_port">"Je třeba vyplnit pole port."</string>
|
||||
<string name="proxy_error_empty_host_set_port">"Pokud je pole hostitel prázdné, musí být prázdné i pole port."</string>
|
||||
<string name="proxy_error_invalid_port">"Zadaný port není platný."</string>
|
||||
<string name="radio_info_signal_location_label">"Poloha:"</string>
|
||||
<string name="radio_info_neighboring_location_label">"Sousední identifikátor CID:"</string>
|
||||
<string name="radio_info_data_attempts_label">"Pokusy dat:"</string>
|
||||
<string name="radio_info_gprs_service_label">"Služba GPRS:"</string>
|
||||
<string name="radio_info_roaming_label">"Roaming:"</string>
|
||||
<string name="radio_info_imei_label">"IMEI:"</string>
|
||||
<string name="radio_info_call_redirect_label">"Přesměrované hovory:"</string>
|
||||
<string name="radio_info_ppp_resets_label">"Počet obnovení protokolu PPP od spuštění:"</string>
|
||||
<string name="radio_info_gsm_disconnects_label">"Odpojení od sítě GSM:"</string>
|
||||
<string name="radio_info_current_network_label">"Aktuální síť:"</string>
|
||||
<string name="radio_info_data_successes_label">"Úspěšná data:"</string>
|
||||
<string name="radio_info_ppp_received_label">"Přijaté protokoly PPP:"</string>
|
||||
<string name="radio_info_gsm_service_label">"Služba GSM:"</string>
|
||||
<string name="radio_info_signal_strength_label">"Síla signálu:"</string>
|
||||
<string name="radio_info_call_status_label">"Stav hovoru:"</string>
|
||||
<string name="radio_info_ppp_sent_label">"Odeslané informace PPP:"</string>
|
||||
<string name="radio_info_radio_resets_label">"Resety rádia:"</string>
|
||||
<string name="radio_info_message_waiting_label">"Čekající zprávy:"</string>
|
||||
<string name="radio_info_phone_number_label">"Telefonní číslo:"</string>
|
||||
<string name="radio_info_band_mode_label">"Zvolit pásmo rádia"</string>
|
||||
<string name="radio_info_network_type_label">"Typ sítě:"</string>
|
||||
<string name="radio_info_set_perferred_label">"Upřednostňovaný typ sítě:"</string>
|
||||
<string name="radio_info_ping_ipaddr">"Použít test Ping na IpAddr:"</string>
|
||||
<string name="radio_info_ping_hostname">"Provést test Ping hostitele (www.google.cz):"</string>
|
||||
<string name="radio_info_http_client_test">"Test klienta HTTP:"</string>
|
||||
<string name="radio_info_toggle_ciph_label">"Přepnout šifrování"</string>
|
||||
<string name="ping_test_label">"Spustit test Ping"</string>
|
||||
<string name="radio_info_smsc_label">"SMSC:"</string>
|
||||
<string name="radio_info_smsc_update_label">"Aktualizovat"</string>
|
||||
<string name="radio_info_smsc_refresh_label">"Obnovit"</string>
|
||||
<string name="radio_info_toggle_dns_check_label">"Přepnout kontrolu DNS"</string>
|
||||
<string name="band_mode_title">"Nastavit pásmo pro GSM a UMTS"</string>
|
||||
<string name="band_mode_loading">"Načítání seznamu pásem..."</string>
|
||||
<string name="band_mode_set">"Nastavit"</string>
|
||||
<string name="band_mode_failed">"Pásmo nenastaveno."</string>
|
||||
<string name="band_mode_succeeded">"Pásmo nastaveno."</string>
|
||||
<string name="sdcard_changes_instructions">"Změna se projeví při příštím připojení kabelu USB."</string>
|
||||
<string name="sdcard_settings_screen_mass_storage_text">"Povolit velkokapacitní paměťové zařízení USB"</string>
|
||||
<string name="sdcard_settings_total_bytes_label">"Celková paměť (bajty):"</string>
|
||||
<string name="sdcard_settings_not_present_status">"Žádná karta SD není dostupná."</string>
|
||||
<string name="sdcard_settings_available_bytes_label">"Dostupná paměť (bajty):"</string>
|
||||
<string name="sdcard_settings_mass_storage_status">"Karta SD je využívána jako velkokapacitní paměťové zařízení."</string>
|
||||
<string name="sdcard_settings_unmounted_status">"Nyní můžete kartu SD bezpečně odebrat."</string>
|
||||
<string name="sdcard_settings_bad_removal_status">"Karta SD byla odstraněna za provozu."</string>
|
||||
<string name="sdcard_settings_used_bytes_label">"Obsazená paměť (bajty):"</string>
|
||||
<string name="sdcard_settings_scanning_status">"Vyhledávání mediálních souborů na kartě SD..."</string>
|
||||
<string name="sdcard_settings_read_only_status">"Karta SD byla připojena pouze pro čtení."</string>
|
||||
<string name="next_label">"Další"</string>
|
||||
<string name="language_picker_title">"Národní prostředí"</string>
|
||||
<string name="select_your_language">"Zvolte jazyk"</string>
|
||||
<string name="activity_picker_label">"Zvolit činnost"</string>
|
||||
<string name="device_info_label">"Info o zařízení"</string>
|
||||
<string name="battery_info_label">"Info o baterii"</string>
|
||||
<string name="battery_history_label">"Historie baterie"</string>
|
||||
<string name="display_label">"Zobrazení"</string>
|
||||
<string name="phone_info_label">"Info o telefonu"</string>
|
||||
<string name="sd_card_settings_label">"Karta SD"</string>
|
||||
<string name="proxy_settings_label">"Nastavení proxy serveru"</string>
|
||||
<string name="cancel">"Zrušit"</string>
|
||||
<string name="settings_label">"Nastavení"</string>
|
||||
<string name="airplane_mode">"Režim V letadle"</string>
|
||||
<string name="airplane_mode_summary">"Vypne všechna bezdrátová připojení"</string>
|
||||
<string name="airplane_mode_turning_on">"Vypínání bezdrátových připojení..."</string>
|
||||
<string name="airplane_mode_turning_off">"Povolování bezdrátových připojení..."</string>
|
||||
<string name="radio_controls_title">"Ovládání bezdrátových sítí"</string>
|
||||
<string name="radio_controls_summary">"Umožňuje spravovat WiFi, Bluetooth, režim v letadle a mobilní sítě"</string>
|
||||
<string name="date_and_time_settings_title">"Datum a čas"</string>
|
||||
<string name="date_and_time_settings_summary">"Umožňuje nastavit datum, čas, časové pásmo a formát"</string>
|
||||
<string name="date_time_auto">"Automaticky"</string>
|
||||
<string name="date_time_auto_summaryOn">"Budou použity hodnoty poskytnuté sítí"</string>
|
||||
<string name="date_time_auto_summaryOff">"Jsou použity hodnoty poskytnuté sítí"</string>
|
||||
<string name="date_time_24hour">"Použít 24hodinový formát"</string>
|
||||
<string name="date_time_set_time">"Nastavení času"</string>
|
||||
<string name="date_time_set_timezone">"Volba časového pásma"</string>
|
||||
<string name="date_time_set_date">"Nastavení data"</string>
|
||||
<string name="date_time_date_format">"Formát data"</string>
|
||||
<string name="zone_list_menu_sort_alphabetically">"Řadit abecedně"</string>
|
||||
<string name="zone_list_menu_sort_by_timezone">"Řadit podle časového pásma"</string>
|
||||
<string name="security_settings_title">"Zabezpečení a poloha"</string>
|
||||
<string name="security_settings_summary">"Umožňuje nastavit vaši polohu, odemknutí obrazovky a blokování karty SIM"</string>
|
||||
<string name="security_passwords_title">"Hesla"</string>
|
||||
<string name="bluetooth_quick_toggle_title">"Bluetooth"</string>
|
||||
<string name="bluetooth_quick_toggle_summary">"Zapíná Bluetooth"</string>
|
||||
<string name="bluetooth_settings">"Nastavení Bluetooth"</string>
|
||||
<string name="bluetooth_settings_title">"Nastavení Bluetooth"</string>
|
||||
<string name="bluetooth_settings_summary">"Umožňuje spravovat připojení, nastavit název zařízení a viditelnost"</string>
|
||||
<string name="bluetooth_pin_entry">"Požadavek na párování zařízení Bluetooth"</string>
|
||||
<string name="bluetooth_device_info">"Info o zařízení Bluetooth"</string>
|
||||
<string name="bluetooth_enter_pin_msg">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n\n"Párování začnete zadáním kódu PIN."\n"(Zkuste 0000 nebo 1234.)"</string>
|
||||
<string name="bluetooth_error_title">"Upozornění"</string>
|
||||
<string name="bluetooth_pairing_error_message">"Při párování se zařízením <xliff:g id="DEVICE_NAME">%1$s</xliff:g> došlo k potížím."</string>
|
||||
<string name="bluetooth_pairing_pin_error_message">"Při párování se zařízením <xliff:g id="DEVICE_NAME">%1$s</xliff:g> došlo k potížím. Zadaný kód PIN je nesprávný."</string>
|
||||
<string name="bluetooth_connecting_error_message">"Při připojování k zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g> došlo k potížím."</string>
|
||||
<string name="bluetooth_preference_scan_title">"Vyhledat zařízení"</string>
|
||||
<string name="bluetooth_device_context_connect">"Připojit"</string>
|
||||
<string name="bluetooth_device_context_disconnect">"Odpojit"</string>
|
||||
<string name="bluetooth_device_context_pair_connect">"Párovat a připojit"</string>
|
||||
<string name="bluetooth_device_context_unpair">"Zrušit párování"</string>
|
||||
<string name="bluetooth_device_context_disconnect_unpair">"Odpojit a zrušit párování"</string>
|
||||
<string name="bluetooth_device_context_connect_advanced">"Možnosti"</string>
|
||||
<string name="bluetooth_connect_specific_profiles_title">"Připojit k síti…"</string>
|
||||
<string name="bluetooth_profile_a2dp">"Média"</string>
|
||||
<string name="bluetooth_profile_headset">"Telefon"</string>
|
||||
<string name="bluetooth_summary_connected_to_a2dp">"Připojeno ke zvukovému médiu"</string>
|
||||
<string name="bluetooth_summary_connected_to_headset">"Připojeno k náhlavní soupravě"</string>
|
||||
<string name="bluetooth_summary_connected_to_a2dp_headset">"Připojeno k náhlavní soupravě a zvukovému médiu"</string>
|
||||
<string name="bluetooth_device_advanced_title">"Možnosti zařízení <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
|
||||
<string name="bluetooth_device_advanced_online_mode_title">"Připojit"</string>
|
||||
<string name="bluetooth_device_advanced_online_mode_summary">"Umožňuje připojení zařízení s rozhraním Bluetooth"</string>
|
||||
<string name="bluetooth_device_advanced_profile_header_title">"Profily"</string>
|
||||
<string name="bluetooth_a2dp_profile_summary_connected">"Připojeno ke zvukovému médiu"</string>
|
||||
<string name="bluetooth_headset_profile_summary_connected">"Připojeno k náhlavní soupravě"</string>
|
||||
<string name="bluetooth_a2dp_profile_summary_use_for">"Umožňuje připojení zvukového média"</string>
|
||||
<string name="bluetooth_headset_profile_summary_use_for">"Umožňuje připojení náhlavní soupravy"</string>
|
||||
<string name="wifi">"WiFi"</string>
|
||||
<string name="wifi_quick_toggle_title">"WiFi"</string>
|
||||
<string name="wifi_quick_toggle_summary">"Zapíná WiFi"</string>
|
||||
<string name="wifi_settings">"Nastavení WiFi"</string>
|
||||
<string name="wifi_settings_category">"Nastavení WiFi"</string>
|
||||
<string name="wifi_settings_summary">"Umožňuje nastavit a spravovat přístupové body bezdrátové sítě"</string>
|
||||
<string name="forget_network">"Odstranit"</string>
|
||||
<string name="wifi_status">"Stav"</string>
|
||||
<string name="wifi_link_speed">"Rychlost"</string>
|
||||
<string name="wifi_signal_3">"Vynikající"</string>
|
||||
<string name="wifi_signal_2">"Dobrá"</string>
|
||||
<string name="wifi_signal_1">"Dostačující"</string>
|
||||
<string name="wifi_signal_0">"Nízká"</string>
|
||||
<string name="security">"Zabezpečení"</string>
|
||||
<string name="wifi_security_open">"Nezabezpečená"</string>
|
||||
<string name="wifi_security_wep">"WEP"</string>
|
||||
<string name="wifi_security_wpa">"WPA"</string>
|
||||
<string name="wifi_security_wpa2">"WPA2"</string>
|
||||
<string name="wifi_security_unknown">"Neznámé"</string>
|
||||
<string name="wifi_security_verbose_open">"Nezabezpečená síť"</string>
|
||||
<string name="wifi_security_verbose_wep">"Zabezpečení WEP"</string>
|
||||
<string name="wifi_security_verbose_wpa">"Zabezpečení WPA"</string>
|
||||
<string name="wifi_security_verbose_wpa2">"Zabezpečení WPA2"</string>
|
||||
<string name="ip_address">"Adresa IP"</string>
|
||||
<string name="signal">"Síla signálu"</string>
|
||||
<string name="wifi_starting">"Zapínání WiFi..."</string>
|
||||
<string name="wifi_stopping">"Vypínání..."</string>
|
||||
<string name="wifi_error">"Chyba"</string>
|
||||
<string name="error_starting">"WiFi se nepodařilo spustit."</string>
|
||||
<string name="error_stopping">"WiFi se nepodařilo zastavit."</string>
|
||||
<string name="error_scanning">"Nepodařilo se vyhledávat sítě."</string>
|
||||
<string name="error_connecting">"K síti se nelze připojit."</string>
|
||||
<string name="error_saving">"Síť nelze uložit."</string>
|
||||
<string name="connect">"Připojit"</string>
|
||||
<string name="connect_to_blank">"Připojit k síti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</string>
|
||||
<string name="please_type_passphrase">"Heslo bezdrátové sítě"</string>
|
||||
<string name="please_type_hex_key">"Hexadecimální klíč WEP (0-9, A-F)"</string>
|
||||
<string name="wifi_show_password">"Zobrazovat heslo."</string>
|
||||
<string name="scan_wifi">"Vyhledávání"</string>
|
||||
<string name="summary_not_in_range">"Mimo dosah"</string>
|
||||
<string name="summary_remembered">"Uložené nastavení"</string>
|
||||
<string name="summary_connection_failed">"Připojení se nezdařilo, zkuste to znovu."</string>
|
||||
<string name="wifi_access_points">"Sítě WiFi"</string>
|
||||
<string name="wifi_type_ssid">"Identifikátor SSID sítě"</string>
|
||||
<string name="wifi_security">"Zabezpečení"</string>
|
||||
<string name="wifi_save_config">"Uložit"</string>
|
||||
<string name="wifi_password_unchanged">"(nezměněno)"</string>
|
||||
<string name="wifi_add_other_network">"Přidat síť WiFi"</string>
|
||||
<string name="wifi_notify_open_networks">"Oznamování sítě"</string>
|
||||
<string name="wifi_notify_open_networks_summary">"Oznamování dostupných nezabezpečených sítí"</string>
|
||||
<string name="wifi_password_incorrect_error">"Původní síťové heslo bylo zadáno nesprávně. Zkuste to znovu."</string>
|
||||
<string name="wifi_generic_connection_error">"Při připojování k síti došlo k chybě. Zkuste to znovu."</string>
|
||||
<string name="wifi_menu_advanced">"Pokročilé"</string>
|
||||
<string name="wifi_ip_settings_titlebar">"Nastavení adresy IP"</string>
|
||||
<string name="wifi_ip_settings_menu_save">"Uložit"</string>
|
||||
<string name="wifi_ip_settings_menu_cancel">"Zrušit"</string>
|
||||
<string name="wifi_ip_settings_invalid_ip">"Zadejte platnou adresu IP."</string>
|
||||
<string name="wifi_use_static_ip">"Použít statickou adresu IP"</string>
|
||||
<string name="wifi_ip_address">"Adresa IP"</string>
|
||||
<string name="wifi_dns1">"Server DNS 1"</string>
|
||||
<string name="wifi_dns2">"Server DNS 2"</string>
|
||||
<string name="wifi_gateway">"Brána"</string>
|
||||
<string name="wifi_netmask">"Maska sítě"</string>
|
||||
<string name="wifi_context_menu_connect">"Připojit k síti"</string>
|
||||
<string name="wifi_context_menu_forget">"Odstranit záznam sítě"</string>
|
||||
<string name="wifi_context_menu_change_password">"Změnit heslo"</string>
|
||||
<string name="wifi_advanced_titlebar">"Pokročilé"</string>
|
||||
<string name="wifi_setting_num_channels_title">"Regulační doména"</string>
|
||||
<string name="wifi_setting_num_channels_summary">"Umožňuje nastavit počet použitých kanálů"</string>
|
||||
<string name="wifi_setting_num_channels_error">"Při nastavení regulační domény došlo k chybě."</string>
|
||||
<string name="wifi_setting_num_channels_channel_phrase">"Kanály: <xliff:g id="NUM_CHANNELS">%1$d</xliff:g>"</string>
|
||||
<string name="wifi_setting_sleep_policy_title">"Zásady používání sítě Wi-Fi v režimu spánku"</string>
|
||||
<string name="wifi_setting_sleep_policy_summary">"Určit, kdy přepnout ze sítě Wi-Fi na mobilní datový přenos"</string>
|
||||
<string name="wifi_setting_sleep_policy_error">"Při nastavení zásad pro režim spánku došlo k problému."</string>
|
||||
<string name="wifi_advanced_mac_address_title">"Adresa MAC"</string>
|
||||
<string name="fragment_status_scanning">"Vyhledávání..."</string>
|
||||
<string name="fragment_status_connecting">"Připojování k síti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</string>
|
||||
<string name="fragment_status_authenticating">"Ověřování v síti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</string>
|
||||
<string name="fragment_status_obtaining_ip">"Získávání adresy IP ze sítě <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</string>
|
||||
<string name="fragment_status_connected">"Připojeno k síti <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</string>
|
||||
<string name="fragment_status_disconnecting">"Odpojování od sítě <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</string>
|
||||
<string name="fragment_status_disconnected">"Odpojeno"</string>
|
||||
<string name="fragment_status_failed">"Připojení se nezdařilo."</string>
|
||||
<string name="status_scanning">"Vyhledávání..."</string>
|
||||
<string name="status_connecting">"Připojování..."</string>
|
||||
<string name="status_authenticating">"Ověřování..."</string>
|
||||
<string name="status_obtaining_ip">"Získávání adresy..."</string>
|
||||
<string name="status_connected">"Připojeno"</string>
|
||||
<string name="status_disconnecting">"Odpojování..."</string>
|
||||
<string name="status_disconnected">"Odpojeno"</string>
|
||||
<string name="status_failed">"Připojení se nezdařilo."</string>
|
||||
<string name="sound_and_display_settings">"Obraz a zvuk"</string>
|
||||
<string name="sound_settings">"Nastavení zvuku"</string>
|
||||
<string name="sound_and_display_settings_summary">"Umožňuje nastavit vyzváněcí tón, oznámení a jas obrazovky"</string>
|
||||
<string name="silent_mode_title">"Tichý režim"</string>
|
||||
<string name="silent_mode_summary">"Ztiší všechny zvuky kromě médií a upozornění"</string>
|
||||
<string name="ringtone_title">"Vyzváněcí tón telefonu"</string>
|
||||
<string name="ringtone_summary">"Umožňuje nastavit výchozí vyzváněcí tón příchozího hovoru"</string>
|
||||
<string name="ring_volume_title">"Hlasitost vyzvánění"</string>
|
||||
<string name="ring_volume_summary">"Umožňuje nastavit hlasitost příchozích hovorů a oznámení"</string>
|
||||
<string name="vibrate_title">"Vibrace telefonu"</string>
|
||||
<string name="vibrate_summary">"Příchozí hovory jsou provázeny vibracemi"</string>
|
||||
<string name="notification_sound_title">"Tón oznámení"</string>
|
||||
<string name="notification_sound_summary">"Umožňuje nastavit výchozí tón oznámení"</string>
|
||||
<string name="incoming_call_volume_title">"Hlasitost příchozího hovoru"</string>
|
||||
<string name="notification_volume_title">"Hlasitost oznámení"</string>
|
||||
<string name="checkbox_notification_same_as_incoming_call">"Použije hlasitost příchozích hovorů také pro oznámení"</string>
|
||||
<string name="notification_sound_dialog_title">"Zvolit vyzváněcí tón oznámení"</string>
|
||||
<string name="media_volume_title">"Hlasitost médií"</string>
|
||||
<string name="media_volume_summary">"Umožňuje nastavit hlasitost hudby a videí"</string>
|
||||
<string name="dtmf_tone_enable_title">"Dotyky jsou provázeny zvuky"</string>
|
||||
<string name="dtmf_tone_enable_summary_on">"Tlačítka číselníku jsou provázena zvuky"</string>
|
||||
<string name="dtmf_tone_enable_summary_off">"Tlačítka číselníku jsou provázena zvuky"</string>
|
||||
<string name="sound_effects_enable_title">"Výběr se zvuky"</string>
|
||||
<string name="sound_effects_enable_summary_on">"Výběr na obrazovce je provázen zvuky"</string>
|
||||
<string name="sound_effects_enable_summary_off">"Výběr na obrazovce je provázen zvuky"</string>
|
||||
<string name="play_media_notification_sounds_enable_title">"Oznámení karty SD"</string>
|
||||
<string name="play_media_notification_sounds_enable_summary_on">"Vypnout zvuky oznámení karty SD"</string>
|
||||
<string name="play_media_notification_sounds_enable_summary_off">"Povolit zvuky oznámení karty SD"</string>
|
||||
<string name="sync_settings">"Synchronizace dat"</string>
|
||||
<string name="sync_settings_summary">"Umožňuje vybrat aplikace pro synchronizaci"</string>
|
||||
<string name="display_settings">"Nastavení zobrazení"</string>
|
||||
<string name="animations_title">"Animace"</string>
|
||||
<string name="animations_summary_on">"Zobrazit animace otevírání a zavírání oken"</string>
|
||||
<string name="animations_summary_off">"Animuje otevírání a zavírání oken"</string>
|
||||
<string name="brightness">"Jas"</string>
|
||||
<string name="brightness_summary">"Nastavte jas displeje"</string>
|
||||
<string name="screen_timeout">"Interval vypnutí obrazovky"</string>
|
||||
<string name="screen_timeout_summary">"Upravte prodlevu, po které se obrazovka automaticky vypne"</string>
|
||||
<string name="sim_lock_settings">"Nastavení zámku karty SIM"</string>
|
||||
<string name="sim_lock_settings_category">"Nastavení zámku karty SIM"</string>
|
||||
<string name="sim_lock_settings_title">"Zámek karty SIM"</string>
|
||||
<string name="sim_pin_toggle">"Zamykat kartu SIM"</string>
|
||||
<string name="sim_lock_on">"K použití telefonu je vyžadován kód PIN"</string>
|
||||
<string name="sim_lock_off">"K použití telefonu je vyžadován PIN"</string>
|
||||
<string name="sim_pin_change">"Změnit kód PIN karty SIM"</string>
|
||||
<string name="sim_enter_pin">"Kód PIN karty SIM"</string>
|
||||
<string name="sim_enable_sim_lock">"Zamykat kartu SIM"</string>
|
||||
<string name="sim_disable_sim_lock">"Odemknout kartu SIM"</string>
|
||||
<string name="sim_enter_old">"Starý kód PIN karty SIM"</string>
|
||||
<string name="sim_enter_new">"Nový kód PIN karty SIM"</string>
|
||||
<string name="sim_reenter_new">"Potvrďte nový kód PIN."</string>
|
||||
<string name="sim_change_pin">"Kód PIN karty SIM"</string>
|
||||
<string name="sim_bad_pin">"Nesprávný kód PIN."</string>
|
||||
<string name="sim_pins_dont_match">"Kódy PIN nejsou shodné."</string>
|
||||
<string name="sim_change_failed">"Změna kódu PIN se nezdařila."\n"Kód PIN je zřejmě nesprávný."</string>
|
||||
<string name="sim_change_succeeded">"Kód PIN karty SIM byl úspěšně změněn."</string>
|
||||
<string name="sim_lock_failed">"Stav zámku karty SIM nelze změnit."\n"Zřejmě jste zadali nesprávný kód PIN."</string>
|
||||
<string name="sim_enter_ok">"OK"</string>
|
||||
<string name="sim_enter_cancel">"Zrušit"</string>
|
||||
<string name="device_info_settings">"Stav telefonu"</string>
|
||||
<string name="system_update_settings_list_item_title">"Aktualizace systému"</string>
|
||||
<string name="system_update_settings_list_item_summary">"Zkontrolovat aktualizace systému"</string>
|
||||
<string name="firmware_version">"Verze firmwaru"</string>
|
||||
<string name="model_number">"Označení modelu"</string>
|
||||
<string name="baseband_version">"Verze základního pásma"</string>
|
||||
<string name="kernel_version">"Verze jádra"</string>
|
||||
<string name="build_number">"Číslo sestavení"</string>
|
||||
<string name="device_info_not_available">"Nedostupný"</string>
|
||||
<string name="device_status_activity_title">"Stav"</string>
|
||||
<string name="device_status">"Stav"</string>
|
||||
<string name="device_status_summary">"IMEI, telefonní číslo, signál, atd."</string>
|
||||
<string name="storage_settings_title">"Karta SD a paměť telefonu"</string>
|
||||
<string name="storage_settings_summary">"Odpojuje kartu SD a zobrazuje dostupnou paměť"</string>
|
||||
<string name="status_number">"Telefonní číslo"</string>
|
||||
<string name="status_network_type">"Typ mobilní sítě"</string>
|
||||
<string name="status_data_state">"Stav mobilní sítě"</string>
|
||||
<string name="status_service_state">"Stav služby"</string>
|
||||
<string name="status_signal_strength">"Síla signálu"</string>
|
||||
<string name="status_roaming">"Roaming"</string>
|
||||
<string name="status_operator">"Síť"</string>
|
||||
<string name="status_wifi_mac_address">"Adresa MAC sítě WiFi"</string>
|
||||
<string name="status_bt_address">"Adresa zařízení Bluetooth"</string>
|
||||
<string name="status_unavailable">"Nedostupný údaj"</string>
|
||||
<string name="status_network_traffic_stats">"Využití sítě"</string>
|
||||
<string name="status_network_traffic_summary">"Odesláno: <xliff:g id="NETWORK_TRAFFIC_0">%1$d packets, %2$d bytes%n</xliff:g>Přijato: <xliff:g id="NETWORK_TRAFFIC_1">%3$d packets, %4$d bytes</xliff:g>"</string>
|
||||
<string name="status_up_time">"Doba provozu"</string>
|
||||
<string name="status_awake_time">"Doba provozu"</string>
|
||||
<string name="internal_memory">"Interní paměť telefonu"</string>
|
||||
<string name="sd_memory">"Karta SD"</string>
|
||||
<string name="memory_available">"Dostupná paměť"</string>
|
||||
<string name="memory_size">"Celková paměť"</string>
|
||||
<string name="sd_eject">"Odpojit kartu SD"</string>
|
||||
<string name="sd_eject_summary">"Odpojit kartu SD za účelem bezpečného odebrání"</string>
|
||||
<string name="sd_format">"Formátovat kartu SD"</string>
|
||||
<string name="sd_format_summary">"Formátovat (vymazat) kartu SD"</string>
|
||||
<string name="sd_unavailable">"Nedostupný údaj"</string>
|
||||
<string name="read_only">" (Pouze pro čtení)"</string>
|
||||
<string name="battery_status_title">"Stav baterie"</string>
|
||||
<string name="battery_level_title">"Stav baterie"</string>
|
||||
<string name="apn_settings">"Přístupové body"</string>
|
||||
<string name="apn_edit">"Upravit přístupový bod"</string>
|
||||
<string name="apn_not_set">"<Nenastaveno>"</string>
|
||||
<string name="apn_name">"Jméno"</string>
|
||||
<string name="apn_apn">"Název přístupvého bodu (APN)"</string>
|
||||
<string name="apn_http_proxy">"Proxy"</string>
|
||||
<string name="apn_http_port">"Port"</string>
|
||||
<string name="apn_user">"Uživatelské jméno"</string>
|
||||
<string name="apn_password">"Heslo"</string>
|
||||
<string name="apn_server">"Server"</string>
|
||||
<string name="apn_mmsc">"MMSC"</string>
|
||||
<string name="apn_mms_proxy">"Proxy server systému MMS"</string>
|
||||
<string name="apn_mms_port">"Port systému MMS"</string>
|
||||
<string name="apn_mcc">"MCC"</string>
|
||||
<string name="apn_mnc">"MNC"</string>
|
||||
<string name="apn_type">"typ APN"</string>
|
||||
<string name="menu_delete">"Smazat APN"</string>
|
||||
<string name="menu_new">"Nový APN"</string>
|
||||
<string name="menu_save">"Uložit"</string>
|
||||
<string name="menu_cancel">"Zrušit"</string>
|
||||
<string name="error_title">"Upozornění"</string>
|
||||
<string name="error_name_empty">"Pole Název nemůže být prázdné."</string>
|
||||
<string name="error_apn_empty">"Název AP nemůže být prázdný."</string>
|
||||
<string name="error_mcc_not3">"Pole MCC musí obsahovat alespoň 3 číslice."</string>
|
||||
<string name="error_mnc_not23">"Pole MNC musí obsahovat 2 nebo 3 číslice."</string>
|
||||
<string name="master_clear_title">"Obnovení továrních dat"</string>
|
||||
<string name="master_clear_summary">"Umožňuje odstranit všechna data v telefonu"</string>
|
||||
<string name="master_clear_desc">"Tato akce obnoví výchozí tovární nastavení telefonu. Všechna data a stažené aplikace budou smazány."</string>
|
||||
<string name="master_clear_button_text">"Resetovat telefon"</string>
|
||||
<string name="master_clear_final_desc">"Opravdu chcete resetovat telefon? Smažete veškerá data a aplikace. Proces nelze zvrátit."</string>
|
||||
<string name="master_clear_final_button_text">"Odstranit vše"</string>
|
||||
<string name="master_clear_gesture_prompt">"Nakreslete své bezpečnostní gesto"</string>
|
||||
<string name="master_clear_gesture_explanation">"Chcete-li potvrdit resetování telefonu, musíte nakreslit bezpečnostní gesto."</string>
|
||||
<string name="master_clear_failed">"Pokus o reset se nezdařil, protože služba System Clear není dostupná."</string>
|
||||
<string name="media_format_title">"Formátovat kartu SD"</string>
|
||||
<string name="media_format_summary">"Vymaže všechna data na kartě SD"</string>
|
||||
<string name="media_format_desc">"Tato akce smaže kartu SD v telefonu. VŠECHNA data na kartě budou ztracena."</string>
|
||||
<string name="media_format_button_text">"Formátovat kartu SD"</string>
|
||||
<string name="media_format_final_desc">"Formátování karty SD. Chcete smazat všechna svoje média? Akci nelze vrátit zpět."</string>
|
||||
<string name="media_format_final_button_text">"Smazat vše"</string>
|
||||
<string name="media_format_gesture_prompt">"Nakreslete své bezpečnostní gesto"</string>
|
||||
<string name="media_format_gesture_explanation">"Formátování karty SD je potřeba potvrdit nakreslením bezpečnostního gesta."</string>
|
||||
<string name="call_settings_title">"Nastavení hovorů"</string>
|
||||
<string name="call_settings_summary">"Umožňuje nastavit hlasovou schránku, přesměrování hovorů, další hovory na lince a ID volajícího"</string>
|
||||
<string name="network_settings_title">"Mobilní sítě"</string>
|
||||
<string name="network_settings_summary">"Umožňuje nastavit možnosti roamingu, sítí a názvy přístupových bodů"</string>
|
||||
<string name="location_title">"Zdroje polohy"</string>
|
||||
<string name="location_network_based">"Zaměření přes bezdrátové sítě"</string>
|
||||
<string name="location_networks_disabled">"Zobrazuje polohu v aplikacích (jako Mapy) pomocí bezdrátových sítí"</string>
|
||||
<string name="location_neighborhood_level">"Poloha je zaměřena pomocí WiFi nebo mobilních sítí"</string>
|
||||
<string name="location_gps">"Zapnout přijímač systému GPS"</string>
|
||||
<string name="location_street_level">"Zaměření je s přesností na úrovni ulic (zrušením této volby lze šetřit baterii)"</string>
|
||||
<string name="location_gps_disabled">"Umožňuje zaměřit na úrovni ulic (vetší spotřeba baterie a nutný výhled na oblohu)"</string>
|
||||
<string name="about_settings">"Info o telefonu"</string>
|
||||
<string name="about_settings_summary">"Zobrazuje právní informace, stav telefonu a verzi softwaru"</string>
|
||||
<string name="legal_information">"Právní informace"</string>
|
||||
<string name="contributors_title">"Přispěvatelé"</string>
|
||||
<string name="copyright_title">"Autorská práva"</string>
|
||||
<string name="license_title">"Licence"</string>
|
||||
<string name="terms_title">"Smluvní podmínky"</string>
|
||||
<string name="settings_license_activity_title">"Licence open source"</string>
|
||||
<string name="settings_license_activity_unavailable">"Při načítání licencí došlo k chybě."</string>
|
||||
<string name="settings_license_activity_loading">"Načítání..."</string>
|
||||
<string name="lock_settings_title">"Gesto pro odemknutí obrazovky"</string>
|
||||
<string name="lockpattern_change_lock_pattern_label">"Změna bezpečnostního gesta"</string>
|
||||
<string name="lockpattern_need_to_unlock">"Potvrďte uložené gesto"</string>
|
||||
<string name="lockpattern_need_to_unlock_wrong">"Zkuste to prosím znovu:"</string>
|
||||
<string name="lockpattern_recording_intro_header">"Nakreslete své bezpečnostní gesto."</string>
|
||||
<string name="lockpattern_recording_intro_footer">"Nápovědu zobrazíte stisknutím klávesy Menu."</string>
|
||||
<string name="lockpattern_recording_inprogress">"Na závěr zdvihněte prst z obrazovky."</string>
|
||||
<string name="lockpattern_recording_incorrect_too_short">"Minimální počet spojených teček je <xliff:g id="NUMBER">%d</xliff:g>. Zkuste to znovu:"</string>
|
||||
<string name="lockpattern_pattern_entered_header">"Gesto bylo zaznamenáno."</string>
|
||||
<string name="lockpattern_need_to_confirm">"Pro potvrzení nakreslete gesto znovu:"</string>
|
||||
<string name="lockpattern_pattern_confirmed_header">"Nové bezpečnostní gesto:"</string>
|
||||
<string name="lockpattern_confirm_button_text">"Potvrdit"</string>
|
||||
<string name="lockpattern_restart_button_text">"Nakreslit znovu"</string>
|
||||
<string name="lockpattern_retry_button_text">"Zkusit znovu"</string>
|
||||
<string name="lockpattern_continue_button_text">"Pokračovat"</string>
|
||||
<string name="lockpattern_settings_title">"Bezpečnostní gesto"</string>
|
||||
<string name="lockpattern_settings_enable_title">"Požadovat gesto"</string>
|
||||
<string name="lockpattern_settings_enable_summary">"Obrazovku je nutné odemknout pomocí bezpečnostního gesta"</string>
|
||||
<string name="lockpattern_settings_enable_visible_pattern_title">"Použití viditelného gesta"</string>
|
||||
<string name="lockpattern_settings_enable_tactile_feedback_title">"Použití dotykového ověření"</string>
|
||||
<string name="lockpattern_settings_choose_lock_pattern">"Nastavení bezpečnostního gesta"</string>
|
||||
<string name="lockpattern_settings_change_lock_pattern">"Změna bezpečnostního gesta"</string>
|
||||
<string name="lockpattern_settings_help_how_to_record">"Bezpečnostní gesto nakreslíte takto"</string>
|
||||
<string name="lockpattern_too_many_failed_confirmation_attempts_header">"Příliš mnoho neplatných pokusů."</string>
|
||||
<string name="lockpattern_too_many_failed_confirmation_attempts_footer">"Sekundy zbývající do dalšího pokusu: <xliff:g id="NUMBER">%d</xliff:g>."</string>
|
||||
<string name="skip_button_label">"Zrušit"</string>
|
||||
<string name="next_button_label">"Další"</string>
|
||||
<string name="lock_title">"Zabezpečení telefonu"</string>
|
||||
<string name="lock_intro_message"><font size="17">"Chraňte svůj telefon před nepovoleným použitím vytvořením osobního bezpečnostního gesta. "\n<font height="17">\n</font><b>"1"</b>" Příklad takového gesta uvidíte na dalším snímku. "\n<font height="17">\n</font><b>"2"</b>" Až budete připraveni, nakreslete své osobní bezpečnostní gesto. Vyzkoušejte více gest, ale vždy spojte alespoň čtyři tečky. "\n<font height="17">\n</font><b>"3"</b>" Chcete-li gesto potvrdit, zopakujte je. "\n<font height="17">\n</font><b>"Jste připraveni začít? Zvolte tlačítko Další "</b>". "\n<font height="3">\n</font>"Chcete-li ponechat telefon nezabezpečený, zvolte tlačítko Zrušit."</font></string>
|
||||
<string name="lock_example_title">"Příklad gesta"</string>
|
||||
<string name="lock_example_message">"Spojte alespoň čtyři tečky."\n" "\n"Až budete připraveni nakreslit vlastní gesto, zvolte tlačítko Další."</string>
|
||||
<string name="manageapplications_settings_title">"Správa aplikací"</string>
|
||||
<string name="manageapplications_settings_summary">"Spravovat a odebrat instalované aplikace"</string>
|
||||
<string name="applications_settings">"Aplikace"</string>
|
||||
<string name="applications_settings_summary">"Umožňuje spravovat aplikace a nastavit klávesové zkratky rychlého spuštění"</string>
|
||||
<string name="applications_settings_header">"Nastavení aplikace"</string>
|
||||
<string name="install_applications">"Neznámé zdroje"</string>
|
||||
<string name="install_unknown_applications">"Povoluje instalaci aplikací mimo službu Market"</string>
|
||||
<string name="install_all_warning">"Váš telefon a osobní údaje jsou zranitelnější vůči útoku aplikací z neznámých zdrojů. Vyjadřujete souhlas, že nesete osobní odpovědnost za jakékoli škody způsobené na vašem telefonu nebo za ztrátu dat v důsledku používání těchto aplikací."</string>
|
||||
<string name="application_info_label">"Info o aplikaci"</string>
|
||||
<string name="storage_label">"Paměť"</string>
|
||||
<string name="auto_launch_label">"Spustit jako výchozí"</string>
|
||||
<string name="permissions_label">"Povolení"</string>
|
||||
<string name="cache_header_label">"Mezipaměť"</string>
|
||||
<string name="clear_cache_btn_text">"Vymazat mezipaměť"</string>
|
||||
<string name="cache_size_label">"Mezipaměť"</string>
|
||||
<string name="controls_label">"Ovládací prvky"</string>
|
||||
<string name="force_stop">"Vynutit ukončení"</string>
|
||||
<string name="total_size_label">"Celkem"</string>
|
||||
<string name="application_size_label">"Aplikace"</string>
|
||||
<string name="data_size_label">"Data"</string>
|
||||
<string name="uninstall_text">"Odinstalovat"</string>
|
||||
<string name="clear_user_data_text">"Vymazat data"</string>
|
||||
<string name="auto_launch_enable_text">"Aplikace byla nastavena, aby se pro některé akce spouštěla jako výchozí."</string>
|
||||
<string name="auto_launch_disable_text">"Žádná výchozí nastavení."</string>
|
||||
<string name="clear_activities">"Vymazat výchozí nastavení"</string>
|
||||
<string name="unknown">"Neznámé"</string>
|
||||
<string name="sort_order_alpha">"Řadit"</string>
|
||||
<string name="sort_order_size">"Řadit podle velikosti"</string>
|
||||
<string name="manage_space_text">"Správa paměti"</string>
|
||||
<string name="filter">"Filtrovat"</string>
|
||||
<string name="filter_dlg_title">"Vyberte možnosti filtru"</string>
|
||||
<string name="filter_apps_all">"Všechny"</string>
|
||||
<string name="filter_apps_third_party">"Aplikace třetí strany"</string>
|
||||
<string name="filter_apps_running">"Spuštěné"</string>
|
||||
<string name="loading">"Načítání..."</string>
|
||||
<string name="recompute_size">"Přepočítávání velikosti..."</string>
|
||||
<string name="clear_data_dlg_title">"Smazat"</string>
|
||||
<string name="clear_data_dlg_text">"Všechny informace uložené v této aplikaci budou trvale smazány."</string>
|
||||
<string name="dlg_ok">"OK"</string>
|
||||
<string name="dlg_cancel">"Zrušit"</string>
|
||||
<string name="app_not_found_dlg_title">"Aplikace nebyla nalezena"</string>
|
||||
<string name="app_not_found_dlg_text">"Aplikaci se nepodařilo najít na seznamu nainstalovaných aplikací."</string>
|
||||
<string name="clear_data_failed">"Nepodařilo se vymazat data aplikace."</string>
|
||||
<string name="security_settings_desc">"Tato aplikace má přístup k následujícím položkám telefonu:"</string>
|
||||
<string name="computing_size">"Probíhá výpočet…"</string>
|
||||
<string name="invalid_size_value">"Nepodařilo se určit velikost balíčku"</string>
|
||||
<string name="empty_list_msg">"Žádné aplikace třetí strany nejsou nainstalovány."</string>
|
||||
<string name="language_settings">"Národní prostředí a text"</string>
|
||||
<string name="language_settings_summary">"Nastavení národního prostředí (jazyka a oblasti) a možností zadávání a automatických oprav textu"</string>
|
||||
<string name="language_category">"Nastavení národního prostředí"</string>
|
||||
<string name="text_category">"Nastavení textu"</string>
|
||||
<string name="phone_language">"Volba národního prostředí"</string>
|
||||
<string name="phone_language_summary">"Vyberte jazyk a oblast"</string>
|
||||
<string name="auto_replace">"Automatické nahrazování"</string>
|
||||
<string name="auto_replace_summary">"Opravuje pravopisné chyby"</string>
|
||||
<string name="auto_caps">"Automatická velká písmena"</string>
|
||||
<string name="auto_caps_summary">"První písmeno ve větě je automaticky velké"</string>
|
||||
<string name="auto_punctuate">"Automatická interpunkce"</string>
|
||||
<string name="hardkeyboard_category">"Nastavení fyzické klávesnice"</string>
|
||||
<string name="auto_punctuate_summary">"Znak „.“ lze vložit dvěma stisky klávesy Mezerník."</string>
|
||||
<string name="show_password">"Zobrazování hesel"</string>
|
||||
<string name="show_password_summary">"Zadávané heslo je zobrazováno"</string>
|
||||
<string name="user_dict_settings_titlebar">"Uživatelský slovník"</string>
|
||||
<string name="user_dict_settings_title">"Uživatelský slovník"</string>
|
||||
<string name="user_dict_settings_summary">"Přidat nebo odebrat slova z uživatelského slovníku"</string>
|
||||
<string name="user_dict_settings_add_menu_title">"Přidat"</string>
|
||||
<string name="user_dict_settings_add_dialog_title">"Přidat do slovníku"</string>
|
||||
<string name="user_dict_settings_context_menu_edit_title">"Upravit"</string>
|
||||
<string name="user_dict_settings_context_menu_delete_title">"Smazat"</string>
|
||||
<string name="user_dict_settings_empty_text">"V uživatelském slovníku nejsou žádná slova. Slovo můžete přidat pomocí nabídky."</string>
|
||||
<string name="testing">"Testování"</string>
|
||||
<string name="testing_phone_info">"Info o telefonu"</string>
|
||||
<string name="testing_battery_info">"Info o baterii"</string>
|
||||
<string name="testing_battery_history">"Historie baterie"</string>
|
||||
<string name="quick_launch_title">"Rychlé spuštění"</string>
|
||||
<string name="quick_launch_summary">"Umožňuje nastavit klávesové zkratky pro spouštění aplikací"</string>
|
||||
<string name="quick_launch_assign_application">"Přiřadit aplikaci"</string>
|
||||
<string name="quick_launch_no_shortcut">"Žádná klávesová zkratka"</string>
|
||||
<string name="quick_launch_shortcut">"Hledat + <xliff:g id="SHORTCUT_LETTER">%1$s</xliff:g>"</string>
|
||||
<string name="quick_launch_clear_dialog_title">"Vymazat"</string>
|
||||
<string name="quick_launch_clear_dialog_message">"Klávesová zkratka <xliff:g id="SHORTCUT_LETTER">%1$s</xliff:g> (<xliff:g id="APPLICATION_NAME">%2$s</xliff:g>) bude vymazána."</string>
|
||||
<string name="quick_launch_clear_ok_button">"OK"</string>
|
||||
<string name="quick_launch_clear_cancel_button">"Zrušit"</string>
|
||||
<string name="quick_launch_display_mode_applications">"Aplikace"</string>
|
||||
<string name="quick_launch_display_mode_shortcuts">"Klávesové zkratky"</string>
|
||||
<string name="input_methods_settings_title">"Zadávání textu"</string>
|
||||
<string name="input_methods_settings_summary">"Správa možností zadávání textu"</string>
|
||||
<string name="input_methods_settings_label_format">"%s: nastavení"</string>
|
||||
<string name="development_settings_title">"Vývoj"</string>
|
||||
<string name="development_settings_summary">"Umožňuje nastavit možnosti pro vývoj aplikace"</string>
|
||||
<string name="enable_adb">"Ladění USB"</string>
|
||||
<string name="enable_adb_summary">"Povoluje režim ladění s připojeným zařízením USB"</string>
|
||||
<string name="keep_screen_on">"Nevypínat obrazovku"</string>
|
||||
<string name="keep_screen_on_summary">"Obrazovka se při nabíjení nepřepne do režimu spánku"</string>
|
||||
<string name="allow_mock_location">"Povoluje simulované polohy"</string>
|
||||
<string name="allow_mock_location_summary">"Povoluje simulované polohy"</string>
|
||||
<!-- no translation found for gadget_picker_title (98374951396755811) -->
|
||||
<skip />
|
||||
<!-- no translation found for widget_picker_title (9130684134213467557) -->
|
||||
<skip />
|
||||
<string name="battery_history_details_for">"Podrobnosti pro UID %d"</string>
|
||||
<string name="battery_history_uid">"UID <xliff:g id="USER_ID">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_network_usage">"Podrobnosti o používání sítě aplikací <xliff:g id="APP_NAME">%1$s</xliff:g>:"</string>
|
||||
<string name="battery_history_bytes_received">"Přijato bytů: <xliff:g id="BYTES">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_bytes_sent">"Odesláno bytů: <xliff:g id="BYTES">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_bytes_total">"Celkem bytů: <xliff:g id="BYTES">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_cpu_usage">"Podrobnosti o využívání CPU aplikací <xliff:g id="APP_NAME">%1$s</xliff:g>:"</string>
|
||||
<string name="battery_history_user_time">"Čas uživatele:"</string>
|
||||
<string name="battery_history_system_time">"Systémový čas:"</string>
|
||||
<string name="battery_history_total_time">"Celková doba:"</string>
|
||||
<string name="battery_history_starts">"Počet spuštění: <xliff:g id="STARTS">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_days">"<xliff:g id="DAYS">%1$d</xliff:g> dní, <xliff:g id="HOURS">%2$d</xliff:g> hod., <xliff:g id="MINUTES">%3$d</xliff:g> min., <xliff:g id="SECONDS">%4$d</xliff:g> s"</string>
|
||||
<string name="battery_history_hours">"<xliff:g id="HOURS">%1$d</xliff:g> hod., <xliff:g id="MINUTES">%2$d</xliff:g> min., <xliff:g id="SECONDS">%3$d</xliff:g> s"</string>
|
||||
<string name="battery_history_minutes">"<xliff:g id="MINUTES">%1$d</xliff:g> min., <xliff:g id="SECONDS">%2$d</xliff:g> s"</string>
|
||||
<string name="battery_history_seconds">"<xliff:g id="SECONDS">%1$d</xliff:g> s"</string>
|
||||
<string name="battery_history_packages_sharing_this_uid">"Balíčky sdílející toto UID:"</string>
|
||||
<string name="battery_history_no_data">"Údaje o využití baterie nejsou k dispozici"</string>
|
||||
<string name="battery_history_sensor">"Senzor:"</string>
|
||||
<!-- no translation found for battery_history_wakelock (608683447522396293) -->
|
||||
<skip />
|
||||
<string name="battery_history_used_by_packages">"Senzor je používán následujícími balíčky:"</string>
|
||||
<string name="battery_history_sensor_usage">"Použito <xliff:g id="COUNT">%1$d</xliff:g>krát balíčkem <xliff:g id="PACKAGE">%2$s</xliff:g>"</string>
|
||||
<string name="battery_history_sensor_usage_multi">"Použito <xliff:g id="COUNT">%1$d</xliff:g>krát některým z následujících:"</string>
|
||||
<!-- no translation found for battery_history_awake_label (8449792868990080882) -->
|
||||
<skip />
|
||||
<!-- no translation found for battery_history_screen_on_label (1848936521786339362) -->
|
||||
<skip />
|
||||
<!-- no translation found for battery_history_phone_on_label (700191958853142297) -->
|
||||
<skip />
|
||||
<!-- no translation found for battery_history_awake (4350886665719031057) -->
|
||||
<skip />
|
||||
<string name="battery_history_screen_on">"Doba se zapnutou obrazovkou:"</string>
|
||||
<!-- no translation found for battery_history_phone_on (4891504401623839532) -->
|
||||
<skip />
|
||||
<string name="battery_history_screen_on_battery">"Na baterii:"</string>
|
||||
<string name="battery_history_screen_on_plugged">"Připojeno:"</string>
|
||||
<string name="usage_stats_label">"Statistika použití"</string>
|
||||
<string name="testing_usage_stats">"Statistika použití"</string>
|
||||
<string name="display_order_text">"Řadit podle:"</string>
|
||||
<string name="app_name_label">"Aplikace"</string>
|
||||
<string name="launch_count_label">"Počet"</string>
|
||||
<string name="usage_time_label">"Doba použití"</string>
|
||||
</resources>
|
19
res/values-de-nokeys/strings.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="applications_settings_summary">"Anwendungen verwalten"</string>
|
||||
</resources>
|
72
res/values-de/arrays.xml
Normal file
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string-array name="timezone_filters">
|
||||
<item>"Amerika"</item>
|
||||
<item>"Europa"</item>
|
||||
<item>"Afrika"</item>
|
||||
<item>"Asien"</item>
|
||||
<item>"Australien"</item>
|
||||
<item>"Pacific"</item>
|
||||
<item>"Alle"</item>
|
||||
</string-array>
|
||||
<string-array name="screen_timeout_entries">
|
||||
<item>"15 Sekunden"</item>
|
||||
<item>"30 Sekunden"</item>
|
||||
<item>"1 Minute"</item>
|
||||
<item>"2 Minuten"</item>
|
||||
<item>"10 Minuten"</item>
|
||||
<item>"Kein Timeout"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_security_entries">
|
||||
<item>"Autom."</item>
|
||||
<item>"Keine"</item>
|
||||
<item>"WEP"</item>
|
||||
<item>"WPA Personal"</item>
|
||||
<item>"WPA2 Personal"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_security_without_auto_entries">
|
||||
<item>"Keine"</item>
|
||||
<item>"WEP"</item>
|
||||
<item>"WPA Personal"</item>
|
||||
<item>"WPA2 Personal"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_wep_type">
|
||||
<item>"Autom."</item>
|
||||
<item>"WEP ASCII"</item>
|
||||
<item>"WEP hexadezimal"</item>
|
||||
</string-array>
|
||||
<string-array name="wifi_sleep_policy_entries">
|
||||
<item>"Wenn Bildschirm abschaltet"</item>
|
||||
<item>"Niemals im Netzbetrieb"</item>
|
||||
<item>"Niemals"</item>
|
||||
</string-array>
|
||||
<!-- no translation found for battery_history_type_spinner:0 (2193799199027871385) -->
|
||||
<!-- no translation found for battery_history_type_spinner:1 (6401018715947316517) -->
|
||||
<!-- no translation found for battery_history_type_spinner:2 (188092590354892392) -->
|
||||
<!-- no translation found for battery_history_type_spinner:3 (8414109131222049141) -->
|
||||
<!-- no translation found for battery_history_type_spinner:4 (1327904325081257093) -->
|
||||
<!-- no translation found for battery_history_type_spinner:5 (4832254146664706277) -->
|
||||
<!-- no translation found for battery_history_which_spinner:0 (3451981114763440074) -->
|
||||
<!-- no translation found for battery_history_which_spinner:1 (166936313535197598) -->
|
||||
<!-- no translation found for battery_history_which_spinner:2 (4793941382744963893) -->
|
||||
<string-array name="usage_stats_display_order_types">
|
||||
<item>"Nutzungszeit"</item>
|
||||
<item>"Startzähler"</item>
|
||||
<item>"Name der Anwendung"</item>
|
||||
</string-array>
|
||||
</resources>
|
672
res/values-de/strings.xml
Normal file
@@ -0,0 +1,672 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="device_info_default">"Unbekannt"</string>
|
||||
<string name="turn_on_radio">"Radio einschalten"</string>
|
||||
<string name="turn_off_radio">"Radio ausschalten"</string>
|
||||
<string name="turn_on_qxdm">"QXDM-SD-Protokoll aktivieren"</string>
|
||||
<string name="turn_off_qxdm">"QXDM-SD-Protokoll deaktivieren"</string>
|
||||
<string name="radioInfo_menu_viewADN">"SIM-Adressbuch anzeigen"</string>
|
||||
<string name="radioInfo_menu_viewFDN">"Feste Rufnummern anzeigen"</string>
|
||||
<string name="radioInfo_menu_viewSDN">"Servicerufnummern anzeigen"</string>
|
||||
<string name="radioInfo_menu_getPDP">"PDP-Liste abrufen"</string>
|
||||
<string name="radioInfo_menu_enableData">"Datenverbindung aktivieren"</string>
|
||||
<string name="radioInfo_menu_disableData">"Datenverbindung deaktivieren"</string>
|
||||
<string name="radioInfo_menu_enableDataOnBoot">"Daten beim Start aktivieren"</string>
|
||||
<string name="radioInfo_menu_disableDataOnBoot">"Daten beim Start deaktivieren"</string>
|
||||
<string name="radioInfo_service_in">"In Betrieb"</string>
|
||||
<string name="radioInfo_service_out">"Außer Betrieb"</string>
|
||||
<string name="radioInfo_service_emergency">"Nur Notrufe"</string>
|
||||
<string name="radioInfo_service_off">"Radio aus"</string>
|
||||
<string name="radioInfo_roaming_in">"Roaming"</string>
|
||||
<string name="radioInfo_roaming_not">"Kein Roaming"</string>
|
||||
<string name="radioInfo_phone_idle">"Inaktiv"</string>
|
||||
<string name="radioInfo_phone_ringing">"Klingelton"</string>
|
||||
<string name="radioInfo_phone_offhook">"Anruf wird getätigt"</string>
|
||||
<string name="radioInfo_data_disconnected">"Nicht verbunden"</string>
|
||||
<string name="radioInfo_data_connecting">"Verbindung wird hergestellt"</string>
|
||||
<string name="radioInfo_data_connected">"Verbunden"</string>
|
||||
<string name="radioInfo_data_suspended">"Angehalten"</string>
|
||||
<string name="radioInfo_unknown">"unbekannt"</string>
|
||||
<string name="radioInfo_display_packets">"Pakete"</string>
|
||||
<string name="radioInfo_display_bytes">"Bytes"</string>
|
||||
<string name="radioInfo_display_dbm">"dBm"</string>
|
||||
<string name="radioInfo_display_asu">"ASU"</string>
|
||||
<string name="radioInfo_lac">"LAC"</string>
|
||||
<string name="radioInfo_cid">"CID"</string>
|
||||
<string name="sdcard_unmount">"SD-Karte entnehmen"</string>
|
||||
<string name="sdcard_format">"SD-Karte formatieren"</string>
|
||||
<string name="small_font">"Klein"</string>
|
||||
<string name="medium_font">"Mittel"</string>
|
||||
<string name="large_font">"Groß"</string>
|
||||
<string name="font_size_save">"OK"</string>
|
||||
<string name="sdcard_setting">"SD-Karte"</string>
|
||||
<string name="battery_info_status_label">"Akkustatus:"</string>
|
||||
<string name="battery_info_scale_label">"Akkuanzeige:"</string>
|
||||
<string name="battery_info_level_label">"Akkuladung:"</string>
|
||||
<string name="battery_info_health_label">"Akkuzustand:"</string>
|
||||
<string name="battery_info_technology_label">"Akkutechnologie:"</string>
|
||||
<string name="battery_info_voltage_label">"Akkuspannung:"</string>
|
||||
<string name="battery_info_voltage_units">"mV"</string>
|
||||
<string name="battery_info_temperature_label">"Akkutemperatur:"</string>
|
||||
<string name="battery_info_temperature_units">"° C"</string>
|
||||
<string name="battery_info_uptime">"Zeit seit Start:"</string>
|
||||
<string name="battery_info_awake_battery">"Aktivzeit bei Akku:"</string>
|
||||
<string name="battery_info_awake_plugged">"Aktivzeit beim Laden:"</string>
|
||||
<string name="battery_info_screen_on">"Display eingeschaltet:"</string>
|
||||
<string name="battery_info_status_unknown">"Unbekannt"</string>
|
||||
<string name="battery_info_status_charging">"Wird geladen"</string>
|
||||
<string name="battery_info_status_charging_ac">"(AC)"</string>
|
||||
<string name="battery_info_status_charging_usb">"(USB)"</string>
|
||||
<string name="battery_info_status_discharging">"Entladung"</string>
|
||||
<string name="battery_info_status_not_charging">"Wird nicht geladen"</string>
|
||||
<string name="battery_info_status_full">"Voll"</string>
|
||||
<string name="battery_info_health_unknown">"Unbekannt"</string>
|
||||
<string name="battery_info_health_good">"OK"</string>
|
||||
<string name="battery_info_health_overheat">"Überhitzung"</string>
|
||||
<string name="battery_info_health_dead">"Leer"</string>
|
||||
<string name="battery_info_health_over_voltage">"Überspannung"</string>
|
||||
<string name="battery_info_health_unspecified_failure">"Unbekannter Fehler"</string>
|
||||
<string name="bluetooth">"Bluetooth"</string>
|
||||
<string name="bluetooth_visibility">"Erkennbar"</string>
|
||||
<string name="bluetooth_is_discoverable">"Für <xliff:g id="DISCOVERABLE_TIME_PERIOD">%1$s</xliff:g> Sekunden sichtbar..."</string>
|
||||
<string name="bluetooth_not_discoverable">"Geräteerkennung deaktivieren"</string>
|
||||
<string name="bluetooth_devices">"Bluetooth-Geräte"</string>
|
||||
<string name="bluetooth_device_name">"Gerätename"</string>
|
||||
<string name="bluetooth_name_not_set">"Kein Name festgelegt, Kontoname wird verwendet"</string>
|
||||
<string name="bluetooth_scan_for_devices">"Scannen nach Geräten"</string>
|
||||
<string name="bluetooth_disconnect_blank">"Verbindung mit <xliff:g id="DEVICE_NAME">%1$s</xliff:g> wird getrennt."</string>
|
||||
<string name="bluetooth_connected">"Verbunden"</string>
|
||||
<string name="bluetooth_disconnected">"Nicht verbunden"</string>
|
||||
<string name="bluetooth_disconnecting">"Verbindung wird getrennt..."</string>
|
||||
<string name="bluetooth_connecting">"Verbindung wird hergestellt..."</string>
|
||||
<!-- no translation found for bluetooth_unknown (1905151516611093010) -->
|
||||
<skip />
|
||||
<string name="bluetooth_not_connected">"Pairing mit diesem Gerät"</string>
|
||||
<string name="bluetooth_pairing">"Pairing…"</string>
|
||||
<!-- no translation found for bluetooth_paired (1247541089000057726) -->
|
||||
<skip />
|
||||
<string name="bluetooth_device">"Freisprechfunktion/Headset"</string>
|
||||
<string name="progress_scanning">"Scannen..."</string>
|
||||
<string name="bluetooth_notif_ticker">"Bluetooth-Pairing-Anfrage"</string>
|
||||
<string name="bluetooth_notif_title">"Pairing-Anfrage"</string>
|
||||
<string name="bluetooth_notif_message">"Zum Pairing auswählen "</string>
|
||||
<string name="date_and_time">"Einstellungen"</string>
|
||||
<string name="date_time_12_hour_sample">"1:00"</string>
|
||||
<string name="date_time_24_hour_sample">"13:00"</string>
|
||||
<string name="choose_timezone">"Zeitzone auswählen"</string>
|
||||
<string name="display_preview_label">"Vorschau:"</string>
|
||||
<string name="display_font_size_label">"Schriftgröße:"</string>
|
||||
<!-- no translation found for intent_sender_data_label (8363026381459131554) -->
|
||||
<skip />
|
||||
<string name="intent_sender_sendbroadcast_text">"<xliff:g id="BROADCAST">broadcast</xliff:g> senden"</string>
|
||||
<string name="intent_sender_action_label">"<xliff:g id="ACTION">Action</xliff:g>:"</string>
|
||||
<string name="intent_sender_startactivity_text">"<xliff:g id="ACTIVITY">activity</xliff:g> starten"</string>
|
||||
<string name="intent_sender_resource_label">"<xliff:g id="RESOURCE">Resource</xliff:g>:"</string>
|
||||
<string name="intent_sender_account_label">"Konto:"</string>
|
||||
<string name="proxy_clear_text">"Löschen"</string>
|
||||
<string name="proxy_port_label">"Port"</string>
|
||||
<string name="proxy_defaultView_text">"Standard wiederherstellen"</string>
|
||||
<string name="proxy_action_text">"Speichern"</string>
|
||||
<string name="proxy_hostname_label">"Hostname"</string>
|
||||
<string name="proxy_error">"Achtung"</string>
|
||||
<string name="proxy_error_dismiss">"OK"</string>
|
||||
<string name="proxy_error_invalid_host">"Der eingegebene Hostname ist ungültig."</string>
|
||||
<string name="proxy_error_empty_port">"Sie müssen das Feld für den Port ausfüllen."</string>
|
||||
<string name="proxy_error_empty_host_set_port">"Das Feld für den Port muss leer sein, wenn das Feld für den Host leer ist."</string>
|
||||
<string name="proxy_error_invalid_port">"Der eingegebene Port ist ungültig."</string>
|
||||
<string name="radio_info_signal_location_label">"Standort:"</string>
|
||||
<string name="radio_info_neighboring_location_label">"Benachbarte CID:"</string>
|
||||
<string name="radio_info_data_attempts_label">"Datenversuche:"</string>
|
||||
<string name="radio_info_gprs_service_label">"GPRS-Service:"</string>
|
||||
<string name="radio_info_roaming_label">"Roaming:"</string>
|
||||
<string name="radio_info_imei_label">"IMEI:"</string>
|
||||
<string name="radio_info_call_redirect_label">"Rufumleitung:"</string>
|
||||
<string name="radio_info_ppp_resets_label">"Anzahl der PPP-Zurücksetzungen seit dem Start:"</string>
|
||||
<string name="radio_info_gsm_disconnects_label">"GSM-Trennungen:"</string>
|
||||
<string name="radio_info_current_network_label">"Aktuelles Netzwerk:"</string>
|
||||
<string name="radio_info_data_successes_label">"Datenerfolge:"</string>
|
||||
<string name="radio_info_ppp_received_label">"PPP empfangen:"</string>
|
||||
<string name="radio_info_gsm_service_label">"GSM-Service"</string>
|
||||
<string name="radio_info_signal_strength_label">"Signalstärke:"</string>
|
||||
<string name="radio_info_call_status_label">"Rufstatus:"</string>
|
||||
<string name="radio_info_ppp_sent_label">"PPP gesendet:"</string>
|
||||
<string name="radio_info_radio_resets_label">"Radiozurücksetzung:"</string>
|
||||
<string name="radio_info_message_waiting_label">"Nachricht liegt vor:"</string>
|
||||
<string name="radio_info_phone_number_label">"Telefonnummer:"</string>
|
||||
<string name="radio_info_band_mode_label">"Frequenzbereich auswählen"</string>
|
||||
<string name="radio_info_network_type_label">"Netzwerktyp:"</string>
|
||||
<string name="radio_info_set_perferred_label">"Bevorzugten Netzwerktyp festlegen:"</string>
|
||||
<string name="radio_info_ping_ipaddr">"IP-Adresse pingen:"</string>
|
||||
<string name="radio_info_ping_hostname">"Hostnamen pingen (www.google.com):"</string>
|
||||
<string name="radio_info_http_client_test">"HTTP Client-Test:"</string>
|
||||
<string name="radio_info_toggle_ciph_label">"Verschlüsselung wechseln"</string>
|
||||
<string name="ping_test_label">"Pingtest ausführen"</string>
|
||||
<string name="radio_info_smsc_label">"SMSC:"</string>
|
||||
<string name="radio_info_smsc_update_label">"Aktualisierung"</string>
|
||||
<string name="radio_info_smsc_refresh_label">"Aktualisieren"</string>
|
||||
<string name="radio_info_toggle_dns_check_label">"DNS-Überprüfung ein-/ausschalten"</string>
|
||||
<string name="band_mode_title">"GSM-/UMTS-Band festlegen"</string>
|
||||
<string name="band_mode_loading">"Bandliste wird geladen..."</string>
|
||||
<string name="band_mode_set">"Festlegen"</string>
|
||||
<string name="band_mode_failed">"Fehlgeschlagen"</string>
|
||||
<string name="band_mode_succeeded">"Erfolgreich"</string>
|
||||
<string name="sdcard_changes_instructions">"Die Änderungen werden nach dem erneuten Anschließen des USB-Kabels übernommen."</string>
|
||||
<string name="sdcard_settings_screen_mass_storage_text">"USB-Massenspeicher aktivieren"</string>
|
||||
<string name="sdcard_settings_total_bytes_label">"Bytes insgesamt:"</string>
|
||||
<string name="sdcard_settings_not_present_status">"Keine SD-Karte"</string>
|
||||
<string name="sdcard_settings_available_bytes_label">"Verfügbare Bytes:"</string>
|
||||
<string name="sdcard_settings_mass_storage_status">"SD-Karte wird als Massenspeichergerät verwendet"</string>
|
||||
<string name="sdcard_settings_unmounted_status">"Die SD-Karte kann jetzt entfernt werden."</string>
|
||||
<string name="sdcard_settings_bad_removal_status">"Die SD-Karte wurde während der Verwendung entfernt!"</string>
|
||||
<string name="sdcard_settings_used_bytes_label">"Verwendete Bytes:"</string>
|
||||
<string name="sdcard_settings_scanning_status">"SD-Karte wird auf Medien gescannt..."</string>
|
||||
<string name="sdcard_settings_read_only_status">"SD-Karte schreibgeschützt aktiviert"</string>
|
||||
<string name="next_label">"Weiter"</string>
|
||||
<string name="language_picker_title">"Sprache"</string>
|
||||
<string name="select_your_language">"Sprache auswählen"</string>
|
||||
<string name="activity_picker_label">"Aktion auswählen"</string>
|
||||
<string name="device_info_label">"Geräteinfo"</string>
|
||||
<string name="battery_info_label">"Akkuinfo"</string>
|
||||
<string name="battery_history_label">"Akkuprotokoll"</string>
|
||||
<string name="display_label">"Display"</string>
|
||||
<string name="phone_info_label">"Telefoninfo"</string>
|
||||
<string name="sd_card_settings_label">"SD-Karte"</string>
|
||||
<string name="proxy_settings_label">"Proxy-Einstellungen"</string>
|
||||
<string name="cancel">"Abbrechen"</string>
|
||||
<string name="settings_label">"Einstellungen"</string>
|
||||
<string name="airplane_mode">"Flugmodus"</string>
|
||||
<string name="airplane_mode_summary">"Alle drahtlosen Verbindungen deaktivieren"</string>
|
||||
<string name="airplane_mode_turning_on">"Wireless-Verbindungen werden deaktiviert..."</string>
|
||||
<string name="airplane_mode_turning_off">"Wireless-Verbindungen werden aktiviert..."</string>
|
||||
<string name="radio_controls_title">"Wireless"</string>
|
||||
<string name="radio_controls_summary">"WLAN, Bluetooth, Flugmodus und mobile Netzwerke verwalten"</string>
|
||||
<string name="date_and_time_settings_title">"Datum und Uhrzeit"</string>
|
||||
<string name="date_and_time_settings_summary">"Datum, Uhrzeit, Zeitzone und Formate festlegen"</string>
|
||||
<string name="date_time_auto">"Automatisch"</string>
|
||||
<string name="date_time_auto_summaryOn">"Vom Netzwerk bereitgestellte Werte verwenden"</string>
|
||||
<string name="date_time_auto_summaryOff">"Vom Netzwerk bereitgestellte Werte verwenden"</string>
|
||||
<string name="date_time_24hour">"24-Stunden-Format"</string>
|
||||
<string name="date_time_set_time">"Uhrzeit festlegen"</string>
|
||||
<string name="date_time_set_timezone">"Zeitzone auswählen"</string>
|
||||
<string name="date_time_set_date">"Datum festlegen"</string>
|
||||
<string name="date_time_date_format">"Datumsformat auswählen"</string>
|
||||
<string name="zone_list_menu_sort_alphabetically">"Alphabetisch sortieren"</string>
|
||||
<string name="zone_list_menu_sort_by_timezone">"Nach Zeitzone sortieren"</string>
|
||||
<string name="security_settings_title">"Sicherheit und Standort"</string>
|
||||
<string name="security_settings_summary">"Meinen Standort, Display-Entsperrung und SIM-Kartensperrung festlegen"</string>
|
||||
<string name="security_passwords_title">"Passwörter"</string>
|
||||
<string name="bluetooth_quick_toggle_title">"Bluetooth"</string>
|
||||
<string name="bluetooth_quick_toggle_summary">"Bluetooth aktivieren"</string>
|
||||
<string name="bluetooth_settings">"Bluetooth-Einstellungen"</string>
|
||||
<string name="bluetooth_settings_title">"Bluetooth-Einstellungen"</string>
|
||||
<string name="bluetooth_settings_summary">"Verbindungen, Gerätenamen und Erkennbarkeit verwalten"</string>
|
||||
<string name="bluetooth_pin_entry">"Bluetooth-Pairing-Anfrage"</string>
|
||||
<string name="bluetooth_device_info">"Bluetooth-Geräteinfo"</string>
|
||||
<string name="bluetooth_enter_pin_msg">"<xliff:g id="DEVICE_NAME">%1$s</xliff:g>"\n\n"PIN für Pairing eingeben."\n"(Versuchen Sie 0000 oder 1234.)"</string>
|
||||
<string name="bluetooth_error_title">"Achtung"</string>
|
||||
<string name="bluetooth_pairing_error_message">"Beim Pairing mit <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ist ein Problem aufgetreten."</string>
|
||||
<string name="bluetooth_pairing_pin_error_message">"Beim Pairing mit <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ist ein Problem aufgetreten, da die eingegebene PIN falsch ist."</string>
|
||||
<string name="bluetooth_connecting_error_message">"Beim Verbindungsaufbau mit <xliff:g id="DEVICE_NAME">%1$s</xliff:g> ist ein Problem aufgetreten."</string>
|
||||
<string name="bluetooth_preference_scan_title">"Scan nach Geräten"</string>
|
||||
<string name="bluetooth_device_context_connect">"Verbinden"</string>
|
||||
<string name="bluetooth_device_context_disconnect">"Verbindung trennen"</string>
|
||||
<string name="bluetooth_device_context_pair_connect">"Paaren und verbinden"</string>
|
||||
<string name="bluetooth_device_context_unpair">"Pairing aufheben"</string>
|
||||
<string name="bluetooth_device_context_disconnect_unpair">"Verbindung trennen und Pairing aufheben"</string>
|
||||
<string name="bluetooth_device_context_connect_advanced">"Optionen..."</string>
|
||||
<string name="bluetooth_connect_specific_profiles_title">"Verbinden mit..."</string>
|
||||
<string name="bluetooth_profile_a2dp">"Medien"</string>
|
||||
<string name="bluetooth_profile_headset">"Telefon"</string>
|
||||
<string name="bluetooth_summary_connected_to_a2dp">"Verbunden mit Audiosystem von Medien"</string>
|
||||
<string name="bluetooth_summary_connected_to_headset">"Verbunden mit Audiosystem des Telefons"</string>
|
||||
<string name="bluetooth_summary_connected_to_a2dp_headset">"Verbunden mit Audiosystem von Telefon und Medien"</string>
|
||||
<string name="bluetooth_device_advanced_title">"Optionen von <xliff:g id="DEVICE_NAME">%1$s</xliff:g>"</string>
|
||||
<string name="bluetooth_device_advanced_online_mode_title">"Verbinden"</string>
|
||||
<string name="bluetooth_device_advanced_online_mode_summary">"Mit Bluetooth-Gerät verbinden"</string>
|
||||
<string name="bluetooth_device_advanced_profile_header_title">"Profile"</string>
|
||||
<string name="bluetooth_a2dp_profile_summary_connected">"Verbunden mit Audiosystem von Medien"</string>
|
||||
<string name="bluetooth_headset_profile_summary_connected">"Verbunden mit Audiosystem des Telefons"</string>
|
||||
<string name="bluetooth_a2dp_profile_summary_use_for">"Für Audiosystem von Medien verwenden"</string>
|
||||
<string name="bluetooth_headset_profile_summary_use_for">"Für Audiosystem des Telefons verwenden"</string>
|
||||
<string name="wifi">"WLAN"</string>
|
||||
<string name="wifi_quick_toggle_title">"WLAN"</string>
|
||||
<string name="wifi_quick_toggle_summary">"Wi-Fi aktivieren"</string>
|
||||
<string name="wifi_settings">"WLAN-Einstellungen"</string>
|
||||
<string name="wifi_settings_category">"WLAN-Einstellungen"</string>
|
||||
<string name="wifi_settings_summary">"Wireless-Zugangspunkte festlegen und verwalten"</string>
|
||||
<string name="forget_network">"Entfernen"</string>
|
||||
<string name="wifi_status">"Status"</string>
|
||||
<string name="wifi_link_speed">"Geschwindigkeit"</string>
|
||||
<string name="wifi_signal_3">"Ausgezeichnet"</string>
|
||||
<string name="wifi_signal_2">"OK"</string>
|
||||
<string name="wifi_signal_1">"Gut"</string>
|
||||
<string name="wifi_signal_0">"Schwach"</string>
|
||||
<string name="security">"Sicherheit"</string>
|
||||
<string name="wifi_security_open">"Öffnen"</string>
|
||||
<string name="wifi_security_wep">"WEP"</string>
|
||||
<string name="wifi_security_wpa">"WPA"</string>
|
||||
<string name="wifi_security_wpa2">"WPA2"</string>
|
||||
<string name="wifi_security_unknown">"Unbekannt"</string>
|
||||
<string name="wifi_security_verbose_open">"Offenes Netzwerk"</string>
|
||||
<string name="wifi_security_verbose_wep">"Gesichert mit WEP"</string>
|
||||
<string name="wifi_security_verbose_wpa">"Gesichert mit WPA"</string>
|
||||
<string name="wifi_security_verbose_wpa2">"Gesichert mit WPA2"</string>
|
||||
<string name="ip_address">"IP-Adresse"</string>
|
||||
<string name="signal">"Signalstärke"</string>
|
||||
<string name="wifi_starting">"Aktivierung..."</string>
|
||||
<string name="wifi_stopping">"Wird beendet..."</string>
|
||||
<string name="wifi_error">"Fehler"</string>
|
||||
<string name="error_starting">"WLAN kann nicht gestartet werden"</string>
|
||||
<string name="error_stopping">"WLAN kann nicht beendet werden"</string>
|
||||
<string name="error_scanning">"Netzwerkscan nicht möglich"</string>
|
||||
<string name="error_connecting">"Netzwerkverbindung kann nicht hergestellt werden"</string>
|
||||
<string name="error_saving">"Netzwerk kann nicht gespeichert werden"</string>
|
||||
<string name="connect">"Verbinden"</string>
|
||||
<string name="connect_to_blank">"Mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g> verbinden"</string>
|
||||
<string name="please_type_passphrase">"Passwort für Wireless-Zugang"</string>
|
||||
<string name="please_type_hex_key">"WEP Hexadezimalschlüssel (0-9, A-F)"</string>
|
||||
<string name="wifi_show_password">"Passwort anzeigen"</string>
|
||||
<string name="scan_wifi">"Scannen"</string>
|
||||
<string name="summary_not_in_range">"Nicht in Reichweite"</string>
|
||||
<string name="summary_remembered">"Gespeichert"</string>
|
||||
<string name="summary_connection_failed">"Verbindung fehlgeschlagen, versuchen Sie es erneut."</string>
|
||||
<string name="wifi_access_points">"WLAN-Netzwerke"</string>
|
||||
<string name="wifi_type_ssid">"Netzwerk-SSID"</string>
|
||||
<string name="wifi_security">"Sicherheit"</string>
|
||||
<string name="wifi_save_config">"Speichern"</string>
|
||||
<string name="wifi_password_unchanged">"(nicht geändert)"</string>
|
||||
<string name="wifi_add_other_network">"Wi-Fi-Netzwerk hinzufügen"</string>
|
||||
<string name="wifi_notify_open_networks">"Netzwerkhinweis"</string>
|
||||
<string name="wifi_notify_open_networks_summary">"Benachrichtigen, wenn ein offenes Netzwerk verfügbar ist"</string>
|
||||
<string name="wifi_password_incorrect_error">"Das eingegebene Netzwerkpasswort ist falsch. Bitte versuchen Sie es erneut."</string>
|
||||
<string name="wifi_generic_connection_error">"Beim Herstellen der Netzwerkverbindung ist ein Problem aufgetreten. Bitte versuchen Sie es erneut."</string>
|
||||
<string name="wifi_menu_advanced">"Erweitert"</string>
|
||||
<string name="wifi_ip_settings_titlebar">"IP-Einstellungen"</string>
|
||||
<string name="wifi_ip_settings_menu_save">"Speichern"</string>
|
||||
<string name="wifi_ip_settings_menu_cancel">"Abbrechen"</string>
|
||||
<string name="wifi_ip_settings_invalid_ip">"Bitte geben Sie eine gültige IP-Adresse ein."</string>
|
||||
<string name="wifi_use_static_ip">"Statische IP verwenden"</string>
|
||||
<string name="wifi_ip_address">"IP-Adresse"</string>
|
||||
<string name="wifi_dns1">"DNS 1"</string>
|
||||
<string name="wifi_dns2">"DNS 2"</string>
|
||||
<string name="wifi_gateway">"Gateway"</string>
|
||||
<string name="wifi_netmask">"Netmask"</string>
|
||||
<string name="wifi_context_menu_connect">"Mit Netzwerk verbinden"</string>
|
||||
<string name="wifi_context_menu_forget">"Netzwerk entfernen"</string>
|
||||
<string name="wifi_context_menu_change_password">"Passwort ändern"</string>
|
||||
<string name="wifi_advanced_titlebar">"Erweitert"</string>
|
||||
<string name="wifi_setting_num_channels_title">"Rechtliche Domain"</string>
|
||||
<string name="wifi_setting_num_channels_summary">"Anzahl an zu verwendenden Kanälen festlegen"</string>
|
||||
<string name="wifi_setting_num_channels_error">"Beim Einrichten der Domain ist ein Problem aufgetreten."</string>
|
||||
<string name="wifi_setting_num_channels_channel_phrase">"<xliff:g id="NUM_CHANNELS">%1$d</xliff:g> Kanäle"</string>
|
||||
<string name="wifi_setting_sleep_policy_title">"Wi-Fi Standby-Richtlinie"</string>
|
||||
<string name="wifi_setting_sleep_policy_summary">"Festlegen, wann von Wi-Fi auf mobile Daten umgeschaltet werden soll"</string>
|
||||
<string name="wifi_setting_sleep_policy_error">"Beim Einrichten der Standby-Richtlinie ist ein Problem aufgetreten."</string>
|
||||
<string name="wifi_advanced_mac_address_title">"MAC-Adresse"</string>
|
||||
<string name="fragment_status_scanning">"Scannen…"</string>
|
||||
<string name="fragment_status_connecting">"Verbindung mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g> wird hergestellt..."</string>
|
||||
<string name="fragment_status_authenticating">"Authentifizierung mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g>..."</string>
|
||||
<string name="fragment_status_obtaining_ip">"IP-Adresse wird von <xliff:g id="NETWORK_NAME">%1$s</xliff:g> abgerufen..."</string>
|
||||
<string name="fragment_status_connected">"Verbunden mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g>"</string>
|
||||
<string name="fragment_status_disconnecting">"Verbindung mit <xliff:g id="NETWORK_NAME">%1$s</xliff:g> wird getrennt..."</string>
|
||||
<string name="fragment_status_disconnected">"Nicht verbunden"</string>
|
||||
<string name="fragment_status_failed">"Fehlgeschlagen"</string>
|
||||
<string name="status_scanning">"Scannen…"</string>
|
||||
<string name="status_connecting">"Verbindung wird hergestellt..."</string>
|
||||
<string name="status_authenticating">"Authentifizierung..."</string>
|
||||
<string name="status_obtaining_ip">"Adresse wird abgerufen..."</string>
|
||||
<string name="status_connected">"Verbunden"</string>
|
||||
<string name="status_disconnecting">"Verbindung wird getrennt..."</string>
|
||||
<string name="status_disconnected">"Nicht verbunden"</string>
|
||||
<string name="status_failed">"Fehlgeschlagen"</string>
|
||||
<string name="sound_and_display_settings">"Töne und Display"</string>
|
||||
<string name="sound_settings">"Toneinstellungen"</string>
|
||||
<string name="sound_and_display_settings_summary">"Klingeltöne, Benachrichtigungen und Helligkeit festlegen"</string>
|
||||
<string name="silent_mode_title">"Lautlosmodus"</string>
|
||||
<string name="silent_mode_summary">"Alle Töne außer für Medien und Warnungen sind stummgeschaltet"</string>
|
||||
<string name="ringtone_title">"Klingelton"</string>
|
||||
<string name="ringtone_summary">"Standardklingelton für eingehende Anrufe festlegen"</string>
|
||||
<string name="ring_volume_title">"Klingeltonlautstärke"</string>
|
||||
<string name="ring_volume_summary">"Lautstärke für eingehende Anrufe und Benachrichtigungen festlegen"</string>
|
||||
<string name="vibrate_title">"Vibration"</string>
|
||||
<string name="vibrate_summary">"Vibration für eingehende Anrufe"</string>
|
||||
<string name="notification_sound_title">"Benachrichtigungston"</string>
|
||||
<string name="notification_sound_summary">"Standard-Benachrichtigungston festlegen"</string>
|
||||
<string name="incoming_call_volume_title">"Lautstärke für eingehende Anrufe"</string>
|
||||
<string name="notification_volume_title">"Benachrichtigungslautstärke"</string>
|
||||
<string name="checkbox_notification_same_as_incoming_call">"Lautstärke für eingehende Anrufe für Benachrichtigungen verwenden"</string>
|
||||
<string name="notification_sound_dialog_title">"Benachrichtigungston auswählen"</string>
|
||||
<string name="media_volume_title">"Medienlautstärke"</string>
|
||||
<string name="media_volume_summary">"Lautstärke für Musik und Videos festlegen"</string>
|
||||
<string name="dtmf_tone_enable_title">"Tastentöne"</string>
|
||||
<string name="dtmf_tone_enable_summary_on">"Töne bei Telefonwahl"</string>
|
||||
<string name="dtmf_tone_enable_summary_off">"Töne bei Telefonwahl"</string>
|
||||
<string name="sound_effects_enable_title">"Akustische Auswahl"</string>
|
||||
<string name="sound_effects_enable_summary_on">"Ton bei Auswahl auf Display"</string>
|
||||
<string name="sound_effects_enable_summary_off">"Ton bei Auswahl auf Display"</string>
|
||||
<string name="play_media_notification_sounds_enable_title">"SD-Karten-Benachrichtigungen"</string>
|
||||
<string name="play_media_notification_sounds_enable_summary_on">"SD-Karten-Benachrichtigungston deaktivieren"</string>
|
||||
<string name="play_media_notification_sounds_enable_summary_off">"SD-Karten-Benachrichtigungston aktivieren"</string>
|
||||
<string name="sync_settings">"Datensynchronisierung"</string>
|
||||
<string name="sync_settings_summary">"Auswählen, welche Anwendungen synchronisiert werden"</string>
|
||||
<string name="display_settings">"Display-Einstellungen"</string>
|
||||
<string name="animations_title">"Animation"</string>
|
||||
<string name="animations_summary_on">"Animation beim Öffnen/Schließen von Fenstern anzeigen"</string>
|
||||
<string name="animations_summary_off">"Animation beim Öffnen/Schließen von Fenstern anzeigen"</string>
|
||||
<string name="brightness">"Helligkeit"</string>
|
||||
<string name="brightness_summary">"Helligkeit des Bildschirms anpassen"</string>
|
||||
<string name="screen_timeout">"Display-Timeout"</string>
|
||||
<string name="screen_timeout_summary">"Verzögerung vor automatischer Bildschirmabschaltung anpassen"</string>
|
||||
<string name="sim_lock_settings">"Einstellungen"</string>
|
||||
<string name="sim_lock_settings_category">"SIM-Kartensperrung einrichten"</string>
|
||||
<string name="sim_lock_settings_title">"SIM-Kartensperrung"</string>
|
||||
<string name="sim_pin_toggle">"SIM-Karte sperren"</string>
|
||||
<string name="sim_lock_on">"PIN zur Verwendung des Telefons erforderlich"</string>
|
||||
<string name="sim_lock_off">"PIN zur Verwendung des Telefons erforderlich"</string>
|
||||
<string name="sim_pin_change">"PIN der SIM-Karte ändern"</string>
|
||||
<string name="sim_enter_pin">"PIN für SIM-Karte"</string>
|
||||
<string name="sim_enable_sim_lock">"SIM-Karte sperren"</string>
|
||||
<string name="sim_disable_sim_lock">"SIM-Karte entsperren"</string>
|
||||
<string name="sim_enter_old">"Alte PIN der SIM-Karte"</string>
|
||||
<string name="sim_enter_new">"Neue PIN für SIM-Karte"</string>
|
||||
<string name="sim_reenter_new">"Neue PIN erneut eingeben"</string>
|
||||
<string name="sim_change_pin">"PIN für SIM-Karte"</string>
|
||||
<string name="sim_bad_pin">"Falsche PIN!"</string>
|
||||
<string name="sim_pins_dont_match">"Die PINs stimmen nicht überein!"</string>
|
||||
<string name="sim_change_failed">"PIN kann nicht geändert werden."\n"Möglicherweise falsche Eingabe."</string>
|
||||
<string name="sim_change_succeeded">"SIM-PIN erfolgreich geändert"</string>
|
||||
<string name="sim_lock_failed">"Status der SIM-Kartensperrung kann nicht geändert werden."\n"Möglicherweise falsche PIN."</string>
|
||||
<string name="sim_enter_ok">"OK"</string>
|
||||
<string name="sim_enter_cancel">"Abbrechen"</string>
|
||||
<string name="device_info_settings">"Telefonstatus"</string>
|
||||
<string name="system_update_settings_list_item_title">"Systemaktualisierungen"</string>
|
||||
<string name="system_update_settings_list_item_summary">"Nach Systemaktualisierungen suchen"</string>
|
||||
<string name="firmware_version">"Firmware-Version"</string>
|
||||
<string name="model_number">"Modellnummer"</string>
|
||||
<string name="baseband_version">"Basisband-Version"</string>
|
||||
<string name="kernel_version">"Kernel-Version"</string>
|
||||
<string name="build_number">"Build-Nummer"</string>
|
||||
<string name="device_info_not_available">"Nicht verfügbar"</string>
|
||||
<string name="device_status_activity_title">"Status"</string>
|
||||
<string name="device_status">"Status"</string>
|
||||
<string name="device_status_summary">"IMEI, Telefonnummer, Signal usw."</string>
|
||||
<string name="storage_settings_title">"SD-Karte und Speicher"</string>
|
||||
<string name="storage_settings_summary">"SD-Karte entnehmen, verfügbaren Speicher anzeigen"</string>
|
||||
<string name="status_number">"Telefonnummer"</string>
|
||||
<string name="status_network_type">"Mobiler Netzwerktyp"</string>
|
||||
<string name="status_data_state">"Status des mobilen Netzwerks"</string>
|
||||
<string name="status_service_state">"Servicestatus"</string>
|
||||
<string name="status_signal_strength">"Signalstärke"</string>
|
||||
<string name="status_roaming">"Roaming"</string>
|
||||
<string name="status_operator">"Netzwerk"</string>
|
||||
<string name="status_wifi_mac_address">"WLAN-MAC-Adresse"</string>
|
||||
<string name="status_bt_address">"Bluetooth-Adresse"</string>
|
||||
<string name="status_unavailable">"Nicht verfügbar"</string>
|
||||
<string name="status_network_traffic_stats">"Netzwerknutzung"</string>
|
||||
<string name="status_network_traffic_summary">"Gesendet: \n<xliff:g id="NETWORK_TRAFFIC_0">%1$d packets, %2$d bytes%n</xliff:g>Erhalt: <xliff:g id="NETWORK_TRAFFIC_1">%3$d packets, %4$d bytes</xliff:g>"</string>
|
||||
<string name="status_up_time">"Betriebszeit"</string>
|
||||
<string name="status_awake_time">"Aktivzeit"</string>
|
||||
<string name="internal_memory">"Interner Telefonspeicher"</string>
|
||||
<string name="sd_memory">"SD-Karte"</string>
|
||||
<string name="memory_available">"Verfügbarer Speicher"</string>
|
||||
<string name="memory_size">"Gesamtspeicher"</string>
|
||||
<string name="sd_eject">"SD-Karte entnehmen"</string>
|
||||
<string name="sd_eject_summary">"SD-Karte vorsichtig entnehmen"</string>
|
||||
<string name="sd_format">"SD-Karte formatieren"</string>
|
||||
<string name="sd_format_summary">"SD-Karte formatieren (löschen)"</string>
|
||||
<string name="sd_unavailable">"Nicht verfügbar"</string>
|
||||
<string name="read_only">" (schreibgeschützt)"</string>
|
||||
<string name="battery_status_title">"Akkustatus"</string>
|
||||
<string name="battery_level_title">"Akkuladung"</string>
|
||||
<string name="apn_settings">"APNs"</string>
|
||||
<string name="apn_edit">"Zugangspunkt bearbeiten"</string>
|
||||
<string name="apn_not_set">"Nicht festgelegt"</string>
|
||||
<string name="apn_name">"Name"</string>
|
||||
<string name="apn_apn">"APN"</string>
|
||||
<string name="apn_http_proxy">"Proxy"</string>
|
||||
<string name="apn_http_port">"Port"</string>
|
||||
<string name="apn_user">"Nutzername"</string>
|
||||
<string name="apn_password">"Passwort"</string>
|
||||
<string name="apn_server">"Server"</string>
|
||||
<string name="apn_mmsc">"MMSC"</string>
|
||||
<string name="apn_mms_proxy">"MMS-Proxy"</string>
|
||||
<string name="apn_mms_port">"MMS-Port"</string>
|
||||
<string name="apn_mcc">"MCC"</string>
|
||||
<string name="apn_mnc">"MNC"</string>
|
||||
<string name="apn_type">"APN-Typ"</string>
|
||||
<string name="menu_delete">"APN löschen"</string>
|
||||
<string name="menu_new">"Neuer APN"</string>
|
||||
<string name="menu_save">"Speichern"</string>
|
||||
<string name="menu_cancel">"Verwerfen"</string>
|
||||
<string name="error_title">"Achtung"</string>
|
||||
<string name="error_name_empty">"Das Namensfeld darf nicht leer sein."</string>
|
||||
<string name="error_apn_empty">"Der APN darf nicht leer sein."</string>
|
||||
<string name="error_mcc_not3">"Das MCC-Feld muss 3 Zeichen enthalten."</string>
|
||||
<string name="error_mnc_not23">"Das MNC-Feld muss 2 oder 3 Zeichen enthalten."</string>
|
||||
<string name="master_clear_title">"Auf Werkszustand zurück"</string>
|
||||
<string name="master_clear_summary">"Löscht alle Daten auf dem Telefon"</string>
|
||||
<string name="master_clear_desc">"Durch diese Aktion wird das Telefon auf den Werkszustand zurückgesetzt. Alle Daten und heruntergeladenen Anwendungen werden gelöscht!"</string>
|
||||
<string name="master_clear_button_text">"Telefon zurücksetzen"</string>
|
||||
<string name="master_clear_final_desc">"Telefon zurücksetzen und alle Ihre Daten und Anwendungen löschen? Die Aktion kann nicht rückgängig gemacht werden!"</string>
|
||||
<string name="master_clear_final_button_text">"Alles löschen"</string>
|
||||
<string name="master_clear_gesture_prompt">"Bitte zeichnen Sie Ihr Entsperrungsmuster."</string>
|
||||
<string name="master_clear_gesture_explanation">"Sie müssen Ihr Entsperrungsmuster eingeben, um das Zurücksetzen des Telefons zu bestätigen."</string>
|
||||
<string name="master_clear_failed">"Die Zurücksetzung konnte nicht durchgeführt werden, da der Service zur Systembereinigung nicht verfügbar ist."</string>
|
||||
<string name="media_format_title">"SD-Karte formatieren."</string>
|
||||
<string name="media_format_summary">"Löscht alle Daten auf der SD-Karte"</string>
|
||||
<string name="media_format_desc">"Durch diese Aktion wird die SD-Karte im Telefon gelöscht. Sie verlieren dann ALLE Daten auf der Karte!"</string>
|
||||
<string name="media_format_button_text">"SD-Karte formatieren"</string>
|
||||
<string name="media_format_final_desc">"SD-Karte formatieren und alle Medien löschen? Die Aktion kann nicht rückgängig gemacht werden!"</string>
|
||||
<string name="media_format_final_button_text">"Alles löschen"</string>
|
||||
<string name="media_format_gesture_prompt">"Bitte zeichnen Sie Ihr Entsperrungsmuster."</string>
|
||||
<string name="media_format_gesture_explanation">"Sie müssen Ihr Entsperrungsmuster eingeben, um eine SD-Karten-Formatierung zu bestätigen."</string>
|
||||
<string name="call_settings_title">"Anrufeinstellungen"</string>
|
||||
<string name="call_settings_summary">"Mailbox, Anrufweiterleitung, Anklopfen, Anruferkennung einrichten"</string>
|
||||
<string name="network_settings_title">"Mobile Netzwerke"</string>
|
||||
<string name="network_settings_summary">"Optionen für Roaming, Netzwerke, APNs festlegen"</string>
|
||||
<string name="location_title">"Standortquellen"</string>
|
||||
<string name="location_network_based">"Wireless nutzen"</string>
|
||||
<string name="location_networks_disabled">"Standort über Wireless-Netzwerke anzeigen (z.B. in Google Maps)"</string>
|
||||
<string name="location_neighborhood_level">"Standort bestimmt von WLAN und/oder mobilen Netzwerken"</string>
|
||||
<string name="location_gps">"GPS-Satelliten aktivieren"</string>
|
||||
<string name="location_street_level">"Auf Straßenebene lokalisieren (deaktivieren, um Akku zu sparen)"</string>
|
||||
<string name="location_gps_disabled">"Auf Straßenebene lokalisieren (höherer Akkuverbrauch, im Freien)"</string>
|
||||
<string name="about_settings">"Telefoninfo"</string>
|
||||
<string name="about_settings_summary">"Rechtliche Hinweise, Telefonstatus und Softwareversion anzeigen"</string>
|
||||
<string name="legal_information">"Rechtliche Hinweise"</string>
|
||||
<string name="contributors_title">"Mitwirkende"</string>
|
||||
<string name="copyright_title">"Urheberrecht"</string>
|
||||
<string name="license_title">"Lizenz"</string>
|
||||
<string name="terms_title">"Nutzungsbedingungen"</string>
|
||||
<string name="settings_license_activity_title">"Open Source-Lizenzen"</string>
|
||||
<string name="settings_license_activity_unavailable">"Beim Laden der Lizenzen ist ein Problem aufgetreten."</string>
|
||||
<string name="settings_license_activity_loading">"Wird geladen..."</string>
|
||||
<string name="lock_settings_title">"Display-Entsperrungsmuster"</string>
|
||||
<string name="lockpattern_change_lock_pattern_label">"Entsperrungsmuster ändern"</string>
|
||||
<string name="lockpattern_need_to_unlock">"Gespeichertes Muster bestätigen"</string>
|
||||
<string name="lockpattern_need_to_unlock_wrong">"Versuchen Sie es bitte erneut:"</string>
|
||||
<string name="lockpattern_recording_intro_header">"Zeichnen Sie ein Entsperrungsmuster."</string>
|
||||
<string name="lockpattern_recording_intro_footer">"Menütaste drücken, um die Hilfe aufzurufen"</string>
|
||||
<string name="lockpattern_recording_inprogress">"Lassen Sie die Tasten los, wenn Sie fertig sind."</string>
|
||||
<string name="lockpattern_recording_incorrect_too_short">"Verbinden Sie mindestens <xliff:g id="NUMBER">%d</xliff:g> Punkte. Versuchen Sie es erneut:"</string>
|
||||
<string name="lockpattern_pattern_entered_header">"Muster wurde aufgezeichnet!"</string>
|
||||
<string name="lockpattern_need_to_confirm">"Zeichnen Sie das Muster zur Bestätigung erneut:"</string>
|
||||
<string name="lockpattern_pattern_confirmed_header">"Ihr neues Entsperrungsmuster:"</string>
|
||||
<string name="lockpattern_confirm_button_text">"Bestätigen"</string>
|
||||
<string name="lockpattern_restart_button_text">"Neu aufzeichnen"</string>
|
||||
<string name="lockpattern_retry_button_text">"Erneut versuchen"</string>
|
||||
<string name="lockpattern_continue_button_text">"Weiter"</string>
|
||||
<string name="lockpattern_settings_title">"Entsperrungsmuster"</string>
|
||||
<string name="lockpattern_settings_enable_title">"Muster erforderlich"</string>
|
||||
<string name="lockpattern_settings_enable_summary">"Zum Entsperren muss ein Muster gezeichnet werden"</string>
|
||||
<string name="lockpattern_settings_enable_visible_pattern_title">"Muster sichtbar"</string>
|
||||
<string name="lockpattern_settings_enable_tactile_feedback_title">"Haptisches Feedback verwenden"</string>
|
||||
<string name="lockpattern_settings_choose_lock_pattern">"Entsperrungsmuster"</string>
|
||||
<string name="lockpattern_settings_change_lock_pattern">"Muster ändern"</string>
|
||||
<string name="lockpattern_settings_help_how_to_record">"Zeichnen eines Entsperrungsmusters"</string>
|
||||
<string name="lockpattern_too_many_failed_confirmation_attempts_header">"Zu viele fehlgeschlagene Versuche!"</string>
|
||||
<string name="lockpattern_too_many_failed_confirmation_attempts_footer">"In <xliff:g id="NUMBER">%d</xliff:g> Sekunden erneut versuchen."</string>
|
||||
<string name="skip_button_label">"Abbrechen"</string>
|
||||
<string name="next_button_label">"Weiter"</string>
|
||||
<string name="lock_title">"Sichern Ihres Telefons"</string>
|
||||
<string name="lock_intro_message"><font size="17">"Schützen Sie Ihr Telefon vor unerlaubter Verwendung, indem Sie ein persönliches Entsperrungsmuster erstellen. "\n<font height="17">\n</font><b>"1"</b>" Auf dem nächsten Bildschirm sehen Sie, wie ein Beispielmuster gezeichnet wird. "\n<font height="17">\n</font><b>"2"</b>" Anschließend können Sie Ihr eigenes Entsperrungsmuster aufzeichnen. Sie können verschiedene Muster ausprobieren, müssen jedoch immer mindestens vier Punkte miteinander verbinden. "\n<font height="17">\n</font><b>"3"</b>" Zeichnen Sie Ihr Muster zur Bestätigung erneut. "\n<font height="17">\n</font><b>"Bereit? Wählen Sie “Weiter”"</b>". "\n<font height="3">\n</font>"Wählen Sie “Abbrechen”, wenn Sie Ihr Telefon nicht schützen möchten."</font></string>
|
||||
<string name="lock_example_title">"Beispielmuster"</string>
|
||||
<string name="lock_example_message">"Verbinden Sie mindestens vier Punkte."\n" "\n"Wählen Sie \"Weiter\", um ein eigenes Muster aufzuzeichnen."</string>
|
||||
<string name="manageapplications_settings_title">"Anwendungen verwalten"</string>
|
||||
<string name="manageapplications_settings_summary">"Installierte Anwendungen verwalten und entfernen"</string>
|
||||
<string name="applications_settings">"Anwendungen"</string>
|
||||
<string name="applications_settings_summary">"Anwendungen verwalten, Tastenkombinationen für Schnellstart einrichten"</string>
|
||||
<string name="applications_settings_header">"Anwendungen"</string>
|
||||
<string name="install_applications">"Unbekannte Quellen"</string>
|
||||
<string name="install_unknown_applications">"Installation von Nicht-Market-Anwendungen zulassen"</string>
|
||||
<string name="install_all_warning">"Anwendungen aus unbekannten Quellen können gefährlich für Ihr Telefon und Ihre persönlichen Daten sein. Sie stimmen zu, dass Sie die Verantwortung für alle Schäden an Ihrem Telefon oder jegliche Datenverluste tragen, die aus der Verwendung dieser Anwendungen entstehen können."</string>
|
||||
<string name="application_info_label">"Anwendungsinfo"</string>
|
||||
<string name="storage_label">"Speicher"</string>
|
||||
<string name="auto_launch_label">"Standardmäßig starten"</string>
|
||||
<string name="permissions_label">"Berechtigungen"</string>
|
||||
<string name="cache_header_label">"Cache"</string>
|
||||
<string name="clear_cache_btn_text">"Cache löschen"</string>
|
||||
<string name="cache_size_label">"Cache"</string>
|
||||
<string name="controls_label">"Steuerung"</string>
|
||||
<string name="force_stop">"Stoppen erzwingen"</string>
|
||||
<string name="total_size_label">"Insgesamt"</string>
|
||||
<string name="application_size_label">"Anwendung"</string>
|
||||
<string name="data_size_label">"Daten"</string>
|
||||
<string name="uninstall_text">"Deinstallieren"</string>
|
||||
<string name="clear_user_data_text">"Daten löschen"</string>
|
||||
<string name="auto_launch_enable_text">"Sie haben diese Anwendung für einige Aktionen als Standard festgelegt."</string>
|
||||
<string name="auto_launch_disable_text">"Kein Standard"</string>
|
||||
<string name="clear_activities">"Standardeinstellungen löschen"</string>
|
||||
<string name="unknown">"Unbekannt"</string>
|
||||
<string name="sort_order_alpha">"Sortieren"</string>
|
||||
<string name="sort_order_size">"Nach Größe sortieren"</string>
|
||||
<string name="manage_space_text">"Speicherplatz verwalten"</string>
|
||||
<string name="filter">"Filter"</string>
|
||||
<string name="filter_dlg_title">"Filteroptionen auswählen"</string>
|
||||
<string name="filter_apps_all">"Alle"</string>
|
||||
<string name="filter_apps_third_party">"Drittanbieter"</string>
|
||||
<string name="filter_apps_running">"Wird ausgeführt"</string>
|
||||
<string name="loading">"Wird geladen..."</string>
|
||||
<string name="recompute_size">"Größe wird neu berechnet..."</string>
|
||||
<string name="clear_data_dlg_title">"Löschen"</string>
|
||||
<string name="clear_data_dlg_text">"Alle in dieser Anwendung gespeicherten Informationen werden endgültig gelöscht."</string>
|
||||
<string name="dlg_ok">"OK"</string>
|
||||
<string name="dlg_cancel">"Abbrechen"</string>
|
||||
<string name="app_not_found_dlg_title">"Anwendung nicht gefunden"</string>
|
||||
<string name="app_not_found_dlg_text">"Diese Anwendung wurde in der Liste der installierten Anwendungen nicht gefunden."</string>
|
||||
<string name="clear_data_failed">"Anwendungsdaten können nicht gelöscht werden."</string>
|
||||
<string name="security_settings_desc">"Diese Anwendung kann auf die folgenden Funktionen Ihres Telefons zugreifen:"</string>
|
||||
<string name="computing_size">"Berechnung..."</string>
|
||||
<string name="invalid_size_value">"Paketgröße kann nicht berechnet werden"</string>
|
||||
<string name="empty_list_msg">"Sie haben keine Anwendungen von Drittanbietern installiert."</string>
|
||||
<string name="language_settings">"Gebietsschema und Text"</string>
|
||||
<string name="language_settings_summary">"Optionen für Gebietsschema (Sprache und Region), Texteingabe und Autokorrektur festlegen"</string>
|
||||
<string name="language_category">"Ländereinstellung"</string>
|
||||
<string name="text_category">"Texteinstellungen"</string>
|
||||
<string name="phone_language">"Sprache wählen"</string>
|
||||
<string name="phone_language_summary">"Sprache und Region auswählen"</string>
|
||||
<string name="auto_replace">"Autom. Ersetzung"</string>
|
||||
<string name="auto_replace_summary">"Tippfehler korrigieren"</string>
|
||||
<string name="auto_caps">"Autom. Großschreibung"</string>
|
||||
<string name="auto_caps_summary">"Jeden Satz mit einem Großbuchstaben beginnen"</string>
|
||||
<string name="auto_punctuate">"Autom. Zeichensetzung"</string>
|
||||
<string name="hardkeyboard_category">"Einstellungen für physische Tastatur"</string>
|
||||
<string name="auto_punctuate_summary">"Leertaste zweimal drücken, um \".\" hinzuzufügen"</string>
|
||||
<string name="show_password">"Sichtbare Passwörter"</string>
|
||||
<string name="show_password_summary">"Passwort bei der Eingabe anzeigen"</string>
|
||||
<string name="user_dict_settings_titlebar">"Wörterbuch des Nutzers"</string>
|
||||
<string name="user_dict_settings_title">"Wörterbuch des Nutzers"</string>
|
||||
<string name="user_dict_settings_summary">"Hinzufügen & Entfernen von Wörtern im Wörterbuch des Nutzers"</string>
|
||||
<string name="user_dict_settings_add_menu_title">"Hinzufügen"</string>
|
||||
<string name="user_dict_settings_add_dialog_title">"Zum Wörterbuch hinzufügen"</string>
|
||||
<string name="user_dict_settings_context_menu_edit_title">"Bearbeiten"</string>
|
||||
<string name="user_dict_settings_context_menu_delete_title">"Löschen"</string>
|
||||
<string name="user_dict_settings_empty_text">"Sie haben keine Wörter im Nutzerwörterbuch. Sie können über das Menü ein Wort hinzufügen."</string>
|
||||
<string name="testing">"Test"</string>
|
||||
<string name="testing_phone_info">"Telefoninformation"</string>
|
||||
<string name="testing_battery_info">"Akkuinformationen"</string>
|
||||
<string name="testing_battery_history">"Akkuprotokoll"</string>
|
||||
<string name="quick_launch_title">"Schnellstart"</string>
|
||||
<string name="quick_launch_summary">"Tastenkombinationen zum Starten von Anwendungen festlegen"</string>
|
||||
<string name="quick_launch_assign_application">"Anwendung zuweisen"</string>
|
||||
<string name="quick_launch_no_shortcut">"Keine Tastenkombination"</string>
|
||||
<string name="quick_launch_shortcut">"Suchen + <xliff:g id="SHORTCUT_LETTER">%1$s</xliff:g>"</string>
|
||||
<string name="quick_launch_clear_dialog_title">"Löschen"</string>
|
||||
<string name="quick_launch_clear_dialog_message">"Die Tastenkombination für <xliff:g id="SHORTCUT_LETTER">%1$s</xliff:g> (<xliff:g id="APPLICATION_NAME">%2$s</xliff:g>) wird gelöscht."</string>
|
||||
<string name="quick_launch_clear_ok_button">"OK"</string>
|
||||
<string name="quick_launch_clear_cancel_button">"Abbrechen"</string>
|
||||
<string name="quick_launch_display_mode_applications">"Anwendungen"</string>
|
||||
<string name="quick_launch_display_mode_shortcuts">"Tastenkombinationen"</string>
|
||||
<string name="input_methods_settings_title">"Texteingabe"</string>
|
||||
<string name="input_methods_settings_summary">"Optionen für Texteingabe verwalten"</string>
|
||||
<string name="input_methods_settings_label_format">"%s Einstellungen"</string>
|
||||
<string name="development_settings_title">"Entwicklung"</string>
|
||||
<string name="development_settings_summary">"Optionen zur Anwendungsentwicklung festlegen"</string>
|
||||
<string name="enable_adb">"USB-Debugging"</string>
|
||||
<string name="enable_adb_summary">"Debugmodus bei Anschluss eines USB-Geräts"</string>
|
||||
<string name="keep_screen_on">"Aktiv bleiben"</string>
|
||||
<string name="keep_screen_on_summary">"Display wird beim Laden nie in den Ruhezustand versetzt"</string>
|
||||
<string name="allow_mock_location">"Falsche Standorte zulassen"</string>
|
||||
<string name="allow_mock_location_summary">"Falsche Standorte zulassen"</string>
|
||||
<!-- no translation found for gadget_picker_title (98374951396755811) -->
|
||||
<skip />
|
||||
<!-- no translation found for widget_picker_title (9130684134213467557) -->
|
||||
<skip />
|
||||
<string name="battery_history_details_for">"Details für UID %d"</string>
|
||||
<string name="battery_history_uid">"UID <xliff:g id="USER_ID">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_network_usage">"Netzwerk-Nutzungsdetails für <xliff:g id="APP_NAME">%1$s</xliff:g>:"</string>
|
||||
<string name="battery_history_bytes_received">"Empfangene Bytes: <xliff:g id="BYTES">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_bytes_sent">"Gesendete Bytes: <xliff:g id="BYTES">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_bytes_total">"Bytes insgesamt: <xliff:g id="BYTES">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_cpu_usage">"CPU-Nutzungsdetails für <xliff:g id="APP_NAME">%1$s</xliff:g>:"</string>
|
||||
<string name="battery_history_user_time">"Nutzerzeit:"</string>
|
||||
<string name="battery_history_system_time">"Systemzeit:"</string>
|
||||
<string name="battery_history_total_time">"Gesamtzeit:"</string>
|
||||
<string name="battery_history_starts">"Startet: <xliff:g id="STARTS">%1$d</xliff:g>"</string>
|
||||
<string name="battery_history_days">"<xliff:g id="DAYS">%1$d</xliff:g> Tage, <xliff:g id="HOURS">%2$d</xliff:g> Stunden, <xliff:g id="MINUTES">%3$d</xliff:g> Minuten, <xliff:g id="SECONDS">%4$d</xliff:g> Sekunden"</string>
|
||||
<string name="battery_history_hours">"<xliff:g id="HOURS">%1$d</xliff:g> Stunden, <xliff:g id="MINUTES">%2$d</xliff:g> Minuten, <xliff:g id="SECONDS">%3$d</xliff:g> Sekunden"</string>
|
||||
<string name="battery_history_minutes">"<xliff:g id="MINUTES">%1$d</xliff:g> Minuten, <xliff:g id="SECONDS">%2$d</xliff:g> Sekunden"</string>
|
||||
<string name="battery_history_seconds">"<xliff:g id="SECONDS">%1$d</xliff:g> Sekunden"</string>
|
||||
<string name="battery_history_packages_sharing_this_uid">"Pakete, die diese UID teilen:"</string>
|
||||
<string name="battery_history_no_data">"Keine Akku-Nutzungsdaten verfügbar"</string>
|
||||
<string name="battery_history_sensor">"Sensor:"</string>
|
||||
<!-- no translation found for battery_history_wakelock (608683447522396293) -->
|
||||
<skip />
|
||||
<string name="battery_history_used_by_packages">"Sensor verwendet von Paketen:"</string>
|
||||
<string name="battery_history_sensor_usage">"<xliff:g id="COUNT">%1$d</xliff:g> mal von <xliff:g id="PACKAGE">%2$s</xliff:g> verwendet"</string>
|
||||
<string name="battery_history_sensor_usage_multi">"<xliff:g id="COUNT">%1$d</xliff:g> mal von einem der folgenden verwendet:"</string>
|
||||
<!-- no translation found for battery_history_awake_label (8449792868990080882) -->
|
||||
<skip />
|
||||
<!-- no translation found for battery_history_screen_on_label (1848936521786339362) -->
|
||||
<skip />
|
||||
<!-- no translation found for battery_history_phone_on_label (700191958853142297) -->
|
||||
<skip />
|
||||
<!-- no translation found for battery_history_awake (4350886665719031057) -->
|
||||
<skip />
|
||||
<string name="battery_history_screen_on">"Zeit mit Display eingeschaltet:"</string>
|
||||
<!-- no translation found for battery_history_phone_on (4891504401623839532) -->
|
||||
<skip />
|
||||
<string name="battery_history_screen_on_battery">"Auf Akku:"</string>
|
||||
<string name="battery_history_screen_on_plugged">"Eingesteckt:"</string>
|
||||
<string name="usage_stats_label">"Nutzungsstatistik"</string>
|
||||
<string name="testing_usage_stats">"Nutzungsstatistik"</string>
|
||||
<string name="display_order_text">"Sortieren nach:"</string>
|
||||
<string name="app_name_label">"Anwendung"</string>
|
||||
<string name="launch_count_label">"Anzahl"</string>
|
||||
<string name="usage_time_label">"Nutzungszeit"</string>
|
||||
</resources>
|
19
res/values-es-nokeys/strings.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Copyright (C) 2009 The Android Open Source Project
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
-->
|
||||
<resources xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="applications_settings_summary">"Administrar aplicaciones"</string>
|
||||
</resources>
|