Skip to content

Commit

Permalink
Merge pull request #900 from Dygmalab/fixTypos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
alexpargon authored Oct 7, 2024
2 parents 02c2666 + 2e52860 commit b3e4460
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Bazecor",
"productName": "Bazecor",
"version": "1.5.1",
"version": "1.5.2",
"description": "Bazecor desktop app",
"private": true,
"repository": {
Expand Down
5 changes: 3 additions & 2 deletions src/renderer/i18n/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ const English = {
dialogBluetoothExperimentalTitle: "IMPORTANT",
dialogBluetoothExperimentalDescription:
"Bazecor over Bluetooth is still an experimental feature; it doesn't work on all computers yet, and changes might not always be saved correctly to your keyboard.",
dialogBluetoothExperimentalDisclaimer: "If you experience these issues, please connect your neuron via USB to your computer.",
dialogBluetoothExperimentalDisclaimer: "If you experience these issues, please connect your neuron via USB to the computer.",
ReOrderList: "Re-order list",
},
keyboardSelect: {
Expand Down Expand Up @@ -798,8 +798,9 @@ const English = {
errorDuringProcessTitle: "Firmware update error!",
errorDuringProcessDescription: "Something went wrong! Please, retry the flashing procedure. 🫠",
flashCardTitle1: "Press and hold the top left key to start the firmware update.",
flashCardTitleDefy1: "Don't hold the key, just press & release to start the firmware update.",
flashCardTitleDefy1: "Tap the Top Left Key to start the firmware update.",
flashCardTitle2: "Release the key when the software prompts",
flashCardTitleDefy2: "Don't hold the key, just press & release",
flashCardHelp: "Why do I need to press and hold a key when updating the device firmware?",
flashCardHelpDefy: "Why do I need to press a key when updating the device firmware?",
flashCardHelpTooltip:
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/modules/Firmware/FirmwareProgressStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ const FirmwareProgressStatus = (props: FirmwareProgressStatusType) => {
<Heading headingLevel={4} renderAs="paragraph-sm">
{deviceProduct === "Raise"
? i18n.firmwareUpdate.texts.flashCardTitle2
: i18n.firmwareUpdate.texts.progressCardTitleDefy2}
: i18n.firmwareUpdate.texts.flashCardTitleDefy2}
</Heading>
) : (
<Heading headingLevel={4} renderAs="paragraph-sm">
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/modules/Firmware/FirmwareUpdateProcess.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function FirmwareUpdateProcess(props: FirmwareUpdateProcessProps) {
}, [nextBlock, state]);

const stepsDefy = [
{ step: 1, title: i18n.firmwareUpdate.texts.flashCardTitle1, description: i18n.firmwareUpdate.texts.flashCardTitle2 },
{ step: 1, title: i18n.firmwareUpdate.texts.flashCardTitle1, description: i18n.firmwareUpdate.texts.flashCardTitleDefy2 },
{
step: 2,
title: i18n.firmwareUpdate.texts.progressCardStatusDefy1,
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/modules/Settings/RFSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function RFSettings(props: RFSettingsProps) {
</div>
<div className="rounded-sm bg-gray-100/20 dark:bg-gray-900/20 py-3 px-3 mt-3">
<p className="flex flex-row gap-2 items-center text-xs text-gray-300 dark:text-gray-100">
<IconThunder /> Consider minimize radio signal strength for power savings.
<IconThunder /> Consider reducing radio signal strength for power savings.
</p>
</div>
</CardContent>
Expand Down

0 comments on commit b3e4460

Please sign in to comment.