-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Manual-Download-link #17351
base: main
Are you sure you want to change the base?
Manual-Download-link #17351
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,23 @@ | |
app:layout_constraintTop_toBottomOf="@id/download_progress" | ||
android:visibility="gone" /> | ||
|
||
<android.widget.Button | ||
android:id="@+id/download_from_ankiWeb" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/download_deck_from_AnkiWeb" | ||
android:background="@color/material_blue_500" | ||
android:textColor="@color/white" | ||
android:padding="8dp" | ||
android:layout_marginBottom="24dp" | ||
android:layout_marginStart="24dp" | ||
android:layout_marginEnd="24dp" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintBottom_toTopOf="@id/try_again_deck_download" | ||
android:visibility="gone" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I couldn't see on the gif, but I'd expect this to either be a material 'text button', or be underline so a user knows it's a link There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
/> | ||
|
||
<android.widget.Button | ||
android:id="@+id/cancel_shared_decks_download" | ||
android:layout_width="match_parent" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -268,6 +268,7 @@ | |
<string name="percentage">%s%%</string> | ||
|
||
<string name="download_deck">Download deck</string> | ||
<string name="download_deck_from_AnkiWeb">Download deck from AnkiWeb</string> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not fan of this phrasing to be honest. I can't imagine that the average user would know what ankiweb is. And even if they knew, how does it differ from what they did? After all, we were already on ankiweb website |
||
<string name="try_again">Try Again</string> | ||
<string name="cancel_download">Cancel download</string> | ||
<string name="cancel_download_question_title">Cancel download?</string> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you remove this line? That's not wrong, but I admit I'd have not expected to see changes in part of the code you didn't touch.