1 <?xml version="1.0" encoding="utf-8"?> 2 3 <!-- Copyright 2009 Google Inc. All Rights Reserved. --> 4 5 <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> 6 7 <!-- Application's title (for title bars, the application manager, etc.) [CHAR LIMIT=20] --> 8 <string name="application_name">Instant Upload</string> 9 10 <!-- Default Picasa upload destination: the CameraSync album [CHAR LIMIT=NONE]--> 11 <string name="picasa_default_destination">Instant Upload Album</string> 12 13 <!-- Summary screen: title when uploading --> 14 <string name="summary_title_uploading">Uploading</string> 15 16 <!-- Summary screen: title when displaying finished uploads --> 17 <string name="summary_title_finished">Finished</string> 18 19 <!-- Summary screen: title when displaying finished uploads --> 20 <string name="summary_title_paused">Paused</string> 21 22 <!-- Summary screen: subtitle showing the # of photos and videos to be uploaded --> 23 <string name="summary_subtitle_uploading_format">%1$d%% %2$d photos %3$d videos</string> 24 25 <!-- Summary screen: subtitle showing the # of photos and videos that have finished uploading --> 26 <string name="summary_subtitle_counts_format">%1$d photos %2$d videos</string> 27 28 <!-- Summary screen: subtitle for when the app is paused due to low battery --> 29 <string name="summary_subtitle_paused_low_battery">low battery</string> 30 31 <!-- Summary screen: subtitle for when the app is paused due out of photos quota condition --> 32 <string name="summary_subtitle_paused_photos_quota">exceeded photos quota</string> 33 34 <!-- Summary screen: subtitle for when the app is paused due to Data Roaming --> 35 <string name="summary_subtitle_paused_roaming">roaming</string> 36 37 <!-- Summary screen: subtitle for when the app is paused due to needing WiFi for this item --> 38 <string name="summary_subtitle_paused_need_wifi">waiting for WiFi</string> 39 40 <!-- Summary screen: subtitle for when the app is paused due to needing the charger --> 41 <string name="summary_subtitle_paused_need_charger">delayed until charging</string> 42 43 <!-- Summary screen: subtitle for when the app is paused due to needing a data connection --> 44 <string name="summary_subtitle_paused_need_network">waiting for connection</string> 45 46 <!-- Summary screen: subtitle for when the app is paused due to needing a data connection --> 47 <string name="summary_subtitle_paused_retry_format">retrying in %s</string> 48 49 <!-- Summary screen menu: label button to switch to pending uploads view --> 50 <string name="summary_menu_show_pending">Show Pending Uploads</string> 51 52 <!-- Summary screen menu: label button to switch to finished uploads view --> 53 <string name="summary_menu_show_finished">Show Finished Uploads</string> 54 55 <!-- Menu label button to launch the browser to view Picasa Web Albums --> 56 <string name="menu_view_online">View Online</string> 57 58 <string name="menu_show_pending_items">Show Pending Uploads</string> 59 <string name="menu_hide_pending_items">Hide Pending Uploads</string> 60 61 <string name="menu_show_completed_items">Show Details</string> 62 <string name="menu_hide_completed_items">Hide Details</string> 63 64 <!-- Settings menu item title --> 65 <string name="menu_settings">Settings</string> 66 67 <!-- Finished uploads per-item upload date formatting --> 68 <string name="format_date_uploaded">Uploaded %s</string> 69 70 <!-- Format a percentage value for use in a progress bar --> 71 <string name="format_progress_percent"><xliff:g id="number" example="50">%d</xliff:g><xliff:g id="percentsign" example="%">%%</xliff:g></string> 72 73 <!-- Label for the account selection spinner. --> 74 <string name="account">Account</string> 75 76 <!-- Button to start an upload (on the upload settings page) --> 77 <string name="upload">Upload</string> 78 <!-- Button to confirm the settings on the initial launch --> 79 <string name="ok">OK</string> 80 <!-- Button to cancel the starting of an upload (on the upload settings page) --> 81 <string name="cancel">Cancel</string> 82 83 <!-- First half of the dialog message shown while an upload is starting - 'Uploading to [destination]' --> 84 <string name="uploading_to">Uploading to <b>%s</b></string> 85 <!-- Second half of the dialog message shown while an upload is starting. 86 In some cases, this is omitted - ' for [username]' --> 87 <string name="uploading_for"> for <b>%s</b></string> 88 <!-- Format for the destination string of an upload - '[Picasa] "[Photo Title]"'. --> 89 <string name="destination_format">%1$s \"%2$s\"</string> 90 91 <!-- Toast shown when the application is started in an incorrect way (by another application). --> 92 <string name="toast_intent_error">Upload initialization failed.</string> 93 <!-- Toast shown when we fail to access a file to upload. --> 94 <string name="toast_file_error">File not available.</string> 95 <!-- Toast shown when we there's a problem retrieving the user account information. --> 96 <string name="account_error">Failed to retrieve account information.</string> 97 <!-- Dialog shown after we failed to log into the user's account --> 98 <string name="toast_failed_auth">There was a problem signing into your account.</string> 99 100 <!-- State of a file while its waiting for its turn to be uploaded: intentionally blank --> 101 <string name="upload_state_queued"></string> 102 <!-- State of an upload while it's waiting to retry after some kind of problem --> 103 <string name="upload_state_waiting_retry">Waiting to retry</string> 104 <!-- State of a large upload while it's waiting for a WiFi connection --> 105 <string name="upload_state_waiting_wifi">Waiting for WiFi</string> 106 <!-- State of a file while it's being uploaded --> 107 <string name="upload_state_uploading">Uploading</string> 108 <!-- State of a file after it failed to be uploaded --> 109 <string name="upload_state_failed">Failed</string> 110 <!-- State of a file after it was uploaded successfully --> 111 <string name="upload_state_completed">Completed</string> 112 113 <!-- Human-readable name of PAUSE_STATE_RUNNING --> 114 <string name="pause_state_running">uploading</string> 115 <!-- Human-readable name of PAUSE_STATE_MANUALLY_PAUSED --> 116 <string name="pause_state_manually_paused">manually paused</string> 117 <!-- Human-readable name of PAUSE_STATE_LOW_BATTERY --> 118 <string name="pause_state_low_battery">paused - low battery</string> 119 <!-- Human-readable name of PAUSE_STATE_NEED_CHARGER --> 120 <string name="pause_state_need_charger">paused - delayed until charging</string> 121 <!-- Human-readable name of PAUSE_STATE_NEED_CONNECTIVITY --> 122 <string name="pause_state_need_connectivity">paused - waiting for connection</string> 123 <!-- Human-readable name of pause_state_need_photos_quota --> 124 <string name="pause_state_need_photos_quota">paused - out of PWA quota</string> 125 <!-- Human-readable name of PAUSE_STATE_NEED_WIFI --> 126 <string name="pause_state_need_wifi">paused - waiting for wifi</string> 127 <!-- Human-readable name of PAUSE_STATE_ROAMING --> 128 <string name="pause_state_roaming">paused - roaming</string> 129 <!-- Human-readable name of PAUSE_STATE_RETRYING --> 130 <string name="pause_state_retrying">waiting to retry</string> 131 132 <!-- State detail for "Waiting to retry", when waiting to retry in 1 minute after a network failure --> 133 <string name="retry_in_1min">1 minute</string> 134 <!-- State detail for "Waiting to retry", when waiting to retry in 2 minutes after a network failure --> 135 <string name="retry_in_2min">2 minutes</string> 136 <!-- State detail for "Waiting to retry", when waiting to retry in 5 minutes after a network failure --> 137 <string name="retry_in_5min">5 minutes</string> 138 <!-- State detail for "Waiting to retry", when waiting for the data connection to come back --> 139 <string name="retry_no_data">No data connection</string> 140 <!-- Toast text for "Out of quota", when waiting for account server space to free up --> 141 <string name="account_out_of_quota">Account is out of disk quota</string> 142 143 <!-- State detail for "Failed", when we couldn't find the file to upload --> 144 <string name="completed_no_file">File not found</string> 145 <!-- State detail for "Failed", when the server responded in an unexpected way --> 146 <string name="failed_bad_response">Service error</string> 147 <!-- State detail for "Failed", when we bail out after several network failures --> 148 <string name="failed_network_error">Network error</string> 149 <!-- State detail for "Failed", when the server failed to authorize the user --> 150 <string name="failed_server_auth">Authentication failed</string> 151 152 <!-- Format for the list switcher button when the pending list is being displayed --> 153 <string name="manager_list_switcher_pending_format">Pending uploads [%d]</string> 154 <!-- Format for the list switcher button when the completed uploads list is being displayed --> 155 <string name="manager_list_switcher_completed_format">Completed uploads [%d]</string> 156 157 <!-- Label for the button to pause the upload service --> 158 <string name="manager_pause">Pause uploads</string> 159 <!-- Label for the button to resume the upload service --> 160 <string name="manager_resume">Resume uploads</string> 161 <!-- Label for the button to mark a photo for immediate upload --> 162 <string name="manager_upload_now">Upload now</string> 163 <!-- Label for the button to change when a photo is to be uploaded --> 164 <string name="manager_upload_later">Upload later</string> 165 <!-- Label for the button to mark a photo as do not upload --> 166 <string name="manager_do_not_upload">Do not upload</string> 167 <!-- Label for the button to view the photo or video --> 168 <string name="manager_view_media">View</string> 169 <!-- Label for the button to retry one failed upload --> 170 <string name="manager_retry">Retry</string> 171 <!-- Toast confirming the canceling of one pending upload --> 172 <string name="manager_toast_canceled">Upload canceled</string> 173 <!-- Toast shown when the user tries to cancel an already finished (completed or failed) upload --> 174 <string name="manager_toast_not_canceled">Upload already finished</string> 175 <!-- Label for the button to resync all photos with the server --> 176 <string name="manager_sync_all">Sync all</string> 177 <!-- Text shown when the uploads list is empty. 1=date; 2=time --> 178 <string name="manager_activity_last_sync_format">Last Sync:\n%1$s\n%2$s</string> 179 180 <!-- Text shown when the finished items list is empty --> 181 <string name="finished_empty">Finished items list is empty.</string> 182 183 <!-- Notification label used in all notifications [CHAR LIMIT=25] --> 184 <string name="notify_uploads">Instant Upload</string> 185 <!-- Notification when all uploads are finished (completed or failed, so this should be neutral) --> 186 <string name="notify_resolved">Uploads finished</string> 187 <!-- Notification when the upload service is paused --> 188 <string name="notify_paused">Uploads paused</string> 189 <!-- Notification when the upload application was not initialized --> 190 <string name="notify_activation_reminder">Instant Upload hasn\'t been activated yet</string> 191 192 <!-- Toast explaining that large files are only uploaded when there is an active WiFi connection (shown on first large upload) --> 193 <!-- TODO: Probably remove this, rename ID if not. --> 194 <string name="dialog_first_wifi">Large files will be uploaded over a WiFi connection only.</string> 195 196 <!-- Sync All progress dialog message when scanning locally and querying the server --> 197 <string name="dialog_sync_all_scanning">Scanning for files...</string> 198 199 <!-- Sync All progress dialog message when enqueueing requests --> 200 <string name="dialog_sync_all_preparing">Preparing <xliff:g id="photocount" example="5">%1$d</xliff:g> photos and <xliff:g id="videocount" example="4">%2$d</xliff:g> videos for upload...</string> 201 202 <!-- Toast displayed when Sync All found nothing to do --> 203 <string name="dialog_sync_all_found_none">No additional photos/videos need to be uploaded.</string> 204 205 <!-- Sync All dialog message when a server error occurs --> 206 <string name="dialog_sync_all_server_error">There was a problem communicating with the server. Please try again later.</string> 207 208 <!-- Sync All toast when the process canceled --> 209 <string name="dialog_sync_all_canceled">Sync all canceled</string> 210 211 <!-- Sync All dialog title for any errors --> 212 <string name="dialog_sync_all_error_title">Sync All</string> 213 214 <!-- ManagerActivity view completed uploads menu title --> 215 <string name="manager_view_completed">View Completed</string> 216 217 <!-- ManagerActivity view pending uploads menu title --> 218 <string name="manager_view_pending">View Pending</string> 219 220 <!-- Preferences category title: general category --> 221 <string name="preference_category_title_general">General</string> 222 223 <!-- Preference title: Pause all uploads --> 224 <string name="preference_title_pause_all_uploads">Pause all uploads</string> 225 226 <!-- Preference title: select if battery recharging is required before uploading --> 227 <string name="preference_title_need_power">Power</string> 228 229 <!-- Preference summary: checkbox to determine if battery recharging is required before uploading --> 230 <string name="preference_summary_need_power">Upload only when the phone is being charged.</string> 231 232 <!-- Preference title: select if battery recharging is required before uploading --> 233 <string name="preference_title_need_wifi">Wi-Fi</string> 234 235 <!-- Preference summary: checkbox to determine if WiFi/WiMAX must be available --> 236 <string name="preference_summary_need_wifi">Upload only when Wi-Fi is available.</string> 237 238 <!-- Preferences category title: photos --> 239 <string name="preference_category_title_photos">Photos</string> 240 241 <!-- Preference title: Photos Account --> 242 <string name="preference_title_photos_account">Account</string> 243 244 <!-- Preference title: select the networks to upload photos --> 245 <string name="preference_title_photos_upload_connectivity">Upload conditions</string> 246 247 <!-- Preference title: Photo size --> 248 <string name="preference_title_photo_size">Photo size</string> 249 250 <!-- Preferences category title: videos --> 251 <string name="preference_category_title_videos">Videos</string> 252 253 <!-- Preference title: Photos Account --> 254 <string name="preference_title_videos_account">Account</string> 255 256 <!-- Preference title: Photos Account --> 257 <string name="preference_title_videos_account_summary">The photos account will be used video uploads.</string> 258 259 <!-- Preference title: select the networks to upload videos --> 260 <string name="preference_title_videos_upload_connectivity">Upload conditions</string> 261 262 <!-- Preference title: select the networks to upload videos --> 263 <string name="preference_title_videos_upload_connectivity_summary">Photos connectivity settings are used for now.</string> 264 265 <!-- Preference mobile data usage: for photos only --> 266 <string name="preference_mobile_data_usage_for_photos_only">Only photos via mobile networks</string> 267 268 <!-- Preference mobile data usage: for all media --> 269 <string name="preference_mobile_data_usage_for_all_media">Photos & videos via mobile networks</string> 270 271 <!-- Preference mobile data usage: never --> 272 <string name="preference_mobile_data_usage_never">Photos & videos via Wi-Fi only</string> 273 274 <!-- Preference category title: "About" --> 275 <string name="preference_category_title_about">About</string> 276 277 <!-- Preference title: CameraSync Version [CHAR LIMIT=20]--> 278 <string name="preference_title_camera_sync_version">Instant Upload Version</string> 279 280 <!-- Preference photos upload dimensions label: 1600px max --> 281 <string name="photos_upload_dimension_1600">Recommended: 1600 pixels (for sharing, prints and screensavers)</string> 282 283 <!-- Preference photos upload dimensions label: original size --> 284 <string name="photos_upload_dimension_original">Original size (slowest upload)</string> 285 286 <!-- Pause state text that shows the SD card is needed --> 287 <string name="pause_state_need_media">paused - SD card unavailable</string> 288 289 <!-- Subtitle text for the summary view, detailing why we are not uploading --> 290 <string name="summary_subtitle_paused_need_media">SD card unavailable</string> 291 292 <!-- Preference screen title: Instant Upload detailed settings button [CHAR LIMIT=20] --> 293 <string name="preference_plus_title">Instant Upload settings</string> 294 295 <!-- Preference title: Enable CameraSync checkbox description [CHAR LIMIT=19]--> 296 <string name="preference_plus_enable_cs">Instant Upload</string> 297 298 <!-- Preference title: description for Enable CameraSync--> 299 <string name="preference_plus_enable_cs_summary">Automatically upload new photos & videos to a private web album</string> 300 301 <!-- Preference title: CameraSync Upload status--> 302 <string name="preference_plus_upload_status">Upload status</string> 303 304 <!-- Preference category: Advanced settings--> 305 <string name="preference_plus_category_advanced">Advanced</string> 306 307 <!-- Preference title: setting for Use mobile data connection--> 308 <string name="preference_plus_mobile_data_connection">Mobile uploads</string> 309 310 <!-- Preference title: Sync while roaming--> 311 <string name="preference_plus_sync_while_roaming">Roaming uploads</string> 312 313 <!-- Preference summary: Sync while roaming--> 314 <string name="preference_plus_sync_while_roaming_summary">Upload photos & videos when roaming on data network</string> 315 316 <!-- Preference title: Delay Sync until charging phone--> 317 <string name="preference_plus_delay_sync_until_charging">Battery uploads</string> 318 319 <!-- Preference summary: Delay Sync until charging phone--> 320 <string name="preference_plus_delay_sync_until_charging_summary">Upload photos & videos only when charging</string> 321 322 <!-- Preference title: Sync all photos and videos--> 323 <string name="preference_plus_sync_all">Upload existing photos</string> 324 325 <!-- Preference title: description for Sync all photos and videos--> 326 <string name="preference_plus_sync_all_description">Upload any existing photos & videos from your phone now</string> 327 328 <!-- Summary screen: subtitle for when the app is disabled--> 329 <string name="summary_subtitle_disabled">Disabled</string> 330 331 <!-- Preference summary: Summary string header, example "paused: waiting for wifi"--> 332 <string name="preference_summary_header_format">%1$s: %2$s</string> 333 334 <!-- Preference summary: uploading format for Uploading and percent number "Uploading (50%)"--> 335 <string name="preference_summary_uploading_percent">Uploading (%1$d%%)</string> 336 337 <!-- Preference summary: format for uploading "3 of 5"--> 338 <string name="preference_summary_uploading_format">: %1$d of %2$d</string> 339 340 <!-- Preference summary: subtitle for when uploading is paused--> 341 <string name="preference_summary_uploading_paused">Paused: touch to resume uploading</string> 342 343 <!-- Preference summary: title for sync all confirm dialog --> 344 <string name="preference_plus_sync_all_prompt_title">Upload existing photos</string> 345 346 <!-- Preference summary: text for sync all confirm dialog --> 347 <string name="preference_plus_sync_all_prompt_text">Uploading photos and videos that have not already been uploaded from your phone to a private album on the web can take a while, but will be done in the background. Are you sure you want to continue?</string> 348 349 <!-- Preference summary: Yes button text for sync all confirm dialog --> 350 <string name="preference_plus_sync_all_prompt_yes">Yes</string> 351 352 <!-- Preference summary: No button text for sync all confirm dialog --> 353 <string name="preference_plus_sync_all_prompt_no">No</string> 354 355 </resources> 356