Skip to content

Commit

Permalink
Fix typo (#11)
Browse files Browse the repository at this point in the history
* Fix typo

* Update title.txt

* Update BootReciever.kt

* Update ContactUtil.kt

* Update BluetoothBroadcastReciever.kt

* Update strings.xml
  • Loading branch information
licaon-kter authored Apr 29, 2024
1 parent b4a0ed8 commit 6fd5cda
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

---
# Timed Silence
### Dont let your phone rattle you!
### Don't let your phone rattle you!

---

Expand Down Expand Up @@ -99,4 +99,4 @@ This app is released under the terms of the [GPLv3 license](https://github.com/n

### Libraries
- [Balloon - Tooltips](https://github.com/skydoves/Balloon) - This helps us to show you detailed information, that you might not need on a first glance.
- [AppIntro](https://github.com/AppIntro/AppIntro) - This library is responsible for the easy-to-use introduction to the app!
- [AppIntro](https://github.com/AppIntro/AppIntro) - This library is responsible for the easy-to-use introduction to the app!
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ContactUtil(private var mContext: Context) {
val contactList = arrayListOf<Contact>()

if(!PermissionManager(mContext).grantedContacts()) {
e("We dont have access to the contacts!")
e("We don't have access to the contacts!")
return contactList
}

Expand Down Expand Up @@ -85,4 +85,4 @@ class ContactUtil(private var mContext: Context) {
return photo?: default
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ class BluetoothBroadcastReciever : BroadcastReceiver(){
volumeHandler.ignoreMusicPlaying(true)
volumeHandler.setVolumeStateAndApply(StateGenerator(context).stateAt(System.currentTimeMillis()))
} else {
Log.e(TAG(), "BluetoothBroadcastReciever: No next alarm scheduled, dont update!")
Log.e(TAG(), "BluetoothBroadcastReciever: No next alarm scheduled, don't update!")
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ class BootReciever : BroadcastReceiver(){
Trigger(context).createAlarmIntime()
return
}
Log.e(TAG(), "BootReciever: Dont check.")
Log.e(TAG(), "BootReciever: Don't check.")
}
}


}
}
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<string name="action_settings">Settings</string>
<string name="no_next_time_set">Not Set</string>
<string name="cancel">Cancel</string>
<string name="volume_setting_unset">Dont Change</string>
<string name="volume_setting_unset">Don't Change</string>
<string name="volume_setting_silent">Silent</string>
<string name="volume_setting_loud">Loud</string>
<string name="volume_setting_vibrate">Vibrate</string>
Expand Down Expand Up @@ -40,7 +40,7 @@
<string name="back">Back</string>
<string name="schedule_dialog_save">Save</string>
<string name="friday">Friday</string>
<string name="volume_while_headset_connected">Dont change volume while Headset connected</string>
<string name="volume_while_headset_connected">Don't change volume while Headset connected</string>
<string name="volume_settings">Volume</string>
<string name="volume_settings_media">Media</string>
<string name="volume_settings_notifications">Notifications</string>
Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/title.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Timed Silence - Dont let your phone rattle you!
Timed Silence - Don't let your phone rattle you!

0 comments on commit 6fd5cda

Please sign in to comment.