photo-android/common/res/values/strings.xml
Eugene Popovich 02de9e31f0 Some lint error fixes
Trovebox-Android-Common
- GuiUtils: fixed validateBasicTextData methods to add required string
parameter when requesting a resource
- res/layout/action_mode_sync.xml: removed duplicate xmlns:android
declaration
- res/layout/action_mode_sync2.xml: removed duplicate xmlns:android
declaration
- res/layout/fragment_photo_details.xml: removed image_details id
duplicate
- res/layout/fragment_sync_select_photos.xml: remved xmlns:app
declaration
- res/values/strings.xml: fixed notification_upload_multiple_title
constant
- res/values/styles.xml: fixed textSize attribute to be in sp units for
the button_text and TextTitle styles declaration
- res/values-ru/strings.xml: added few and many string plurals to the
sync_upload_selected_confirmation  and number_of_items_selected

Trovebox-Android-App
- ImageFragment: added FILL_PARENT constant usage for the API level 7
devicesto the onCreateView method
- Peferences: updated PREFERENCES_MODE constant to be MODE_PRIVATE
- res/layout/activity_account_signup.xml: removed
- res/layout/activity_upload.xml: remved app namespace delcaration
- res/layout/fragment_profile.xml: remved app namespace delcaration
- res/layout/fragment_sync_upload_settings.xml: remved app namespace
delcaration
- res/layout/fragment_tags.xml: added hint for the edit_search field
- res/layout/list_item_newest_photos.xml: removed
- res/values/strings.xml, res/values-ru/strings.xml: added
enter_tags_manually constant
- AndroidManifest.xml: added exported="false" for the UploadsProvider
declaration
2014-03-24 15:18:06 +02:00

98 lines
No EOL
5.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- general -->
<string name="pleaseSpecifyFirst">Please specify %1$s first!</string>
<string name="pleaseEnter">Please enter %1$s.</string>
<string name="noInternetAccess">Internet connection is not available</string>
<string name="upload_limit_reached_message">The free upload limit is reached.</string>
<string name="sync_cleared_message">The sync information has been cleared</string>
<string name="yes">Yes</string>
<string name="no">No</string>
<string name="loading">Loading&#8230;</string>
<!-- Api -->
<string name="api_invalid_token">The password you entered was incorrect</string>
<string name="api_expired_token">This password has expired</string>
<!-- Menu -->
<string name="menu_refresh">Refresh</string>
<!-- Selection Menu -->
<string name="menu_select_all">Select All</string>
<string name="menu_select_none">Select None</string>
<string name="menu_selection">Selection</string>
<string name="menu_filter">Filter</string>
<string name="menu_filter_show_all">Show All</string>
<string name="menu_filter_show_not_uploaded">Show Not Uploaded</string>
<!-- Sync screen -->
<string name="sync_next_button">Next</string>
<string name="sync_previous_button">Back</string>
<string name="sync_please_pick_at_least_one_photo">Please pick at least one photo first!</string>
<string name="sync_show_all">Show all</string>
<string name="sync_uploaded">UPLOADED!</string>
<string name="sync_upload_button">Upload</string>
<string name="sync_uploading_in_background">Sending your photos</string>
<plurals name="sync_upload_selected_confirmation">
<item quantity="zero">Do you want to upload %1$d selected pictures?</item>
<item quantity="one">Do you want to upload %1$d selected picture?</item>
<item quantity="other">Do you want to upload %1$d selected pictures?</item>
</plurals>
<!-- Upload Manager screen -->
<string name="upload_status_uploaded">Sent</string>
<string name="upload_status_uploading">Sending: %1$d%%</string>
<string name="upload_status_error">Error: %1$s</string>
<string name="upload_status_pending">Waiting</string>
<string name="upload_manager_title">Sending list</string>
<string name="upload_manager_menu_cancel">Cancel</string>
<string name="upload_manager_menu_clear">Clear</string>
<!-- Photo details -->
<string name="details_title_and_date_header">%1$s taken at %2$s</string>
<!--
String indicating how many media item(s) is(are) selected
eg. 1 selected [CHAR LIMIT=30]
-->
<plurals name="number_of_items_selected">
<item quantity="zero">%1$d selected</item>
<item quantity="one">%1$d selected</item>
<item quantity="other">%1$d selected</item>
</plurals>
<!-- Notifications -->
<string name="notification_uploading_photo">Uploading %1$s</string>
<string name="notification_upload_failed_title">Upload failed</string>
<string name="notification_upload_failed_title_with_reason">Upload failed: %1$s</string>
<string name="notification_upload_failed_text">%1$s</string>
<string name="notification_upload_failed_multiple_title">Upload failed</string>
<string name="notification_upload_failed_multiple_text">Failed: %1$d photos</string>
<string name="notification_upload_failed_multiple_details">Failed details</string>
<string name="notification_upload_failed_multiple_detail"><![CDATA[<b>%1$s</b> failed]]></string>
<string name="notification_upload_failed_multiple_detail_with_reason"><![CDATA[<b>%1$s</b> failed: %2$s]]></string>
<string name="notification_upload_success_title">Upload finished</string>
<string name="notification_upload_skipped_title">Upload skipped. Found same photo on the server.</string>
<string name="notification_upload_success_text">%1$s</string>
<string name="notification_upload_multiple_title">Successful upload</string>
<string name="notification_upload_multiple_text">Uploaded: %1$d; skipped: %2$d</string>
<string name="notification_upload_multiple_details">Upload details</string>
<string name="notification_upload_multiple_detail_skipped"><![CDATA[<b>%1$s</b> skipped]]></string>
<string name="notification_upload_multiple_detail_done"><![CDATA[<b>%1$s</b> done]]></string>
<!-- Errors -->
<string name="errorCouldNotStoreDownloadablePhotoNotEnoughSpace">Couldn\'t store downloadable photo on disk. Not enough free space.</string>
<string name="errorNotLoggedIn">You are not yet logged in.</string>
<string name="errorCouldNotValidateUploadToken">Could not validate upload token.</string>
<string name="errorSpecifiedUrlIsInvalid">The specified URL is invalid</string>
<string name="errorCouldNotLoadNextPhotosInList">Could not load next photos in list</string>
<string name="errorCouldNotGetPhoto">Could not get photo</string>
<string name="errorCouldNotDeletePhoto">Could not delete photo</string>
<string name="errorCouldNotUpdatePhoto">Could not update photo details</string>
<string name="errorCouldNotGetShareToken">Could not get share token</string>
<string name="unknown_error_with_code">Unknown error with code %1$d</string>
<string name="unknown_error_try_again">We ran into an unknown problem. Please try again.</string>
</resources>