Sort constants alphabetically (case-insensitive)

This commit is contained in:
Davide De Rosa 2019-05-17 08:08:09 +02:00
parent 1fa95ce7f8
commit a17a3f7e48
1 changed files with 6 additions and 6 deletions

View File

@ -155,9 +155,9 @@ public class AppConstants {
}
public static let authorByLanguage: [String: String] = [
"de": "Christian Lederer",
"it": "Davide De Rosa",
"pt-BR": "Helder Santana",
"de": "Christian Lederer",
"ru": "Alexander Korobynikov"
]
}
@ -251,6 +251,11 @@ public class AppConstants {
}
public static let all: [License] = [
License(
"lzo",
"GPLv2",
"https://www.gnu.org/licenses/gpl-2.0.txt"
),
License(
"MBProgressHUD",
"MIT",
@ -280,11 +285,6 @@ public class AppConstants {
"SwiftyBeaver",
"MIT",
"https://raw.githubusercontent.com/SwiftyBeaver/SwiftyBeaver/master/LICENSE"
),
License(
"lzo",
"GPLv2",
"https://www.gnu.org/licenses/gpl-2.0.txt"
)
]