all: cleanup

This commit is contained in:
Alexander Capehart 2023-11-11 23:22:46 -07:00
parent ce5b9e35c7
commit d926e19819
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
6 changed files with 6 additions and 6 deletions

View file

@ -106,7 +106,6 @@ class QueueViewModel @Inject constructor(private val playbackManager: PlaybackSt
*
* @param adapterIndex The index of the queue item to play. Does nothing if the index is out of
* range.
* @param playIfPaused Start playing after switching even if it currently is paused
*/
fun goto(adapterIndex: Int) {
if (adapterIndex !in queue.value.indices) {

View file

@ -26,14 +26,14 @@ import timber.log.Timber
*
* @param obj The object to log.
*/
inline fun Any.logD(obj: Any?) = logD("$obj")
inline fun logD(obj: Any?) = logD("$obj")
/**
* Log a string message to the debug channel. Automatically handles tags.
*
* @param msg The message to log.
*/
inline fun Any.logD(msg: String) {
inline fun logD(msg: String) {
if (BuildConfig.DEBUG && !copyleftNotice()) {
Timber.d(msg)
}

View file

@ -205,7 +205,7 @@
<string name="clr_deep_blue">כחול עמוק</string>
<string name="clr_grey">אפור</string>
<string name="clr_dynamic">דינמי</string>
<string name="fmt_indexing">המוזיקה שלך בטעינה... (%1$d/%2$d)</string>
<string name="fmt_indexing">המוזיקה שלך בטעינה (%1$d/%2$d)</string>
<string name="fmt_disc_no">דיסק %d</string>
<string name="set_dirs_desc">ניהול המקומות שמהם תיטען מוזיקה</string>
<string name="def_song_count">אין שירים</string>

View file

@ -245,6 +245,7 @@
<item quantity="one">%d atlikėjas (-a)</item>
<item quantity="few">%d atlikėjai</item>
<item quantity="other">%d atlikėjų</item>
<item quantity="many">%d atlikėjų</item>
</plurals>
<string name="set_rescan">Perskenuoti muziką</string>
<string name="set_rescan_desc">Išvalyti žymių talpyklą ir pilnai perkrauti muzikos biblioteką (lėčiau, bet labiau išbaigta)</string>

View file

@ -1,2 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<resources></resources>
<resources />

View file

@ -191,7 +191,7 @@
<item quantity="other">%d albumov</item>
</plurals>
<string name="lbl_disc">Disk</string>
<string name="fmt_indexing">Nalaganje vaše glasbene knjižnice... (%1$d/%2$d)</string>
<string name="fmt_indexing">Nalaganje vaše glasbene knjižnice (%1$d/%2$d)</string>
<string name="desc_clear_search">Počisti iskalno poizvedbo</string>
<string name="lbl_sort_asc">Naraščajoče</string>
<string name="clr_pink">Roza</string>