1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <declare-styleable name="ActionEditText">
- <attr name="optionOneString" format="string" />
- <attr name="optionOneColor" format="color" />
- <attr name="optionTwoString" format="string" />
- <attr name="optionTwoColor" format="color" />
- <attr name="onBadgeClick" format="string" />
- </declare-styleable>
- <string-array name="pref_behaviour_entries" translatable="false">
- <item>@string/pref_behaviour_entries_keep_file</item>
- <item>@string/pref_behaviour_entries_move</item>
- <item>@string/pref_behaviour_entries_delete_file</item>
- </string-array>
- <string-array name="pref_behaviour_entryValues" translatable="false">
- <item>LOCAL_BEHAVIOUR_FORGET</item>
- <item>LOCAL_BEHAVIOUR_MOVE</item>
- <item>LOCAL_BEHAVIOUR_DELETE</item>
- </string-array>
- <string-array name="upload_files_behaviour" translatable="false">
- <item>@string/uploader_upload_files_behaviour_move_to_nextcloud_folder</item>
- <item>@string/uploader_upload_files_behaviour_only_upload</item>
- <item>@string/uploader_upload_files_behaviour_upload_and_delete_from_source</item>
- </string-array>
- </resources>
|