Skip to content

Commit

Permalink
Renamed 'quitButton' string to just 'quit'
Browse files Browse the repository at this point in the history
  • Loading branch information
AL-Session committed Aug 5, 2024
1 parent 284c485 commit 6c0450b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fun OnboardingBackPressAlertDialog(
},
buttons = listOf(
DialogButtonModel(
GetString(stringResource(R.string.quitButton)),
GetString(stringResource(R.string.quit)),
color = LocalColors.current.danger,
onClick = quit
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ fun PreviewSimpleDialog(){
text = stringResource(R.string.onboardingBackAccountCreation),
buttons = listOf(
DialogButtonModel(
GetString(stringResource(R.string.quitButton)),
GetString(stringResource(R.string.quit)),
color = LocalColors.current.danger,
onClick = { }
),
Expand Down
2 changes: 1 addition & 1 deletion libsession/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@
<string name="qrScan">Scan QR Code</string>
<string name="qrView">View QR</string>
<string name="qrYoursDescription">Friends can message you by scanning your QR code.</string>
<string name="quitButton">Quit</string>
<string name="quit">Quit</string>
<string name="read">Read</string>
<string name="readReceipts">Read Receipts</string>
<string name="readReceiptsDescription">Show read receipts for all messages you send and receive.</string>
Expand Down

0 comments on commit 6c0450b

Please sign in to comment.