Add support for localizable Apple emoji category names
This commit is contained in:
@@ -8,17 +8,26 @@
|
||||
import Foundation
|
||||
import OrderedCollections
|
||||
|
||||
public class AppleEmojiCategory: Codable {
|
||||
public class AppleEmojiCategory: Codable, Hashable {
|
||||
public static func == (lhs: AppleEmojiCategory, rhs: AppleEmojiCategory) -> Bool {
|
||||
lhs.name == rhs.name && lhs.emojis == rhs.emojis
|
||||
}
|
||||
|
||||
public func hash(into hasher: inout Hasher) {
|
||||
hasher.combine(name)
|
||||
hasher.combine(emojis)
|
||||
}
|
||||
|
||||
|
||||
public enum Name: String, CaseIterable, Codable {
|
||||
case flags = "Flags"
|
||||
case activity = "Activity"
|
||||
case objects = "Objects"
|
||||
case travelAndPlaces = "Travel & Places"
|
||||
case symbols = "Symbols"
|
||||
case animalsAndNature = "Animals & Nature"
|
||||
case foodAndDrink = "Food & Drink"
|
||||
case smileysAndPeople = "Smileys & People"
|
||||
case flags = "flags"
|
||||
case activity = "activity"
|
||||
case objects = "objects"
|
||||
case travelAndPlaces = "travelAndPlaces"
|
||||
case symbols = "symbols"
|
||||
case animalsAndNature = "animalsAndNature"
|
||||
case foodAndDrink = "foodAndDrink"
|
||||
case smileysAndPeople = "smileysAndPeople"
|
||||
|
||||
public static var orderedCases: [Name] {
|
||||
return allCases.sorted(by: { $0.order < $1.order })
|
||||
@@ -44,6 +53,15 @@ public class AppleEmojiCategory: Codable {
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
||||
public var localizedName: String {
|
||||
NSLocalizedString(
|
||||
self.rawValue,
|
||||
tableName: "EmojiKitLocalizable",
|
||||
bundle: .module,
|
||||
comment: ""
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
public let name: Name
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "الأكثر استخداما";
|
||||
"smileysAndPeople" = "ابتسامات وأشخاص";
|
||||
"animalsAndNature" = "حيوانات وطبيعة";
|
||||
"foodAndDrink" = "طعام وشراب";
|
||||
"activity" = "نشاط";
|
||||
"travelAndPlaces" = "سفر وأماكن";
|
||||
"objects" = "عناصر";
|
||||
"symbols" = "رموز";
|
||||
"flags" = "أعلام";
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ÜS FREQUENT";
|
||||
"smileysAndPeople" = "EMOTICONES I PERSONES";
|
||||
"animalsAndNature" = "ANIMALS I NATURA";
|
||||
"foodAndDrink" = "MENJAR I BEGUDA";
|
||||
"activity" = "ACTIVITATS";
|
||||
"travelAndPlaces" = "VIATGES I LLOCS";
|
||||
"objects" = "OBJECTES";
|
||||
"symbols" = "SÍMBOLS";
|
||||
"flags" = "BANDERES";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ČASTO POUŽÍVANÉ";
|
||||
"smileysAndPeople" = "SMAJLÍCI A LIDÉ";
|
||||
"animalsAndNature" = "ZVÍŘATA A PŘRODA";
|
||||
"foodAndDrink" = "JÍDLO A PITÍ";
|
||||
"activity" = "AKTIVITA";
|
||||
"travelAndPlaces" = "CESTOVÁNÍ A MÍSTA";
|
||||
"objects" = "OBJEKTY";
|
||||
"symbols" = "SYMBOLY";
|
||||
"flags" = "VLAJKY";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "HYPPIGT BRUGTE";
|
||||
"smileysAndPeople" = "SMILEYS OG PERSONER";
|
||||
"animalsAndNature" = "DYR OG NATUR";
|
||||
"foodAndDrink" = "MAD OG DRIKKEVARER";
|
||||
"activity" = "AKTIVITET";
|
||||
"travelAndPlaces" = "REJSER OG STEDER";
|
||||
"objects" = "OBJEKTER";
|
||||
"symbols" = "SYMBOLER";
|
||||
"flags" = "FLAG";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "OFT BENUTZT";
|
||||
"smileysAndPeople" = "SMILEYS & PERSONEN";
|
||||
"animalsAndNature" = "TIERE & NATUR";
|
||||
"foodAndDrink" = "ESSEN & TRINKEN";
|
||||
"activity" = "AKTIVITÄT";
|
||||
"travelAndPlaces" = "REISEN & ORTE";
|
||||
"objects" = "OBJEKTE";
|
||||
"symbols" = "SYMBOLE";
|
||||
"flags" = "FLAGGEN";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ΣΥΧΝΗ ΧΡΗΣΗ";
|
||||
"smileysAndPeople" = "ΦΑΤΣΟΥΛΕΣ ΚΑΙ ΑΤΟΜΑ";
|
||||
"animalsAndNature" = "ΖΩΑ ΚΑΙ ΦΥΣΗ";
|
||||
"foodAndDrink" = "ΦΑΓΗΤΟ ΚΑΙ ΠΟΤΟ";
|
||||
"activity" = "ΔΡΑΣΤΗΡΙΟΤΗΤΑ";
|
||||
"travelAndPlaces" = "ΤΑΞΙΔΙΑ ΚΑΙ ΜΕΡΗ";
|
||||
"objects" = "ANTIKEIMENA";
|
||||
"symbols" = "ΣΥΜΒΟΛΑ";
|
||||
"flags" = "ΣΗΜΑΙΕΣ";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "FREQUENTLY USED";
|
||||
"smileysAndPeople" = "SMILEYS & PEOPLE";
|
||||
"animalsAndNature" = "ANIMALS & NATURE";
|
||||
"foodAndDrink" = "FOOD & DRINK";
|
||||
"activity" = "ACTIVITY";
|
||||
"travelAndPlaces" = "TRAVEL & PLACES";
|
||||
"objects" = "OBJECTS";
|
||||
"symbols" = "SYMBOLS";
|
||||
"flags" = "FLAGS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "FREQUENTLY USED";
|
||||
"smileysAndPeople" = "SMILEYS & PEOPLE";
|
||||
"animalsAndNature" = "ANIMALS & NATURE";
|
||||
"foodAndDrink" = "FOOD & DRINK";
|
||||
"activity" = "ACTIVITY";
|
||||
"travelAndPlaces" = "TRAVEL & PLACES";
|
||||
"objects" = "OBJECTS";
|
||||
"symbols" = "SYMBOLS";
|
||||
"flags" = "FLAGS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "FREQUENTLY USED";
|
||||
"smileysAndPeople" = "SMILEYS & PEOPLE";
|
||||
"animalsAndNature" = "ANIMALS & NATURE";
|
||||
"foodAndDrink" = "FOOD & DRINK";
|
||||
"activity" = "ACTIVITY";
|
||||
"travelAndPlaces" = "TRAVEL & PLACES";
|
||||
"objects" = "OBJECTS";
|
||||
"symbols" = "SYMBOLS";
|
||||
"flags" = "FLAGS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "FREQUENTLY USED";
|
||||
"smileysAndPeople" = "SMILEYS & PEOPLE";
|
||||
"animalsAndNature" = "ANIMALS & NATURE";
|
||||
"foodAndDrink" = "FOOD & DRINK";
|
||||
"activity" = "ACTIVITY";
|
||||
"travelAndPlaces" = "TRAVEL & PLACES";
|
||||
"objects" = "OBJECTS";
|
||||
"symbols" = "SYMBOLS";
|
||||
"flags" = "FLAGS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "MÁS FRECUENTES";
|
||||
"smileysAndPeople" = "CARAS Y PERSONAS";
|
||||
"animalsAndNature" = "ANIMALES Y NATURALEZA";
|
||||
"foodAndDrink" = "ALIMENTOS Y BEBIDAS";
|
||||
"activity" = "ACTIVIDAD";
|
||||
"travelAndPlaces" = "VIAJES Y LUGARES";
|
||||
"objects" = "OBJETOS";
|
||||
"symbols" = "SÍMBOLOS";
|
||||
"flags" = "BANDERAS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "USADOS CON FRECUENCIA";
|
||||
"smileysAndPeople" = "EMOTICONOS Y PERSONAS";
|
||||
"animalsAndNature" = "ANIMALES Y NATURALEZA";
|
||||
"foodAndDrink" = "COMIDA Y BEBIDA";
|
||||
"activity" = "ACTIVIDADES";
|
||||
"travelAndPlaces" = "VIAJES Y DESTINOS";
|
||||
"objects" = "OBJETOS";
|
||||
"symbols" = "SÍMBOLOS";
|
||||
"flags" = "BANDERAS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "USEIN KÄYTETYT";
|
||||
"smileysAndPeople" = "HYMIÖT JA IHMISET";
|
||||
"animalsAndNature" = "ELÄIMET JA LUONTO";
|
||||
"foodAndDrink" = "RUOKA JA JUOMA";
|
||||
"activity" = "TOIMINTA";
|
||||
"travelAndPlaces" = "MATKAILU JA PAIKAT";
|
||||
"objects" = "ESINEET";
|
||||
"symbols" = "SYMBOLIT";
|
||||
"flags" = "LIPUT";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "UTILISÉS FRÉQUEMMENT";
|
||||
"smileysAndPeople" = "ÉMOTICÔNES ET PERSONNES";
|
||||
"animalsAndNature" = "ANIMAUX ET NATURE";
|
||||
"foodAndDrink" = "ALIMENT ET BOISSON";
|
||||
"activity" = "ACTIVITÉ";
|
||||
"travelAndPlaces" = "VOYAGES ET LIEUX";
|
||||
"objects" = "OBJETS";
|
||||
"symbols" = "SYMBOLES";
|
||||
"flags" = "DRAPEAUX";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "SOUVENT UTILISÉS";
|
||||
"smileysAndPeople" = "ÉMOTICÔNES ET PERSONNAGES";
|
||||
"animalsAndNature" = "ANIMAUX ET NATURE";
|
||||
"foodAndDrink" = "NOURRITURE ET BOISSONS";
|
||||
"activity" = "ACTIVITÉS";
|
||||
"travelAndPlaces" = "VOYAGES ET LIEUX";
|
||||
"objects" = "OBJETS";
|
||||
"symbols" = "SYMBOLES";
|
||||
"flags" = "DRAPEAUX";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "בשימוש תדיר";
|
||||
"smileysAndPeople" = "סמיילי ואנשים";
|
||||
"animalsAndNature" = "בעלי חיים וטבע";
|
||||
"foodAndDrink" = "מזון ומשקאות";
|
||||
"activity" = "פעילות";
|
||||
"travelAndPlaces" = "נסיעות ומקומות";
|
||||
"objects" = "חפצים";
|
||||
"symbols" = "סימנים";
|
||||
"flags" = "דגלים";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "अक्सर उपयोग होने वाले";
|
||||
"smileysAndPeople" = "स्माइली और लोग";
|
||||
"animalsAndNature" = "पशु और प्रकृति";
|
||||
"foodAndDrink" = "खाद्य और पेय";
|
||||
"activity" = "ऐक्टिविटी";
|
||||
"travelAndPlaces" = "यात्रा और स्थान";
|
||||
"objects" = "चीजें";
|
||||
"symbols" = "चिह्न";
|
||||
"flags" = "फ़्लैग";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ČESTO KORIŠTENO";
|
||||
"smileysAndPeople" = "SMAJLIĆI I OSOBE";
|
||||
"animalsAndNature" = "ŽIVOTINJE I NATURE";
|
||||
"foodAndDrink" = "HRANA I PIĆE";
|
||||
"activity" = "AKTIVNOST";
|
||||
"travelAndPlaces" = "PUTOVANJA I MJESTA";
|
||||
"objects" = "PREDMETI";
|
||||
"symbols" = "SIMBOLI";
|
||||
"flags" = "ZASTAVE";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "GYAKRAN HASZNÁLTAK";
|
||||
"smileysAndPeople" = "HANGULATJELEK ÉS EMBEREK";
|
||||
"animalsAndNature" = "ÁLLATOK ÉS TERMÉSZET";
|
||||
"foodAndDrink" = "ÉTELEK ÉS ITALOK";
|
||||
"activity" = "TEVÉKENYSÉG";
|
||||
"travelAndPlaces" = "UTAZÁS ÉS HELYEK";
|
||||
"objects" = "TÁRGYAK";
|
||||
"symbols" = "SZIMBÓLUMOK";
|
||||
"flags" = "ZÁSZLÓK";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "SERING DIGUNAKAN";
|
||||
"smileysAndPeople" = "SMILEY & ORANG";
|
||||
"animalsAndNature" = "HEWAN & ALAM";
|
||||
"foodAndDrink" = "MAKANAN & MINUMAN";
|
||||
"activity" = "AKTIVITAS";
|
||||
"travelAndPlaces" = "PERJALANAN & TEMPAT";
|
||||
"objects" = "OBJEK";
|
||||
"symbols" = "SIMBOL";
|
||||
"flags" = "BENDERA";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "USATE DI FREQUENTE";
|
||||
"smileysAndPeople" = "EMOTICON E PERSONE";
|
||||
"animalsAndNature" = "ANIMALI E NATURA";
|
||||
"foodAndDrink" = "CIBO E BEVANDE";
|
||||
"activity" = "ATTIVITÀ";
|
||||
"travelAndPlaces" = "VIAGGI E LUOGHI";
|
||||
"objects" = "OGGETTI";
|
||||
"symbols" = "SIMBOLI";
|
||||
"flags" = "BANDIERE";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "よく使う項目";
|
||||
"smileysAndPeople" = "スマイリーと人々";
|
||||
"animalsAndNature" = "動物と自然";
|
||||
"foodAndDrink" = "食べ物と飲み物";
|
||||
"activity" = "活動";
|
||||
"travelAndPlaces" = "旅行と場所";
|
||||
"objects" = "物";
|
||||
"symbols" = "記号";
|
||||
"flags" = "旗";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "자주 사용하는 항목";
|
||||
"smileysAndPeople" = "스마일리 및 사람";
|
||||
"animalsAndNature" = "동물 및 자연";
|
||||
"foodAndDrink" = "음식 및 음료";
|
||||
"activity" = "활동";
|
||||
"travelAndPlaces" = "여행 및 장소";
|
||||
"objects" = "사물";
|
||||
"symbols" = "기호";
|
||||
"flags" = "깃발";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "KERAP DIGUNAKAN";
|
||||
"smileysAndPeople" = "MUKA SENYUM & ORANG";
|
||||
"animalsAndNature" = "HAIWAN & ALAM";
|
||||
"foodAndDrink" = "MAKANAN & MINUMAN";
|
||||
"activity" = "AKTIVITI";
|
||||
"travelAndPlaces" = "PERJALANAN & TEMPAT";
|
||||
"objects" = "OBJEK";
|
||||
"symbols" = "SIMBOL";
|
||||
"flags" = "BENDERA";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "OFTE BRUKT";
|
||||
"smileysAndPeople" = "SMILEFJES OG PERSONER";
|
||||
"animalsAndNature" = "DYR OG NATUR";
|
||||
"foodAndDrink" = "MAT OG DRIKKE";
|
||||
"activity" = "AKTIVITET";
|
||||
"travelAndPlaces" = "REISE OG STEDER";
|
||||
"objects" = "OBJEKTER";
|
||||
"symbols" = "SYMBOLER";
|
||||
"flags" = "FLAGG";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "VAAK GEBRUIKT";
|
||||
"smileysAndPeople" = "SMILEYS EN MENSEN";
|
||||
"animalsAndNature" = "DIEREN EN NATUUR";
|
||||
"foodAndDrink" = "ETEN EN DRINKEN";
|
||||
"activity" = "ACTIVITEIT";
|
||||
"travelAndPlaces" = "REIZEN EN PLAATSEN";
|
||||
"objects" = "OBJECTEN";
|
||||
"symbols" = "SYMBOLEN";
|
||||
"flags" = "VLAGGEN";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "CZĘSTO UŻYWANE";
|
||||
"smileysAndPeople" = "BUŻKI I OSOBY";
|
||||
"animalsAndNature" = "ZWIERZĘTA I NATURA";
|
||||
"foodAndDrink" = "ŻYWNOŚĆ I NAPOJE";
|
||||
"activity" = "AKTYWNOŚĆ";
|
||||
"travelAndPlaces" = "PODRÓŻE I MIEJSCA";
|
||||
"objects" = "OBIEKTY";
|
||||
"symbols" = "SYMBOLE";
|
||||
"flags" = "FLAGI";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "MAIS USADOS";
|
||||
"smileysAndPeople" = "SORRISOS E PESSOAS";
|
||||
"animalsAndNature" = "ANIMAIS E NATUREZA";
|
||||
"foodAndDrink" = "COMIDA E BEBIDA";
|
||||
"activity" = "ATIVIDADES";
|
||||
"travelAndPlaces" = "VIAGEM E LUGARES";
|
||||
"objects" = "OBJETOS";
|
||||
"symbols" = "SÍMBOLOS";
|
||||
"flags" = "BANDEIRAS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "USADOS COM FREQUÊNCIA";
|
||||
"smileysAndPeople" = "SMILEYS E PESSOAS";
|
||||
"animalsAndNature" = "ANIMAIS E NATUREZA";
|
||||
"foodAndDrink" = "ALIMENTAÇÃO E BEBIDAS";
|
||||
"activity" = "ATIVIDADE";
|
||||
"travelAndPlaces" = "VIAGENS E LUGARES";
|
||||
"objects" = "OBJETOS";
|
||||
"symbols" = "SÍMBOLOS";
|
||||
"flags" = "BANDEIRAS";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "UTILIZATE FRECVENT";
|
||||
"smileysAndPeople" = "EMOTICOANE ȘI PERSOANE";
|
||||
"animalsAndNature" = "ANIMALE ȘI NATURĂ";
|
||||
"foodAndDrink" = "MÂNCĂRURI ȘI BĂUTURI";
|
||||
"activity" = "ACTIVITĂȚI";
|
||||
"travelAndPlaces" = "CĂLĂTORII ȘI LOCURI";
|
||||
"objects" = "OBIECTE";
|
||||
"symbols" = "SIMBOLURI";
|
||||
"flags" = "STEAGURI";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ЧАСТО ИСПОЛЬЗУЕМЫЕ";
|
||||
"smileysAndPeople" = "СМАЙЛИКИ И ЛЮДИ";
|
||||
"animalsAndNature" = "ЖИВОТНЫЕ И ПРИРОДА";
|
||||
"foodAndDrink" = "ЕДА И НАПИТКИ";
|
||||
"activity" = "АКТИВНОСТЬ";
|
||||
"travelAndPlaces" = "ПУТЕШЕСТВИЯ И МЕСТНОСТИ";
|
||||
"objects" = "ПРЕДМЕТЫ";
|
||||
"symbols" = "СИМВОЛЫ";
|
||||
"flags" = "ФЛАГИ";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ČASTO POUŽÍVANÉ";
|
||||
"smileysAndPeople" = "SMAJLÍKY A ĽUDIA";
|
||||
"animalsAndNature" = "ZVIERATÁ A PRÍRODA";
|
||||
"foodAndDrink" = "JEDLO A NÁPOJE";
|
||||
"activity" = "AKTIVITA";
|
||||
"travelAndPlaces" = "CESTOVANIE A MIESTA";
|
||||
"objects" = "OBJEKTY";
|
||||
"symbols" = "SYMBOLY";
|
||||
"flags" = "VLAJKY";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "OFTA ANVÄNDA";
|
||||
"smileysAndPeople" = "SMILEYS OCH MÄNNISKOR";
|
||||
"animalsAndNature" = "DJUR OCH NATUR";
|
||||
"foodAndDrink" = "MAT OCH DRYCK";
|
||||
"activity" = "AKTIVITET";
|
||||
"travelAndPlaces" = "RESOR OCH PLATSER";
|
||||
"objects" = "OBJEKT";
|
||||
"symbols" = "SYMBOLER";
|
||||
"flags" = "FLAGGOR";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ที่ใช้ประจำ";
|
||||
"smileysAndPeople" = "ใบหน้ายิ้มและผู้คน";
|
||||
"animalsAndNature" = "สัตว์และธรรมชาติ";
|
||||
"foodAndDrink" = "อาหารและเครื่องดื่ม";
|
||||
"activity" = "กิจกรรม";
|
||||
"travelAndPlaces" = "การท่องเที่ยวและสถานที่";
|
||||
"objects" = "วัตถุ";
|
||||
"symbols" = "สัญลักษณ์";
|
||||
"flags" = "ธง";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "SIK KULLANILANLAR";
|
||||
"smileysAndPeople" = "YÜZ İFADELERİ VE İNSANLAR";
|
||||
"animalsAndNature" = "HAYVANLAR VE DOĞA";
|
||||
"foodAndDrink" = "YİYECEK VE İÇECEK";
|
||||
"activity" = "ETKİNLİK";
|
||||
"travelAndPlaces" = "SEYAHAT VE YERLER";
|
||||
"objects" = "NESNELER";
|
||||
"symbols" = "SEMBOLLER";
|
||||
"flags" = "BAYRAKLAR";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "ЧАСТО ВЖИВАНІ";
|
||||
"smileysAndPeople" = "СМАЙЛИКИ Й ЛЮДИ";
|
||||
"animalsAndNature" = "ФЛОРА І ФАУНА";
|
||||
"foodAndDrink" = "ЇЖА І НАПОЇ";
|
||||
"activity" = "АКТИВНІСТЬ";
|
||||
"travelAndPlaces" = "ПОДОРОЖІ Й МІСЦЯ";
|
||||
"objects" = "ОБʼЄКТИ";
|
||||
"symbols" = "СИМВОЛИ";
|
||||
"flags" = "ПРАПОРИ";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "THƯỜNG DÙNG";
|
||||
"smileysAndPeople" = "MẶT CƯỜI & NGƯỜI";
|
||||
"animalsAndNature" = "ĐỘNG VẬT & TỰ NHIÊN";
|
||||
"foodAndDrink" = "ĐỒ ĂN & ĐỒ UỐNG";
|
||||
"activity" = "HOẠT ĐỘNG";
|
||||
"travelAndPlaces" = "DU LỊCH & ĐỊA ĐIỂM";
|
||||
"objects" = "ĐỒ VẬT";
|
||||
"symbols" = "KÝ HIỆU";
|
||||
"flags" = "CỜ";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "常用";
|
||||
"smileysAndPeople" = "表情與人物";
|
||||
"animalsAndNature" = "動物與自然";
|
||||
"foodAndDrink" = "飲食";
|
||||
"activity" = "活動";
|
||||
"travelAndPlaces" = "旅行與地點";
|
||||
"objects" = "物件";
|
||||
"symbols" = "符號";
|
||||
"flags" = "旗幟";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "常用";
|
||||
"smileysAndPeople" = "表情符号与人物";
|
||||
"animalsAndNature" = "动物与自然";
|
||||
"foodAndDrink" = "食物与饮料";
|
||||
"activity" = "活动";
|
||||
"travelAndPlaces" = "旅行与地点";
|
||||
"objects" = "物体";
|
||||
"symbols" = "符号";
|
||||
"flags" = "旗帜";
|
||||
@@ -0,0 +1,31 @@
|
||||
// The MIT License (MIT)
|
||||
//
|
||||
// Copyright © 2022 Ivan Izyumkin
|
||||
//
|
||||
// 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.
|
||||
|
||||
"frequentlyUsed" = "常用項目";
|
||||
"smileysAndPeople" = "表情符號與人物";
|
||||
"animalsAndNature" = "動物與自然";
|
||||
"foodAndDrink" = "美食佳飲";
|
||||
"activity" = "活動";
|
||||
"travelAndPlaces" = "旅遊與地點";
|
||||
"objects" = "物品";
|
||||
"symbols" = "符號";
|
||||
"flags" = "旗幟";
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user