OSDN Git Service

am 7222997e: am cb818619: Update power usage UI to follow WIFI data changes.
authorDianne Hackborn <hackbod@google.com>
Sat, 18 Sep 2010 01:14:00 +0000 (18:14 -0700)
committerAndroid Git Automerger <android-git-automerger@android.com>
Sat, 18 Sep 2010 01:14:00 +0000 (18:14 -0700)
Merge commit '7222997e342920efb45edc312318fc5751c9a0ef'

* commit '7222997e342920efb45edc312318fc5751c9a0ef':
  Update power usage UI to follow WIFI data changes.

1  2 
res/values/strings.xml

diff --combined res/values/strings.xml
      <!-- Used for diagnostic screens, precise translation is not necessary -->
      <string name="intent_sender_account_label">Account: </string>
  
 +    <!-- HTTP proxy settings title -->
 +    <string name="proxy_settings_title">Proxy Settings</string>
 +    <!-- HTTP proxy settings summary -->
 +    <string name="proxy_settings_summary">Set the global HTTP proxy and exclusion lists</string>
      <!-- HTTP proxy settings. Button to clear the proxy box. -->
      <string name="proxy_clear_text">Clear</string>
      <!-- HTTP proxy settings. The port number label. -->
      <string name="proxy_port_label">Port</string>
 +    <!-- HTTP proxy settings. The exclusion list label. -->
 +    <string name="proxy_exclusionlist_label">No Proxy for</string>
      <!-- HTTP proxy settings. The button to restore the defaults. -->
      <string name="proxy_defaultView_text">Restore defaults</string>
      <!-- HTTP proxy settings. The button to save. -->
 -    <string name="proxy_action_text">Save</string>
 +    <string name="proxy_action_text">Done</string>
      <!-- HTTP proxy settings. The text field for the hostname -->
      <string name="proxy_hostname_label">Hostname</string>
      <!-- HTTP proxy settings. Title if there is an error-->
      <string name="proxy_error_dismiss">OK</string>
      <!-- HTTP proxy settings. The error if the hostname is not valid -->
      <string name="proxy_error_invalid_host">The hostname you typed is not valid.</string>
 +    <!-- HTTP proxy settings. The error if the exclusion list is not valid -->
 +    <string name="proxy_error_invalid_exclusion_list">The exclusion list you typed is not properly formatted. Please enter a comma-separated list of excluded domains.</string>
      <!-- HTTP proxy settings. Error msg -->
      <string name="proxy_error_empty_port">You must complete the port field.</string>
      <!-- HTTP proxy settings. Error msg -->
      <string name="sdcard_settings_scanning_status">Scanning SD card for media\u2026</string>
      <!-- Message when the SD card is mounted as read only -->
      <string name="sdcard_settings_read_only_status">SD card mounted read-only</string>
 -
 +    <!-- SetupWizard strings used by DateTimeSettingsSetupWizard.  The button label for going to the next screen without storing the setting. [CHAR LIMIT=5] -->
 +    <string name="skip_label" >Skip</string>
      <!-- SetupWizard strings used by DateTimeSettingsSetupWizard.  The button label for going to the next screen. -->
      <string name="next_label">Next</string>
  
      <!-- LocalePicker -->
      <!-- Title for the locale picker activity -->
 -    <string name="language_picker_title">Locale</string>
 -    <!-- Locale picker screen. Label for choosing the locale -->
 -    <string name="select_your_language">Select your language</string>
 +    <string name="language_picker_title">Language</string>
  
      <!-- The title of the dialog to pick an activity.  This is shown when there are multiple activities that can do a particular action.  For example, suppose you click on the "Share" menu item in the Browser.  Since you can share the webpage URL via many communication methods, this dialog would come up with choices like "Email", "IM", etc.  This is a generic message, and the previous example is a single possible scenario (so please don't assume it's for the browser or anything :) ). -->
      <string name="activity_picker_label">Select activity</string>
      <!-- mobile network settings screen, setting option summary text -->
      <string name="sum_carrier_select">Select a network operator</string>
  
 -    <!-- Date and time settings -->
 +    <!-- Date and time settings --><skip />
      <!-- Main Settings screen setting option name to go into the date and time settings-->
      <string name="date_and_time_settings_title">Date &amp; time</string>
      <!-- Main Settings screen setting option summary text for the item to go into the date and time settings. -->
  
      <!-- Security Settings --><skip />
  
 +    <!-- Security settings screen, setting option name to change screen timeout -->
 +    <string name="lock_after_timeout">Lock device after timeout</string>
 +    <!-- Security settings screen, setting option summary to change screen timeout -->
 +    <string name="lock_after_timeout_summary">Adjust the delay before the device automatically locks</string>
 +    
      <!-- Main Settings screen setting option title for the item to take you the security and location screen -->
      <string name="security_settings_title">Location &amp; security</string>
      <!-- Location & security settings screen title -->
      <string name="lockpassword_pin_too_short">PIN must be at least %d characters</string>
  
      <!-- Hint shown after minimum password criteria is met -->
 -    <string name="lockpassword_press_continue">Press Continue when done</string>
 +    <string name="lockpassword_press_continue">Touch Continue when done</string>
  
      <!-- Hint shown after minimum password criteria is met -->
      <string name="lockpassword_continue_label">Continue</string>
      <!-- Error shown when in PIN mode and user enters a non-digit -->
      <string name="lockpassword_pin_contains_non_digits">PIN must contain only digits 0-9</string>
  
 +    <!-- Error shown when in PIN mode and PIN has been used recently. Please keep this string short! -->
 +    <string name="lockpassword_pin_recently_used">Device administrator disallows using a recent PIN</string>
 +
      <!-- Error shown when in PASSWORD mode and user enters an invalid character -->
      <string name="lockpassword_illegal_character">Password contains an illegal character</string>
  
      <!-- Error shown when in PASSWORD mode and password doesn't contain any symbols -->
      <string name="lockpassword_password_requires_symbol">Password must contain at least one symbol</string>
  
 +    <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of letters -->
 +    <plurals name="lockpassword_password_requires_letters">
 +        <item quantity="one">Password must contain at least 1 letter</item>
 +        <item quantity="other">Password must contain at least %d letters</item>
 +    </plurals>
 +
 +    <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of lowercase letters -->
 +    <plurals name="lockpassword_password_requires_lowercase">
 +        <item quantity="one">Password must contain at least 1 lowercase letter</item>
 +        <item quantity="other">Password must contain at least %d lowercase letters</item>
 +    </plurals>
 +
 +    <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of uppercase letters -->
 +    <plurals name="lockpassword_password_requires_uppercase">
 +        <item quantity="one">Password must contain at least 1 uppercase letter</item>
 +        <item quantity="other">Password must contain at least %d uppercase letters</item>
 +    </plurals>
 +
 +    <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of numerical digits -->
 +    <plurals name="lockpassword_password_requires_numeric">
 +        <item quantity="one">Password must contain at least 1 numerical digit</item>
 +        <item quantity="other">Password must contain at least %d numerical digits</item>
 +    </plurals>
 +
 +    <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of special symbols -->
 +    <plurals name="lockpassword_password_requires_symbols">
 +        <item quantity="one">Password must contain at least 1 special symbol</item>
 +        <item quantity="other">Password must contain at least %d special symbols</item>
 +    </plurals>
 +
 +    <!-- Error shown when in PASSWORD mode and password doesn't contain the required number of non-letter characters -->
 +    <plurals name="lockpassword_password_requires_nonletter">
 +        <item quantity="one">Password must contain at least 1 non-letter character</item>
 +        <item quantity="other">Password must contain at least %d non-letter characters</item>
 +    </plurals>
 +
 +    <!-- Error shown when in PASSWORD mode and password has been used recently. Please keep this string short! -->
 +    <string name="lockpassword_password_recently_used">Device administrator disallows using a recent password</string>
 +
      <!-- Label for ChoosePassword/PIN OK button -->
      <string name="lockpassword_ok_label">OK</string>
  
      <string name="bluetooth_profile_headset">Phone</string>
      <!-- Bluetooth settings.  The user-visible string that is used whenever referring to the OPP profile. -->
      <string name="bluetooth_profile_opp">Transfer</string>
 +    <!-- Bluetooth settings. The user-visible string that is used whenever referring to the HID profile. -->
 +    <string name="bluetooth_profile_hid">Input Device</string>
 +    <!-- Bluetooth settings. The user-visible string that is used whenever referring to the PAN profile. [CHAR LIMIT=25]-->
 +    <string name="bluetooth_profile_pan">Tethering</string>
  
      <!-- Bluetooth settings.  The summary string when a device is connected to the A2DP profile. -->
      <string name="bluetooth_summary_connected_to_a2dp">Connected to media audio</string>
      <string name="bluetooth_summary_connected_to_headset">Connected to phone audio</string>
      <!-- Bluetooth settings.  The summary string when a device is connected to the A2DP and headset profiles. -->
      <string name="bluetooth_summary_connected_to_a2dp_headset">Connected to phone and media audio</string>
 +    <!-- Bluetooth settings. The summary string when a device is connected to the HID profile. -->
 +    <string name="bluetooth_summary_connected_to_hid">Connected to input device</string>
 +    <!-- Bluetooth settings. The summary string when a device is connected to the PAN profile. [CHAR LIMIT=35]-->
 +    <string name="bluetooth_summary_connected_to_pan">Tethered</string>
  
      <!-- Bluetooth settings.  Connection options screen.  The title of the screen. -->
      <string name="bluetooth_device_advanced_title"><xliff:g id="device_name">%1$s</xliff:g> options</string>
      <string name="bluetooth_opp_profile_summary_connected">Connected to file transfer server</string>
      <!-- Bluetooth settings.  Connection options screen.  The summary for the OPP checkbox preference when OPP is not connected. -->
      <string name="bluetooth_opp_profile_summary_not_connected">Not connected to file transfer server</string>
 +    <!-- Bluetooth settings. Connection options screen. The summary for the HID checkbox preference when HID is connected. -->
 +    <string name="bluetooth_hid_profile_summary_connected">Connected to input device</string>
 +    <!-- Bluetooth settings. Connection options screen. The summary for the PAN checkbox preference when PAN is connected. [CHAR LIMIT=25]-->
 +    <string name="bluetooth_pan_profile_summary_connected">Tethered</string>
  
      <!-- Bluetooth settings.  Connection options screen.  The summary for the A2DP checkbox preference that describes how checking it will set the A2DP profile as preferred. -->
      <string name="bluetooth_a2dp_profile_summary_use_for">Use for media audio</string>
      <string name="bluetooth_headset_profile_summary_use_for">Use for phone audio</string>
      <!-- Bluetooth settings.  Connection options screen.  The summary for the OPP checkbox preference that describes how checking it will set the OPP profile as preferred. -->
      <string name="bluetooth_opp_profile_summary_use_for">Use for file transfer</string>
 +    <!-- Bluetooth settings. Connection options screen. The summary
 +         for the HID checkbox preference that describes how checking it
 +         will set the HID profile as preferred. -->
 +    <string name="bluetooth_hid_profile_summary_use_for">Use for input</string>
  
      <!-- Bluetooth settings.  Dock Setting Title -->
      <string name="bluetooth_dock_settings">Dock Settings</string>
      <!-- Label for the password of the secured network -->
      <string name="wifi_password">Password</string>
      <!-- Label for the check box to show password -->
 -    <string name="wifi_show_password">Show password.</string>
 +    <string name="wifi_show_password">Show password</string>
 +    <!-- Label for the spinner to show ip settings  -->
 +    <string name="wifi_ip_settings">IP settings</string>
      <!-- Hint for unchanged fields -->
      <string name="wifi_unchanged">(unchanged)</string>
      <!-- Hint for unspecified fields -->
      <string name="wifi_ip_settings_menu_cancel">Cancel</string>
      <!-- Error message if the IP address is not valid -->
      <string name="wifi_ip_settings_invalid_ip">Please type a valid IP address.</string>
 -    <!-- Checkbox for whether to use a static IP address -->
 -    <string name="wifi_use_static_ip">Use static IP</string>
      <!-- Label for the DNS (first one) -->
      <string name="wifi_dns1">DNS 1</string>
      <!-- Label for the DNS (second one)-->
      <!-- About phone screen, summary of the item to go into the phone status screen -->
      <string name="device_status_summary">Phone number, signal, etc.</string>
      <!-- Main settings screen item's title to go into the SD card and storage settings screen-->
 -    <string name="storage_settings">SD card &amp; phone storage</string>
 +    <string name="storage_settings">Storage</string>
      <!-- SD card and storage settings screen title -->
 -    <string name="storage_settings_title">SD card &amp; phone storage settings</string>
 +    <string name="storage_settings_title">Storage settings</string>
      <!-- [CHAR LIMIT=100] Main settings screen item's summary for the SD card and storage settings -->
      <string name="storage_settings_summary">Unmount SD card, view available storage</string>
      <!-- Do not translate. About phone, status item title -->
      <string name="sd_eject">Unmount SD card</string>
      <!-- SD card & phone storage settings item title that will result in the phone unmounting the SD card.  This will be done before the user phyiscally removes the SD card from the phone.  Kind of like the "Safely remove" on some operating systems.   -->
      <string name="sd_eject_summary">Unmount the SD card for safe removal</string>
 -
 +    <!-- SD card & phone storage settings item title for toggling PTP mode on and off.  When PTP mode is on the device will appear on the USB bus as a PTP camera device instead of an MTP music player.   -->
 +    <string name="ptp_mode">Enable PTP mode</string>
 +    <!-- SD card & phone storage settings item summary for toggling PTP mode on and off.  When PTP mode is on the device will appear on the USB bus as a PTP camera device instead of an MTP music player.   -->
 +    <string name="ptp_mode_summary">Appear on USB as a PTP camera device instead of an MTP device</string>
  
      <!-- SD card & phone storage settings item summary that is displayed when no SD card is inserted -->
      <string name="sd_insert_summary">Insert an SD card for mounting</string>
      <string name="call_settings_summary">Set up voicemail, call forwarding, call waiting, caller ID</string>
  
      <!-- Tethering controls, item title to go into the tethering settings -->
 -    <string name="tether_settings_title_usb">Tethering</string>
 +    <!-- Tethering controls, item title to go into the tethering settings when only USB tethering is available [CHAR LIMIT=25]-->
 +    <string name="tether_settings_title_usb">USB tethering</string>
 +    <!-- Tethering controls, item title to go into the tethering settings when only Wifi tethering is available [CHAR LIMIT=25]-->
      <string name="tether_settings_title_wifi">Portable hotspot</string>
 -    <string name="tether_settings_title_both">Tethering &amp; portable hotspot</string>
 +    <!-- Tethering controls, item title to go into the tethering settings when only Bluetooth tethering is available [CHAR LIMIT=25]-->
 +    <string name="tether_settings_title_bluetooth">Bluetooth tethering</string>
 +    <!-- Tethering controls, item title to go into the tethering settings when USB and Bluetooth tethering are available [CHAR LIMIT=25]-->
 +    <string name="tether_settings_title_usb_bluetooth">Tethering</string>
 +    <!-- Tethering controls, item title to go into the tethering settings when USB, Bluetooth and Wifi tethering are available [CHAR LIMIT=25]-->
 +    <string name="tether_settings_title_all">Tethering &amp; portable hotspot</string>
 +
      <!-- Tethering controls, the item summary for the user to go into the tethering settings -->
 +    <!-- Tethering controls, the item summary for the user to go into the tethering settings when only USB tethering is available [CHAR LIMIT=100]-->
      <string name="tether_settings_summary_usb">Share your phone\'s mobile data connection via USB</string>
 +    <!-- Tethering controls, the item summary for the user to go into the tethering settings when only Wifi tethering is available [CHAR LIMIT=100]-->
      <string name="tether_settings_summary_wifi">Share your phone\'s mobile connection as a portable Wi-Fi hotspot</string>
 -    <string name="tether_settings_summary_both">Share your phone\'s mobile data connection via USB or as a portable Wi-Fi hotspot</string>
 +    <!-- Tethering controls, the item summary for the user to go into the tethering settings when only Bluetooth tethering is available [CHAR LIMIT=100]-->
 +    <string name="tether_settings_summary_bluetooth">Share your phone\'s mobile connection via Bluetooth</string>
 +    <!-- Tethering controls, the item summary for the user to go into the tethering settings when USB and Wifi tethering are available [CHAR LIMIT=100]-->
 +    <string name="tether_settings_summary_usb_wifi">Share your phone\'s mobile data connection via USB or as a portable Wi-Fi hotspot</string>
 +    <!-- Tethering controls, the item summary for the user to go into the tethering settings when USB and Bluetooth tethering are available [CHAR LIMIT=100]-->
 +    <string name="tether_settings_summary_usb_bluetooth">Share your phone\'s mobile data connection via USB or Bluetooth</string>
 +    <!-- Tethering controls, the item summary for the user to go into the tethering settings when Bluetooth and Wifi tethering are available [CHAR LIMIT=100]-->
 +    <string name="tether_settings_summary_wifi_bluetooth">Share your phone\'s mobile data connection via Bluetooth or as a portable Wi-Fi hotspot</string>
 +    <!-- Tethering controls, the item summary for the user to go into the tethering settings when USB, Wifi, and Bluetooth tethering are available [CHAR LIMIT=100]-->
 +    <string name="tether_settings_summary_all">Share your phone\'s mobile data connection via USB, Wi-Fi, or Bluetooth</string>
  
      <!-- USB Tethering options -->
      <string name="usb_title">USB</string>
      <!-- USB errored subtext - shown when USB is broken for some reason -->
      <string name="usb_tethering_errored_subtext">USB tethering error</string>
  
 -    <!-- Thethering help button - calls up a web view with general tethering info -->
 +    <!-- Bluetooth Tethering settings-->
 +    <!-- Label for bluetooth tether checkbox [CHAR LIMIT=25]-->
 +    <string name="bluetooth_tether_checkbox_text">Bluetooth tethering</string>
 +    <!-- Bluetooth available subtext - shown when Bluetooth tethering is turned on but it is not currently tethered to any devices [CHAR LIMIT=50]-->
 +    <string name="bluetooth_tethering_available_subtext">Bluetooth tethering on, but not connected</string>
 +    <!-- Bluetooth connected subtext - shown when a device is tethered over Bluetooth [CHAR LIMIT=50]-->
 +    <string name="bluetooth_tethering_connected_subtext">Bluetooth tethering on and connected</string>
 +    <!-- Bluetooth tethering off subtext - shown when Bluetooth Tethering is turned off [CHAR LIMIT=50]-->
 +    <string name="bluetooth_tethering_off_subtext">Bluetooth tethering off</string>
 +    <!-- Bluetooth errored subtext - shown when Bluetooth is broken for some reason [CHAR LIMIT=50]-->
 +    <string name="bluetooth_tethering_errored_subtext">Bluetooth tethering error</string>
 +    <!-- Bluetooth Tethering settings. Error message shown when trying to connect an 8th device [CHAR LIMIT=50]-->
 +    <string name="bluetooth_tethering_overflow_error">Cannot tether to more than <xliff:g id="maxConnection">%1$d</xliff:g> devices</string>
 +    <!-- Bluetooth Tethering settings.  Message for untethering from a bluetooth device [CHAR LIMIT=50]-->
 +    <string name="bluetooth_untether_blank"><xliff:g id="device_name">%1$s</xliff:g> will be untethered.</string>
 +
 +    <string name="bluetooth_tether_settings_text">Bluetooth tethering settings</string>
 +    <string name="bluetooth_tether_settings_subtext">Select Bluetooth devices to tether</string>
 +
 +    <!-- Tethering help button - calls up a web view with general tethering info -->
      <string name="tethering_help_button_text">Help</string>
  
      <!-- Wireless controls, item title to go into the network settings -->
