mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-28 21:33:53 +01:00
photo picker: toggle behaviour of switch and adjust phrasing for better UX
The enable state used to trigger the GET_CONTENT intent. Alter the flow such that the GET_CONTENT intent is triggered when switch is disabled. Adjust default value and other parts of code naming to reflect this. The existing phrasing had a lot of tech jargon in it which could result in the non-technical users being confused. Tweak the phrasing to avoid such phrases. The documentation in the website could also use some follow up improvements.
This commit is contained in:
parent
95b4c3be82
commit
744381fa24
5 changed files with 25 additions and 24 deletions
|
|
@ -440,9 +440,9 @@ Upload your first media by tapping on the add button.</string>
|
|||
<string name="ends_on">Ends on:</string>
|
||||
<string name="display_campaigns">Display campaigns</string>
|
||||
<string name="display_campaigns_explanation">See the ongoing campaigns</string>
|
||||
<string name="get_content_photo_picker_title">Use GET_CONTENT photo picker</string>
|
||||
<string name="get_content_photo_picker_explanation">Disable if your pictures get uploaded without location</string>
|
||||
<string name="location_loss_warning">Please make sure that this new Android picker does not strip location from your pictures.</string>
|
||||
<string name="open_document_photo_picker_title">Use document based photo picker</string>
|
||||
<string name="open_document_photo_picker_explanation">The new Android photo picker has the potential to strip location information. Enable if you seem to be using it.</string>
|
||||
<string name="location_loss_warning">Turning this off could trigger the new Android photo picker. It has potential to strip location information.\n\nTap on \'Read more\' for more information.</string>
|
||||
|
||||
<string name="nearby_campaign_dismiss_message">You won\'t see the campaigns anymore. However, you can re-enable this notification in Settings if you wish.</string>
|
||||
<string name="this_function_needs_network_connection">This function requires network connection, please check your connection settings.</string>
|
||||
|
|
|
|||
|
|
@ -72,10 +72,10 @@
|
|||
android:title="@string/display_campaigns" />
|
||||
|
||||
<SwitchPreference
|
||||
android:defaultValue="false"
|
||||
android:key="getContentPhotoPickerPref"
|
||||
android:summary="@string/get_content_photo_picker_explanation"
|
||||
android:title="@string/get_content_photo_picker_title"/>
|
||||
android:defaultValue="true"
|
||||
android:key="openDocumentPhotoPickerPref"
|
||||
android:summary="@string/open_document_photo_picker_explanation"
|
||||
android:title="@string/open_document_photo_picker_title"/>
|
||||
</PreferenceCategory>
|
||||
|
||||
<PreferenceCategory
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue