compare the items in an incasesensitive way
This commit is contained in:
parent
13e34f790d
commit
0c30f58f81
|
@ -10,7 +10,7 @@ class FileDirItem(val path: String, val name: String, val isDirectory: Boolean,
|
|||
return 1
|
||||
}
|
||||
|
||||
return name.compareTo(other.name)
|
||||
return name.toLowerCase().compareTo(other.name.toLowerCase())
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
<string name="follow_us">Folge uns:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!--License-->
|
||||
<!-- License -->
|
||||
<string name="notice">Diese App nutzt die folgenden Drittanbieter Bibliotheken, die mir mein Leben einfacher machen. Vielen Dank.</string>
|
||||
<string name="third_party_licences">Drittanbieter Lizenzen</string>
|
||||
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>
|
||||
|
|
|
@ -60,12 +60,12 @@
|
|||
<string name="email_label">Invia la tua opinione o i tuoi suggerimenti a:</string>
|
||||
<string name="third_party_licences_underlined"><u>Licenze di terze parti</u></string>
|
||||
<string name="invite_friends_underlined"><u>Invita amici</u></string>
|
||||
<string name="share_text">Hey, dai un'occhiata a %1$s su %2$s</string>
|
||||
<string name="share_text">Hey, dai un\'occhiata a %1$s su %2$s</string>
|
||||
<string name="invite_via">Invita via</string>
|
||||
<string name="rate_us_underlined"><u>Dacci un voto sul Play Store</u></string>
|
||||
<string name="follow_us">Seguici:</string>
|
||||
|
||||
<!--License-->
|
||||
<!-- License -->
|
||||
<string name="notice">Questa app usa le seguenti librerie di terze parti per semplificarmi la vita. Grazie.</string>
|
||||
<string name="third_party_licences">Licenze di terze parti</string>
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
<string name="follow_us">フォローしてください:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!--License-->
|
||||
<!-- License -->
|
||||
<string name="notice">このアプリは、私の人生を容易にするために、次のサードパーティのライブラリーを使用しています。 ありがとうございます。</string>
|
||||
<string name="third_party_licences">サードパーティー ライセンス</string>
|
||||
<string name="butterknife_title"><u>Butter Knife (ビュー インジェクター)</u></string>
|
||||
|
|
|
@ -66,7 +66,7 @@
|
|||
<string name="follow_us">Följ oss:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!--License-->
|
||||
<!-- License -->
|
||||
<string name="notice">Denna app använder följande tredjepartsbibliotek för att göra mitt liv enklare. Tack.</string>
|
||||
<string name="third_party_licences">Tredjepartslicenser</string>
|
||||
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
<string name="follow_us">Follow us:</string>
|
||||
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
|
||||
|
||||
<!--License-->
|
||||
<!-- License -->
|
||||
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
|
||||
<string name="third_party_licences">Third party licences</string>
|
||||
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>
|
||||
|
|
Loading…
Reference in New Issue