@@@ -2023,8 -1912,6 +2023,8 @@@ found in the list of installed applicat
  
      <!-- Input methods Settings -->
      <string name="input_methods_settings_title">Text input</string>
 +    <!-- Setting name for Input Method chooser -->
 +    <string name="input_method">Input method</string>
      <string name="input_methods_settings_summary">Manage text input options</string>
      <!-- Input Methods Settings localized format string for generating the appropriate "Foo settings" menu label for the Input Method named "Foo" -->
      <string name="input_methods_settings_label_format"><xliff:g id="ime_name">%1$s</xliff:g> settings</string>
          </string>
      <!-- Message for the prompt that lets users know that they have no accessibility related apps
           installed and that they can install TalkBack from Market. -->
 -    <string name="accessibility_service_no_apps_message">You do not have any accessibility related
 +    <string name="accessibility_service_no_apps_message">You do not have any accessibility-related
          applications installed.\n\nYou can download a screen reader for your device from Android
          Market.\n\nClick "OK" to install the screen reader.</string>
  
 +    <!-- Accessibility settings: Webpage accessibility scripts category [CHAR LIMIT=25] -->
 +    <string name="accessibility_script_injection_category">Accessibility scripts</string>
 +    <!-- Accessibility settings: Checkbox title for enabling download of accessibility scripts [CHAR LIMIT=40] -->
 +    <string name="accessibility_script_injection_enabled">Download accessibility scripts</string>
 +    <!-- Accessibility settings: Checkbox summary for enabling download of accessibility scripts [CHAR LIMIT=65] -->
 +    <string name="accessibility_script_injection_enabled_summary">Allow applications to download accessibility scripts from Google</string>
 +    <!-- Warning message about security implications of downloading accessibility scripts,
 +         displayed as a dialog message when the user selects to enable script downloading. [CHAR LIMIT="NONE"] -->
 +    <string name="accessibility_script_injection_security_warning">Some applications can ask Google
 +        to download scripts to your phone that make their content more accessible. Are you sure you
 +        want to allow Google to install accessibility scripts on your phone?</string>
      <!-- Accessibility settings: Power button category -->
      <string name="accessibility_power_button_category">Power button</string>
      <!-- Accessibility settings: checkbox title for power button behavior -->
      <string name="usage_type_wake_lock">Keep awake</string>
      <!-- Label for GPU usage time -->
      <string name="usage_type_gps">GPS</string>
