attrs.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <declare-styleable name="ActionEditText">
  4. <attr name="optionOneString" format="string" />
  5. <attr name="optionOneColor" format="color" />
  6. <attr name="optionTwoString" format="string" />
  7. <attr name="optionTwoColor" format="color" />
  8. <attr name="onBadgeClick" format="string" />
  9. </declare-styleable>
  10. <string-array name="pref_behaviour_entries" translatable="false">
  11. <item>@string/pref_behaviour_entries_keep_file</item>
  12. <item>@string/pref_behaviour_entries_move</item>
  13. <item>@string/pref_behaviour_entries_delete_file</item>
  14. </string-array>
  15. <string-array name="pref_behaviour_entryValues" translatable="false">
  16. <item>LOCAL_BEHAVIOUR_FORGET</item>
  17. <item>LOCAL_BEHAVIOUR_MOVE</item>
  18. <item>LOCAL_BEHAVIOUR_DELETE</item>
  19. </string-array>
  20. <string-array name="upload_files_behaviour" translatable="false">
  21. <item>@string/uploader_upload_files_behaviour_move_to_nextcloud_folder</item>
  22. <item>@string/uploader_upload_files_behaviour_only_upload</item>
  23. <item>@string/uploader_upload_files_behaviour_upload_and_delete_from_source</item>
  24. </string-array>
  25. </resources>