Skip to content

Commit 0c30f58

Browse files
committed
compare the items in an incasesensitive way
1 parent 13e34f7 commit 0c30f58

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

app/src/main/java/com/simplemobiletools/filemanager/models/FileDirItem.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class FileDirItem(val path: String, val name: String, val isDirectory: Boolean,
1010
return 1
1111
}
1212

13-
return name.compareTo(other.name)
13+
return name.toLowerCase().compareTo(other.name.toLowerCase())
1414
}
1515

1616
override fun toString(): String {

app/src/main/res/values-de/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<string name="follow_us">Folge uns:</string>
6767
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
6868

69-
<!--License-->
69+
<!-- License -->
7070
<string name="notice">Diese App nutzt die folgenden Drittanbieter Bibliotheken, die mir mein Leben einfacher machen. Vielen Dank.</string>
7171
<string name="third_party_licences">Drittanbieter Lizenzen</string>
7272
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>

app/src/main/res/values-it/strings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@
6060
<string name="email_label">Invia la tua opinione o i tuoi suggerimenti a:</string>
6161
<string name="third_party_licences_underlined"><u>Licenze di terze parti</u></string>
6262
<string name="invite_friends_underlined"><u>Invita amici</u></string>
63-
<string name="share_text">Hey, dai un'occhiata a %1$s su %2$s</string>
63+
<string name="share_text">Hey, dai un\'occhiata a %1$s su %2$s</string>
6464
<string name="invite_via">Invita via</string>
6565
<string name="rate_us_underlined"><u>Dacci un voto sul Play Store</u></string>
6666
<string name="follow_us">Seguici:</string>
6767

68-
<!--License-->
68+
<!-- License -->
6969
<string name="notice">Questa app usa le seguenti librerie di terze parti per semplificarmi la vita. Grazie.</string>
7070
<string name="third_party_licences">Licenze di terze parti</string>
7171

app/src/main/res/values-ja/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<string name="follow_us">フォローしてください:</string>
6767
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
6868

69-
<!--License-->
69+
<!-- License -->
7070
<string name="notice">このアプリは、私の人生を容易にするために、次のサードパーティのライブラリーを使用しています。 ありがとうございます。</string>
7171
<string name="third_party_licences">サードパーティー ライセンス</string>
7272
<string name="butterknife_title"><u>Butter Knife (ビュー インジェクター)</u></string>

app/src/main/res/values-sv/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
<string name="follow_us">Följ oss:</string>
6767
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
6868

69-
<!--License-->
69+
<!-- License -->
7070
<string name="notice">Denna app använder följande tredjepartsbibliotek för att göra mitt liv enklare. Tack.</string>
7171
<string name="third_party_licences">Tredjepartslicenser</string>
7272
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<string name="follow_us">Follow us:</string>
6868
<string name="copyright">v %1$s\nCopyright © Simple Mobile Tools %2$d</string>
6969

70-
<!--License-->
70+
<!-- License -->
7171
<string name="notice">This app uses the following third party libraries to make my life easier. Thank you.</string>
7272
<string name="third_party_licences">Third party licences</string>
7373
<string name="butterknife_title"><u>Butter Knife (view injector)</u></string>

0 commit comments

Comments
 (0)