+     <!-- [CHAR LIMIT=25] Label for WIFI usage time -->
+     <string name="usage_type_wifi_running">Wi-Fi running</string>
      <!-- Label for Phone usage time -->
      <string name="usage_type_phone">Phone</string>
      <!-- Label for Data sent -->
      <string name="sound_category_calls_title">Incoming calls</string>
      <string name="sound_category_notification_title">Notifications</string>
      <string name="sound_category_feedback_title">Feedback</string>
 +
 +    <!-- Wifi Setup For Setup Wizard with XL screen -->
 +    <!-- Title shown in Wifi Setup For Setup Wizard with XL screen -->
 +    <string name="wifi_setup_title">WiFi setup</string>
 +    <!-- Text message shown when Wifi is not connected.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_not_connected">Not connected</string>
 +    <!-- Button message shown on the button adding manual setting.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_add_network">Add network</string>
 +    <!-- Button message shown on the button refreshing a list of network.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_refresh_list">Refresh list</string>
 +    <!-- Button message shown on the button enabling users skip Wifi Setup.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_skip">Skip</string>
 +    <!-- Button message shown on the button enabling users go the next step.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_next">Next</string>
 +
 +    <!-- Message shown above available network when there's no connected network.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_status_select_network">Touch to select network</string>
 +    <!-- Message shown above available networks when a user clicked one of available
 +         networks and the UI is showing one possible existing network.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_status_existing_network">Connect to existing network</string>
 +    <!-- The message shown above available networks when a user clicked "Add network"
 +         button. Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_status_new_network">Connect to new network</string>
 +    <!-- The message shown above available networks when a user clicked one of available
 +         networks or created another profile and he/she is waiting for the connection
 +         is established.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_status_connecting">Connecting...</string>
 +    <!-- The message show above available networks when connection is established.
 +         Used in Wifi Setup For Setup Wizard with XL screen. -->
 +    <string name="wifi_setup_status_connected">Connected</string>
 +
 +    <!-- Do not translate. This is a stub which will be removed soon. -->
 +    <string name="time_zone_auto_stub" translatable="false">Select Time Zone</string>
 +
 +
 +
 +    <!-- Message when sync is currently failing [CHAR LIMIT=100] -->
 +    <string name="sync_is_failing">Sync is currently experiencing problems. It will be back shortly.</string>
 +    <!-- Button label to add an account [CHAR LIMIT=20] -->
 +    <string name="add_account_label">Add account</string>
 +    <!-- Header title for those settings relating to general syncing.
 +         [CHAR LIMIT=30] -->
 +    <string name="header_general_sync_settings">General sync settings</string>
 +    <!-- Data synchronization settings screen, title of setting that controls whether background data should be used [CHAR LIMIT=30] -->
 +    <string name="background_data">Background data</string>
 +    <!-- Data synchronization settings screen, summary of setting that controls whether background data should be used [CHAR LIMIT=60] -->
 +    <string name="background_data_summary">Applications can sync, send, and receive data at any time</string>
 +    <!-- Data synchronization settings screen, title of dialog that confirms the user's unchecking of background data [CHAR LIMIT=20] -->
 +    <string name="background_data_dialog_title">Attention</string>
 +    <!-- Data synchronization settings screen, message of dialog that confirms the user's unchecking of background data [CHAR LIMIT=200] -->
 +    <string name="background_data_dialog_message">Disabling background data extends battery life and lowers data use. Some applications may still use the background data connection.</string>
 +    <!-- Data synchronization settings screen, setting option name
 +         [CHAR LIMIT=30] -->
 +    <string name="sync_automatically">Auto-sync</string>
 +    <!-- Data synchronization settings screen, setting option summary text when check box is selected [CHAR LIMIT=60] -->
 +    <string name="sync_automatically_summary">Applications sync data automatically</string>
 +    <!-- Header title for list of accounts on Accounts & Synchronization settings [CHAR LIMIT=30] -->
 +    <string name="header_manage_accounts">Manage accounts</string>
 +
 +    <!-- Sync status messages on Accounts & Synchronization settings --><skip/>
 +    <!-- Sync status shown when sync is enabled [CHAR LIMIT=20] -->
 +    <string name="sync_enabled">Sync is ON</string>
 +    <!-- Sync status shown when sync is disabled [CHAR LIMIT=20] -->
 +    <string name="sync_disabled">Sync is OFF</string>
 +    <!-- Sync status shown when last sync resulted in an error [CHAR LIMIT=20] -->
 +    <string name="sync_error">Sync error</string>
 +
  </resources>