-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
3.0.6
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Bucket | ||
uuid = "B2CDFE57-799F-4932-9721-8AE688FFD3FD" | ||
type = "0" | ||
version = "2.0"> | ||
</Bucket> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// The MIT License (MIT) | ||
// Copyright © 2022 Egor Badmaev | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
|
||
/// An object that represents category of emojis. | ||
struct Category: Decodable { | ||
/// Type-safe category type. | ||
let type: CategoryType | ||
/// Identifiers of emojis. | ||
let emojis: [String] | ||
|
||
enum CodingKeys: String, CodingKey { | ||
case type = "id" | ||
case emojis | ||
} | ||
} | ||
|
||
/// Type-safe representation of emoji categories. | ||
enum CategoryType: String, Decodable, CaseIterable { | ||
case people | ||
case nature | ||
case foods | ||
case activity | ||
case places | ||
case objects | ||
case symbols | ||
case flags | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// The MIT License (MIT) | ||
// Copyright © 2022 Egor Badmaev | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
|
||
/// An object that represents skin tones for emojis. | ||
struct Skin: Decodable { | ||
/// Unicode. | ||
let unified: String | ||
/// Emoji as symbol. For example: 😄 | ||
let native: String | ||
} |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"emotionsAndPeople" = "SMILEYS & MENSCHEN"; | ||
"animalsAndNature" = "TIERE & NATUR"; | ||
"foodAndDrinks" = "ESSEN und TRINKEN"; | ||
"activities" = "AKTIVITÄT"; | ||
"travellingAndPlaces" = "REISEN & ORTE"; | ||
"people" = "SMILEYS & MENSCHEN"; | ||
"nature" = "TIERE & NATUR"; | ||
"foods" = "ESSEN und TRINKEN"; | ||
"activity" = "AKTIVITÄT"; | ||
"places" = "REISEN & ORTE"; | ||
"objects" = "OBJEKTE"; | ||
"symbols" = "SYMBOLE"; | ||
"flags" = "FLAGGEN"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"emotionsAndPeople" = "SMILEYS & PEOPLE"; | ||
"animalsAndNature" = "ANIMALS & NATURE"; | ||
"foodAndDrinks" = "FOOD & DRINK"; | ||
"activities" = "ACTIVITY"; | ||
"travellingAndPlaces" = "TRAVEL & PLACES"; | ||
"people" = "SMILEYS & PEOPLE"; | ||
"nature" = "ANIMALS & NATURE"; | ||
"foods" = "FOOD & DRINK"; | ||
"activity" = "ACTIVITY"; | ||
"places" = "TRAVEL & PLACES"; | ||
"objects" = "OBJECTS"; | ||
"symbols" = "SYMBOLS"; | ||
"flags" = "FLAGS"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"emotionsAndPeople" = "SMILEYS ET PERSONNES"; | ||
"animalsAndNature" = "ANIMAUX ET NATURE"; | ||
"foodAndDrinks" = "NOURRITURE ET BOISSONS"; | ||
"activities" = "ACTIVITÉ"; | ||
"travellingAndPlaces" = "VOYAGES ET LIEUX"; | ||
"people" = "SMILEYS ET PERSONNES"; | ||
"nature" = "ANIMAUX ET NATURE"; | ||
"foods" = "NOURRITURE ET BOISSONS"; | ||
"activity" = "ACTIVITÉ"; | ||
"places" = "VOYAGES ET LIEUX"; | ||
"objects" = "OBJETS"; | ||
"symbols" = "SYMBOLES"; | ||
"flags" = "DRAPEAUX"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"emotionsAndPeople" = "स्माइली और लोग"; | ||
"animalsAndNature" = "पशु और प्रकृति"; | ||
"foodAndDrinks" = "खाद्य और पेय"; | ||
"activities" = "गतिविधि"; | ||
"travellingAndPlaces" = "यात्रा और स्थान"; | ||
"people" = "स्माइली और लोग"; | ||
"nature" = "पशु और प्रकृति"; | ||
"foods" = "खाद्य और पेय"; | ||
"activity" = "गतिविधि"; | ||
"places" = "यात्रा और स्थान"; | ||
"objects" = "ऑब्जेक्ट्स"; | ||
"symbols" = "प्रतीक"; | ||
"flags" = "झंडे"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"emotionsAndPeople" = "СМАЙЛИКИ И ЛЮДИ"; | ||
"animalsAndNature" = "ЖИВОТНЫЕ И ПРИРОДА"; | ||
"foodAndDrinks" = "ЕДА И НАПИТКИ"; | ||
"activities" = "АКТИВНОСТЬ"; | ||
"travellingAndPlaces" = "ПУТЕШЕСТВИЯ И МЕСТНОСТИ"; | ||
"people" = "СМАЙЛИКИ И ЛЮДИ"; | ||
"nature" = "ЖИВОТНЫЕ И ПРИРОДА"; | ||
"foods" = "ЕДА И НАПИТКИ"; | ||
"activity" = "АКТИВНОСТЬ"; | ||
"places" = "ПУТЕШЕСТВИЯ И МЕСТНОСТИ"; | ||
"objects" = "ПРЕДМЕТЫ"; | ||
"symbols" = "СИМВОЛЫ"; | ||
"flags" = "ФЛАГИ"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"emotionsAndPeople" = "YÜZ İFADELERİ & İNSANLAR"; | ||
"animalsAndNature" = "HAYVANLAR & DOĞA"; | ||
"foodAndDrinks" = "YİYECEK & İÇECEK"; | ||
"activities" = "ETKİNLİK"; | ||
"travellingAndPlaces" = "SEYAHET & YERLER"; | ||
"people" = "YÜZ İFADELERİ & İNSANLAR"; | ||
"nature" = "HAYVANLAR & DOĞA"; | ||
"foods" = "YİYECEK & İÇECEK"; | ||
"activity" = "ETKİNLİK"; | ||
"places" = "SEYAHET & YERLER"; | ||
"objects" = "NESNELER"; | ||
"symbols" = "SEMBOLLER"; | ||
"flags" = "BAYRAKLAR"; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
"emotionsAndPeople" = "СМАЙЛИКИ Й ЛЮДИ"; | ||
"animalsAndNature" = "ФЛОРА І ФАУНА"; | ||
"foodAndDrinks" = "ЇЖА І НАПОЇ"; | ||
"activities" = "АКТИВНІСТЬ"; | ||
"travellingAndPlaces" = "ПОДОРОЖІ Й МІСЦЯ"; | ||
"people" = "СМАЙЛИКИ Й ЛЮДИ"; | ||
"nature" = "ФЛОРА І ФАУНА"; | ||
"foods" = "ЇЖА І НАПОЇ"; | ||
"activity" = "АКТИВНІСТЬ"; | ||
"places" = "ПОДОРОЖІ Й МІСЦЯ"; | ||
"objects" = "ОБ'ЄКТИ"; | ||
"symbols" = "СИМВОЛИ"; | ||
"flags" = "ПРАПОРИ"; |