Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <info@niedermann.it>2024-01-16 11:45:14 +0300
committerStefan Niedermann <info@niedermann.it>2024-01-16 11:45:14 +0300
commitb5dd1dfa855eeee347d5206c55666afe22660034 (patch)
tree4eb397f53ac8b500d09def8d9213b3e461b89e10
parent976308dd0f67af6d3af704df1d7b218c95f044c8 (diff)
chore(done): Remove unused resources
Signed-off-by: Stefan Niedermann <info@niedermann.it>
-rw-r--r--app/src/main/res/animator/appbar_elevation_off.xml9
-rw-r--r--app/src/main/res/animator/appbar_elevation_on.xml11
-rw-r--r--app/src/main/res/drawable-hdpi/ic_splash_screen.pngbin1235 -> 0 bytes
-rw-r--r--app/src/main/res/drawable-mdpi/ic_splash_screen.pngbin827 -> 0 bytes
-rw-r--r--app/src/main/res/drawable-xhdpi/ic_splash_screen.pngbin2542 -> 0 bytes
-rw-r--r--app/src/main/res/drawable-xxhdpi/ic_splash_screen.pngbin4045 -> 0 bytes
-rw-r--r--app/src/main/res/drawable-xxxhdpi/ic_splash_screen.pngbin4276 -> 0 bytes
-rw-r--r--app/src/main/res/drawable/bottom_sheet_rounded.xml9
-rw-r--r--app/src/main/res/drawable/circle.xml8
-rw-r--r--app/src/main/res/drawable/ic_format_paint_grey600_24dp.xml5
-rw-r--r--app/src/main/res/drawable/splash_screen.xml12
-rw-r--r--app/src/main/res/menu/archived_card_menu.xml13
-rw-r--r--app/src/main/res/values/strings.xml22
13 files changed, 0 insertions, 89 deletions
diff --git a/app/src/main/res/animator/appbar_elevation_off.xml b/app/src/main/res/animator/appbar_elevation_off.xml
deleted file mode 100644
index d24dcb340..000000000
--- a/app/src/main/res/animator/appbar_elevation_off.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android">
- <item>
- <objectAnimator
- android:propertyName="elevation"
- android:valueTo="0dp"
- android:valueType="floatType" />
- </item>
-</selector>
diff --git a/app/src/main/res/animator/appbar_elevation_on.xml b/app/src/main/res/animator/appbar_elevation_on.xml
deleted file mode 100644
index 6bd52cf3b..000000000
--- a/app/src/main/res/animator/appbar_elevation_on.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<selector xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- tools:ignore="PrivateResource">
- <item>
- <objectAnimator
- android:propertyName="elevation"
- android:valueTo="@dimen/design_appbar_elevation"
- android:valueType="floatType" />
- </item>
-</selector>
diff --git a/app/src/main/res/drawable-hdpi/ic_splash_screen.png b/app/src/main/res/drawable-hdpi/ic_splash_screen.png
deleted file mode 100644
index 070efc396..000000000
--- a/app/src/main/res/drawable-hdpi/ic_splash_screen.png
+++ /dev/null
Binary files differ
diff --git a/app/src/main/res/drawable-mdpi/ic_splash_screen.png b/app/src/main/res/drawable-mdpi/ic_splash_screen.png
deleted file mode 100644
index 0a3717448..000000000
--- a/app/src/main/res/drawable-mdpi/ic_splash_screen.png
+++ /dev/null
Binary files differ
diff --git a/app/src/main/res/drawable-xhdpi/ic_splash_screen.png b/app/src/main/res/drawable-xhdpi/ic_splash_screen.png
deleted file mode 100644
index bfe6dca49..000000000
--- a/app/src/main/res/drawable-xhdpi/ic_splash_screen.png
+++ /dev/null
Binary files differ
diff --git a/app/src/main/res/drawable-xxhdpi/ic_splash_screen.png b/app/src/main/res/drawable-xxhdpi/ic_splash_screen.png
deleted file mode 100644
index c34788f0e..000000000
--- a/app/src/main/res/drawable-xxhdpi/ic_splash_screen.png
+++ /dev/null
Binary files differ
diff --git a/app/src/main/res/drawable-xxxhdpi/ic_splash_screen.png b/app/src/main/res/drawable-xxxhdpi/ic_splash_screen.png
deleted file mode 100644
index 32c45e466..000000000
--- a/app/src/main/res/drawable-xxxhdpi/ic_splash_screen.png
+++ /dev/null
Binary files differ
diff --git a/app/src/main/res/drawable/bottom_sheet_rounded.xml b/app/src/main/res/drawable/bottom_sheet_rounded.xml
deleted file mode 100644
index ba266ed32..000000000
--- a/app/src/main/res/drawable/bottom_sheet_rounded.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="rectangle">
- <solid android:color="?attr/colorSurface" />
- <corners
- android:topLeftRadius="16dp"
- android:topRightRadius="16dp" />
-
-</shape> \ No newline at end of file
diff --git a/app/src/main/res/drawable/circle.xml b/app/src/main/res/drawable/circle.xml
deleted file mode 100644
index 8a1da5d66..000000000
--- a/app/src/main/res/drawable/circle.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="ring"
- android:innerRadiusRatio="2.5"
- android:thickness="4dp"
- android:useLevel="true">
- <solid android:color="@color/defaultBrand" />
-</shape> \ No newline at end of file
diff --git a/app/src/main/res/drawable/ic_format_paint_grey600_24dp.xml b/app/src/main/res/drawable/ic_format_paint_grey600_24dp.xml
deleted file mode 100644
index a2308a55f..000000000
--- a/app/src/main/res/drawable/ic_format_paint_grey600_24dp.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<vector android:autoMirrored="true" android:height="24dp"
- android:tint="#757575" android:viewportHeight="24.0"
- android:viewportWidth="24.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
- <path android:fillColor="#FF000000" android:pathData="M18,4V3c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,0.45 -1,1v4c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1V6h1v4H9v11c0,0.55 0.45,1 1,1h2c0.55,0 1,-0.45 1,-1v-9h8V4h-3z"/>
-</vector>
diff --git a/app/src/main/res/drawable/splash_screen.xml b/app/src/main/res/drawable/splash_screen.xml
deleted file mode 100644
index d22531b3f..000000000
--- a/app/src/main/res/drawable/splash_screen.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item android:drawable="@color/defaultBrand" />
-
- <item>
- <bitmap
- android:gravity="center"
- android:src="@drawable/ic_splash_screen" />
- </item>
-
-</layer-list> \ No newline at end of file
diff --git a/app/src/main/res/menu/archived_card_menu.xml b/app/src/main/res/menu/archived_card_menu.xml
deleted file mode 100644
index 12448e691..000000000
--- a/app/src/main/res/menu/archived_card_menu.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<menu xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto">
- <item
- android:id="@+id/action_card_dearchive"
- android:title="@string/action_card_dearchive"
- app:showAsAction="never" />
-
- <item
- android:id="@+id/action_card_delete"
- android:title="@string/action_card_delete"
- app:showAsAction="never" />
-</menu>
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 5d4bc24e4..84b93bb3a 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -5,7 +5,6 @@
<string name="navigation_drawer_close">Close navigation drawer</string>
<string name="hint_search_deck">Search deck</string>
- <string name="simple_boards">Boards</string>
<string name="simple_add">Add</string>
<string name="simple_save">Save</string>
<string name="simple_more">More</string>
@@ -16,11 +15,8 @@
<string name="simple_error">Error</string>
<string name="simple_exception">Exception</string>
<string name="simple_close">Close</string>
- <string name="simple_open">Open</string>
- <string name="simple_switch">Switch</string>
<string name="simple_filter">Filter</string>
<string name="simple_completed">Completed</string>
- <string name="simple_overdue">Overdue</string>
<string name="simple_clear">Clear</string>
<string name="simple_discard">Discard</string>
<string name="simple_update">Update</string>
@@ -33,7 +29,6 @@
<string name="simple_select">Select</string>
<string name="simple_comment">Comment</string>
<string name="simple_disabled">disabled</string>
- <string name="simple_copied">Copied</string>
<string name="simple_archive">Archive</string>
<string name="simple_unassigned">Unassigned</string>
<string name="hint_error_appeared">An error appeared</string>
@@ -123,9 +118,7 @@
<string name="no_files_attached_to_this_card">There are no files attached to this card.</string>
<string name="attachments">Attachments</string>
<string name="no_cards">No cards yet</string>
- <string name="no_account">No account configured</string>
<string name="account_already_added">The account %1$s has already been added</string>
- <string name="account_is_getting_imported">Account is getting imported</string>
<string name="not_synced_yet">Not synced yet</string>
<string name="no_lists_yet">No lists yet</string>
<string name="do_you_want_to_save_your_changes">Do you want to save your changes?</string>
@@ -141,11 +134,9 @@
</plurals>
<string name="add_a_new_list_using_the_button">Add a new list using the + button</string>
<string name="add_a_new_card_using_the_button">Add a new card using the + button</string>
- <string name="update_deck">Update Deck web app</string>
<string name="deck_outdated_please_update">Your Deck web app version is too old (%1$s). Please update to use this Android app as client.</string>
<string name="delete_board_message">This will permanently delete this board including all lists and cards.</string>
<string name="settings_theme_title">Theme</string>
- <string name="settings_branding_title">Branding</string>
<string name="settings_compact_title">Compact mode</string>
<string name="settings_cover_images_title">Cover images</string>
<string name="settings_debugging">Debug logs</string>
@@ -181,7 +172,6 @@
<string name="provide_at_least_a_title_or_description">Provide at least a title or description</string>
<string name="welcome_text">Welcome to %1$s</string>
<string name="welcome_text_further_accounts">Add another account</string>
- <string name="maintenance_mode_explanation">The server %1$s is currently in maintenance mode. Please contact your administrator or try later again.</string>
<string name="share_add_to_card">Add to card</string>
<string name="share_success">Successfully added %1$s to %2$s</string>
<string name="add_comment">Add comment</string>
@@ -190,7 +180,6 @@
<string name="no_boards">No boards yet</string>
<string name="add_a_new_board_using_the_button">Add a new board using the + button</string>
<string name="choose_board">Choose board</string>
- <string name="choose_list">Choose list</string>
<string name="task_count">%1$s/%2$s</string>
<string name="open_in_browser">Open in browser</string>
<string name="updating_card">Updating card…</string>
@@ -206,13 +195,8 @@
<string name="filter_month">Next 30 days</string>
<string name="filter_no_due">No due date</string>
<string name="filter_later">Later</string>
- <string name="filter_by_tag">Filter by tag</string>
- <string name="filter_by_assigned_user">Filter by assigned user</string>
- <string name="filter_by_duedate">Filter by due date</string>
<string name="archived_cards">Archived cards</string>
- <string name="action_card_dearchive">Undo card archiving</string>
- <string name="action_archived_cards">Browse archived cards</string>
<string name="attachment_already_exists">Attachment already exists</string>
<string name="pick_custom_color">Pick custom color</string>
<string name="manage_tags">Manage tags</string>
@@ -233,7 +217,6 @@
<string name="error_revoking_ac">Error while revoking the access for %1$s</string>
<string name="error_create_label">Error while creating label %1$s</string>
<string name="maintenance_mode">Server is in maintenance mode</string>
- <string name="server_error">Server error</string>
<string name="error_edit_activity_killed_by_android">Android finished the edit mode because it needed more system resources for other apps.</string>
<string name="error_dialog_title">Oh no - What now? 🙁</string>
@@ -300,10 +283,8 @@
<string name="card_does_not_yet_exist">Card does not yet exist in Deck</string>
<string name="widget_stack_title">List</string>
- <string name="widget_filter_title">Filter</string>
<string name="widget_stack_header_icon">Widget header icon</string>
<string name="widget_placeholder_icon">Widget placeholder icon</string>
- <string name="select_stack">Select list</string>
<string name="project_type_deck_board">Deck board</string>
<string name="project_type_deck_card">Deck card</string>
<string name="project_type_file">File</string>
@@ -321,9 +302,6 @@
<string name="simple_clone">Clone</string>
<string name="user_avatar">User avatar</string>
<string name="simple_unassign">Unassign</string>
- <string name="simple_contact">Contact</string>
- <string name="simple_file">File</string>
- <string name="simple_camera">Camera</string>
<string name="take_photo">Take a photo</string>
<string name="take_photo_switch_camera">Switch camera</string>
<string name="take_photo_toggle_torch">Toggle torch</string>