Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BrayanDSO committed Dec 25, 2024
1 parent b01b109 commit bf82bab
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AnkiDroid/src/main/res/values/02-strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ opening the system text to speech settings fails">
<string name="start_recording">Record</string>
<string name="stop_recording">Stop</string>
<string name="play_recording">Play</string>
<string name="next_recording">Next</string>
<string name="next_recording" comment="Description of a button to go to the next recording">Next</string>

<!-- AlertDialog in the deleteCardTemplate -->
<string name="orphan_note_title">Cannot Delete Card Type</string>
Expand Down
2 changes: 1 addition & 1 deletion AnkiDroid/src/main/res/values/18-standard-models.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

<!--Fields-->
<string name="front_field_name" maxLength="28">Front</string>
<string name="back_field_name" maxLength="28">Back</string>
<string name="back_field_name" maxLength="28" comment="Name of the back field of a card">Back</string>
</resources>
Original file line number Diff line number Diff line change
Expand Up @@ -447,15 +447,13 @@ class ReviewerKeyboardInputTest : RobolectricTest() {
fun displayingAnswer(): KeyboardInputTestReviewer {
val keyboardInputTestReviewer = KeyboardInputTestReviewer()
displayAnswer = true
keyboardInputTestReviewer.processor.setup()
return keyboardInputTestReviewer
}

@CheckResult
fun displayingQuestion(): KeyboardInputTestReviewer {
val keyboardInputTestReviewer = KeyboardInputTestReviewer()
displayAnswer = false
keyboardInputTestReviewer.processor.setup()
return keyboardInputTestReviewer
}
}
Expand Down

0 comments on commit bf82bab

Please sign in to comment.