From 6cd34dc3e35d6f6f2fe60990f49870253b05d822 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Mon, 3 Jun 2024 16:23:12 -0700 Subject: [PATCH 1/9] Update types. --- packages/generator/src/generators/generateTypes.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/generator/src/generators/generateTypes.ts b/packages/generator/src/generators/generateTypes.ts index 4e77a98b..227c1c39 100644 --- a/packages/generator/src/generators/generateTypes.ts +++ b/packages/generator/src/generators/generateTypes.ts @@ -2,6 +2,8 @@ import { log } from '../helpers/log'; import { readCache } from '../helpers/readCache'; +import { loadEmojiList } from '../loaders/loadEmojiList'; +import { loadMetadata } from '../loaders/loadMetadata'; function unionize(data: unknown[] | object): string { if (!Array.isArray(data)) { @@ -11,9 +13,12 @@ function unionize(data: unknown[] | object): string { return data.map((value) => `'${value}'`).join(' | '); } -export function generateTypes() { +export async function generateTypes() { log.title('data', 'Generating TypeScript types'); + await loadMetadata(); + await loadEmojiList(); + const groupData = readCache<{ groups: Record; subgroups: Record; From b1f6acbbb2756533711f98d8c02e54b1118a9ae9 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 18:13:11 -0700 Subject: [PATCH 2/9] Update gen. --- .../src/generators/generatePoFiles.ts | 40 ++++++++++++++++--- .../generator/src/loaders/loadPoShortcodes.ts | 2 +- packages/generator/src/parsers/POManager.ts | 4 +- 3 files changed, 37 insertions(+), 9 deletions(-) diff --git a/packages/generator/src/generators/generatePoFiles.ts b/packages/generator/src/generators/generatePoFiles.ts index 3de9cb6d..ce24b7a8 100644 --- a/packages/generator/src/generators/generatePoFiles.ts +++ b/packages/generator/src/generators/generatePoFiles.ts @@ -1,9 +1,20 @@ -import { type Emoji, type Hexcode, type ShortcodesDataset, SUPPORTED_LOCALES } from 'emojibase'; +import { + type Emoji, + type GroupDataset, + type Hexcode, + type Locale, + type ShortcodesDataset, + SUPPORTED_LOCALES, +} from 'emojibase'; import { log } from '../helpers/log'; +import { readCache } from '../helpers/readCache'; import { toArray } from '../helpers/toArray'; import { loadDataset } from '../loaders/loadDatasetPackage'; +import { loadPoMessages } from '../loaders/loadPoMessages'; import { loadPoShortcodes } from '../loaders/loadPoShortcodes'; +const LOCALES = ['base', ...SUPPORTED_LOCALES]; + export async function generatePoFiles(): Promise { log.title('data', 'Generating I18N po files'); @@ -20,14 +31,19 @@ export async function generatePoFiles(): Promise { } }); - // Shortcodes const emojibaseShortcodes = await loadDataset( 'en/shortcodes/emojibase.raw.json', ); + const groupHierarchy = readCache('temp/group-hierarchy.json'); + + if (!groupHierarchy) { + throw new Error('Group hierarchy dataset missing!'); + } await Promise.all( - SUPPORTED_LOCALES.map(async (locale) => { - const po = await loadPoShortcodes(locale); + LOCALES.map(async (locale) => { + const poShortcodes = await loadPoShortcodes(locale as Locale); + const poMessages = await loadPoMessages(locale as Locale); // We use english as the base so all others inherit Object.entries(emojibaseShortcodes).forEach(([hexcode, shortcodeList]) => { @@ -40,7 +56,7 @@ export async function generatePoFiles(): Promise { } shortcodes.forEach((shortcode) => { - po.addItem( + poShortcodes.addItem( shortcode, locale === 'en' ? shortcode : '', `EMOJI: ${emoji.emoji || emoji.text} ${emoji.label}`, @@ -51,7 +67,19 @@ export async function generatePoFiles(): Promise { }); }); - return po.write(true); + Object.entries(groupHierarchy.groups).forEach(([order, key]) => { + poMessages.addItem(key, '', `EMOJI GROUP: ${key}`, { + comment: order, + }); + }); + + Object.entries(groupHierarchy.subgroups).forEach(([order, key]) => { + poMessages.addItem(key, '', `EMOJI SUB-GROUP: ${key}`, { + comment: order, + }); + }); + + await Promise.all([poShortcodes.write('msgid'), poMessages.write('msgctxt')]); }), ); } diff --git a/packages/generator/src/loaders/loadPoShortcodes.ts b/packages/generator/src/loaders/loadPoShortcodes.ts index bf7d7e4d..2a358849 100644 --- a/packages/generator/src/loaders/loadPoShortcodes.ts +++ b/packages/generator/src/loaders/loadPoShortcodes.ts @@ -15,7 +15,7 @@ export async function loadPoShortcodes(locale: Locale): Promise { const poPath = path.resolve(process.cwd(), `po/${locale}/shortcodes.po`); const po = PO.parse(await fs.promises.readFile(poPath, 'utf8')); - if (po.comments.length <= 1) { + if (po.comments.length <= 1 && LOCALE_COUNTRIES[locale]) { po.comments = [LOCALE_COUNTRIES[locale]]; } diff --git a/packages/generator/src/parsers/POManager.ts b/packages/generator/src/parsers/POManager.ts index 00e2a68b..c5c97127 100644 --- a/packages/generator/src/parsers/POManager.ts +++ b/packages/generator/src/parsers/POManager.ts @@ -97,11 +97,11 @@ export class POManager { return toArray(this.getItem(id).msgstr).join(''); } - async write(sort: boolean = false): Promise { + async write(sort?: 'msgctxt' | 'msgid'): Promise { this.po.items = Object.values(this.itemsById); if (sort) { - this.po.items.sort((a, b) => a.msgid.localeCompare(b.msgid)); + this.po.items.sort((a, b) => a[sort].localeCompare(b[sort])); } await fs.promises.writeFile(this.path, this.po.toString(), 'utf8'); From 33fabdbdbd2a2ff90d449833178273bae36be867 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 18:26:29 -0700 Subject: [PATCH 3/9] Support legacy. --- .../src/generators/generatePoFiles.ts | 130 +++++++++++++++++- packages/generator/src/parsers/POManager.ts | 12 ++ 2 files changed, 140 insertions(+), 2 deletions(-) diff --git a/packages/generator/src/generators/generatePoFiles.ts b/packages/generator/src/generators/generatePoFiles.ts index ce24b7a8..6d0ec325 100644 --- a/packages/generator/src/generators/generatePoFiles.ts +++ b/packages/generator/src/generators/generatePoFiles.ts @@ -68,13 +68,27 @@ export async function generatePoFiles(): Promise { }); Object.entries(groupHierarchy.groups).forEach(([order, key]) => { - poMessages.addItem(key, '', `EMOJI GROUP: ${key}`, { + let msgstr = ''; + + if (LEGACY_REMAP[key]) { + msgstr = poMessages.getItem(LEGACY_REMAP[key]).msgstr; + poMessages.removeItem(LEGACY_REMAP[key]); + } + + poMessages.addItem(key, msgstr, `EMOJI GROUP: ${key}`, { comment: order, }); }); Object.entries(groupHierarchy.subgroups).forEach(([order, key]) => { - poMessages.addItem(key, '', `EMOJI SUB-GROUP: ${key}`, { + let msgstr = ''; + + if (LEGACY_REMAP[key]) { + msgstr = poMessages.getItem(LEGACY_REMAP[key]).msgstr; + poMessages.removeItem(LEGACY_REMAP[key]); + } + + poMessages.addItem(key, msgstr, `EMOJI SUB-GROUP: ${key}`, { comment: order, }); }); @@ -83,3 +97,115 @@ export async function generatePoFiles(): Promise { }), ); } + +const LEGACY_REMAP: Record = { + 'smileys-emotion': 'smileys & emotion', + 'people-body': 'people & body', + component: 'components', + 'animals-nature': 'animals & nature', + 'food-drink': 'food & drink', + 'travel-places': 'travel & places', + activities: 'activities', + objects: 'objects', + symbols: 'symbols', + flags: 'flags', + 'face-smiling': 'smiling', + 'face-affection': 'affectionate', + 'face-tongue': 'with tongue', + 'face-hand': 'with hands', + 'face-neutral-skeptical': 'neutral / skeptical', + 'face-sleepy': 'sleepy', + 'face-unwell': 'unwell', + 'face-hat': 'with hats', + 'face-glasses': 'with glasses', + 'face-concerned': 'concerned', + 'face-negative': 'negative', + 'face-costume': 'costumed & creatures', + 'cat-face': 'cat faces', + 'monkey-face': 'monkey faces', + emotion: 'emotions', + 'hand-fingers-open': 'fingers open', + 'hand-fingers-partial': 'hand signs', + 'hand-single-finger': 'finger pointing', + 'hand-fingers-closed': 'fingers closed', + hands: 'hands', + 'hand-prop': 'hand props', + 'body-parts': 'body parts', + person: 'people', + 'person-gesture': 'gestures', + 'person-role': 'roles & careers', + 'person-fantasy': 'fantasy', + 'person-sport': 'athletics', + 'person-resting': 'resting', + family: 'family', + 'person-symbol': 'people symbols', + 'skin-tone': 'skin tones', + 'hair-style': 'hair styles', + 'animal-mammal': 'mammals', + 'animal-bird': 'birds', + 'animal-amphibian': 'amphibians', + 'animal-reptile': 'reptiles', + 'animal-marine': 'marine life', + 'animal-bug': 'bugs', + 'plant-flower': 'flowers', + 'plant-other': 'other plants', + 'food-fruit': 'fruit', + 'food-vegetable': 'vegetables', + 'food-prepared': 'cooked / prepared', + 'food-asian': 'asian', + 'food-marine': 'seafood', + 'food-sweet': 'sweets & candy', + drink: 'drink', + dishware: 'dishware', + 'place-map': 'globes & maps', + 'place-geographic': 'geographic locations', + 'place-building': 'buildings', + 'place-religious': 'religious buildings', + 'place-other': 'other places', + 'transport-ground': 'ground transportation', + 'transport-water': 'water transportation', + 'transport-air': 'air transportation', + hotel: 'hotel', + time: 'time', + 'sky-weather': 'weather', + event: 'events & holidays', + 'award-medal': 'award medals', + sport: 'sports', + game: 'games & hobbies', + 'arts-crafts': 'arts & crafts', + clothing: 'clothing', + sound: 'sound', + music: 'music', + 'musical-instrument': 'musical instruments', + phone: 'phone', + computer: 'computer', + 'light-video': 'light, film & video', + 'book-paper': 'books & paper', + money: 'money', + mail: 'mail', + writing: 'writing', + office: 'office supplies', + lock: 'lock & keys', + tool: 'tools', + science: 'science equipment', + medical: 'medical', + household: 'household items', + 'other-object': 'other objects', + 'transport-sign': 'transport signs', + warning: 'warning symbols', + arrow: 'arrows', + religion: 'religious symbols', + zodiac: 'zodiac signs', + 'av-symbol': 'audio & video symbols', + gender: 'gender signs', + math: 'math symbols', + punctuation: 'punctuation', + currency: 'currencies', + 'other-symbol': 'other symbols', + keycap: 'keypad characters', + alphanum: 'alphanumeric symbols', + geometric: 'shapes & colors', + flag: 'other flags', + 'country-flag': 'country flags', + 'subdivision-flag': 'subdivision flags', +}; diff --git a/packages/generator/src/parsers/POManager.ts b/packages/generator/src/parsers/POManager.ts index c5c97127..07ecce69 100644 --- a/packages/generator/src/parsers/POManager.ts +++ b/packages/generator/src/parsers/POManager.ts @@ -93,6 +93,18 @@ export class POManager { return item; } + removeItem(id: string) { + const item = this.itemsById[id]; + + delete this.itemsById[id]; + + if (item && item.comments.length > 0) { + item.comments.forEach((comment) => { + delete this.itemsByComment[comment]; + }); + } + } + getMessage(id: string): string { return toArray(this.getItem(id).msgstr).join(''); } From 5514040114e36a5519a8f40dc14f72794884fe3b Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 18:30:25 -0700 Subject: [PATCH 4/9] Regenerate. --- po/base/messages.po | 597 +++++++++++------- po/base/shortcodes.po | 956 +++++++++++++++------------- po/bn/messages.po | 825 +++++++++++++----------- po/bn/shortcodes.po | 142 ++++- po/da/messages.po | 882 ++++++++++++++------------ po/da/shortcodes.po | 142 ++++- po/de/messages.po | 912 ++++++++++++++------------- po/de/shortcodes.po | 142 ++++- po/en-gb/messages.po | 1121 ++++++++++++++------------------- po/en-gb/shortcodes.po | 142 ++++- po/en/messages.po | 1281 ++++++++++++++------------------------ po/en/shortcodes.po | 282 ++++----- po/es-mx/messages.po | 887 +++++++++++++------------- po/es-mx/shortcodes.po | 142 ++++- po/es/messages.po | 887 +++++++++++++------------- po/es/shortcodes.po | 142 ++++- po/et/messages.po | 885 ++++++++++++++------------ po/et/shortcodes.po | 142 ++++- po/fi/messages.po | 882 ++++++++++++++------------ po/fi/shortcodes.po | 142 ++++- po/fr/messages.po | 888 +++++++++++++------------- po/fr/shortcodes.po | 142 ++++- po/hi/messages.po | 825 +++++++++++++----------- po/hi/shortcodes.po | 142 ++++- po/hu/messages.po | 887 +++++++++++++------------- po/hu/shortcodes.po | 142 ++++- po/it/messages.po | 885 ++++++++++++++------------ po/it/shortcodes.po | 142 ++++- po/ja/messages.po | 910 ++++++++++++++------------- po/ja/shortcodes.po | 142 ++++- po/ko/messages.po | 923 +++++++++++++-------------- po/ko/shortcodes.po | 142 ++++- po/lt/messages.po | 886 ++++++++++++++------------ po/lt/shortcodes.po | 142 ++++- po/ms/messages.po | 877 ++++++++++++++------------ po/ms/shortcodes.po | 142 ++++- po/nb/messages.po | 886 ++++++++++++++------------ po/nb/shortcodes.po | 142 ++++- po/nl/messages.po | 882 ++++++++++++++------------ po/nl/shortcodes.po | 142 ++++- po/pl/messages.po | 884 ++++++++++++++------------ po/pl/shortcodes.po | 142 ++++- po/pt/messages.po | 887 +++++++++++++------------- po/pt/shortcodes.po | 142 ++++- po/ru/messages.po | 879 ++++++++++++++------------ po/ru/shortcodes.po | 142 ++++- po/sv/messages.po | 880 ++++++++++++++------------ po/sv/shortcodes.po | 142 ++++- po/th/messages.po | 925 +++++++++++++-------------- po/th/shortcodes.po | 142 ++++- po/uk/messages.po | 887 +++++++++++++------------- po/uk/shortcodes.po | 142 ++++- po/zh-hant/messages.po | 837 ++++++++++++++----------- po/zh-hant/shortcodes.po | 142 ++++- po/zh/messages.po | 837 ++++++++++++++----------- po/zh/shortcodes.po | 142 ++++- 56 files changed, 17456 insertions(+), 12498 deletions(-) diff --git a/po/base/messages.po b/po/base/messages.po index 8497f57d..aee27519 100644 --- a/po/base/messages.po +++ b/po/base/messages.po @@ -1,11 +1,11 @@ # -#, fuzzy +# , fuzzy msgid "" msgstr "" "Project-Id-Version: Emojibase\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 15:38+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: en\n" "Language-Team: \n" @@ -15,475 +15,594 @@ msgstr "" "MIME-Version: 1.0\n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" -msgid "regional indicator %s" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" msgstr "" -msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" msgstr "" -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" msgstr "" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" msgstr "" -msgctxt "SKIN TONE: light" -msgid "light skin tone" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" msgstr "" -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" msgstr "" -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" msgstr "" -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "" -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" msgstr "" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" msgstr "" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" msgstr "" -msgctxt "EMOJI GROUP: 2|component" -msgid "components" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" msgstr "" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" msgstr "" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" msgstr "" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" msgstr "" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" msgstr "" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" msgstr "" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" msgstr "" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" msgstr "" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" msgstr "" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" msgstr "" -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" msgstr "" -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" msgstr "" -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" msgstr "" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "" + +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" msgstr "" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" msgstr "" -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" msgstr "" -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" msgstr "" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" msgstr "" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" msgstr "" -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" msgstr "" -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" msgstr "" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" msgstr "" -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" msgstr "" -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" msgstr "" -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" msgstr "" -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" msgstr "" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" msgstr "" -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" msgstr "" -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" msgstr "" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" msgstr "" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" msgstr "" -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" +# 30 +msgctxt "EMOJI SUB-GROUP: family" +msgid "family" msgstr "" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" msgstr "" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" msgstr "" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" msgstr "" -msgctxt "EMOJI SUB-GROUP: 29|family" -msgid "family" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" msgstr "" -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" msgstr "" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" msgstr "" -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" msgstr "" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" msgstr "" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" msgstr "" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" msgstr "" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" msgstr "" -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" msgstr "" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" msgstr "" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" msgstr "" -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" msgstr "" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" msgstr "" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" msgstr "" -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" msgstr "" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" msgstr "" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" msgstr "" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" msgstr "" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "" + +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" msgstr "" -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" msgstr "" -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" msgstr "" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" msgstr "" -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" msgstr "" -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" msgstr "" -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" msgstr "" -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" msgstr "" -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" msgstr "" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" msgstr "" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" msgstr "" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" msgstr "" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" msgstr "" -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" msgstr "" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" msgstr "" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" msgstr "" -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" msgstr "" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" +msgid "phone" msgstr "" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" msgstr "" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" msgstr "" -msgctxt "EMOJI SUB-GROUP: 69|phone" -msgid "phone" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" msgstr "" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" msgstr "" -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" msgstr "" -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" msgstr "" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" msgstr "" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" msgstr "" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" msgstr "" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" msgstr "" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" msgstr "" -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" msgstr "" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" msgstr "" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" msgstr "" -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" msgstr "" -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" msgstr "" -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" msgstr "" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" msgstr "" -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" msgstr "" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" msgstr "" -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" msgstr "" -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" msgstr "" -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" msgstr "" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" msgstr "" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" msgstr "" -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" msgstr "" -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" msgstr "" -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" msgstr "" -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" +msgctxt "SKIN TONE: light" +msgid "light skin tone" msgstr "" -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" msgstr "" -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" msgstr "" -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" msgstr "" diff --git a/po/base/shortcodes.po b/po/base/shortcodes.po index 2102814d..c62469aa 100644 --- a/po/base/shortcodes.po +++ b/po/base/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2021-09-17 15:21+420\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -144,7 +144,7 @@ msgid "aland_islands" msgstr "" # 23F0 -msgctxt "EMOJI: ⏰ alarm clock" +msgctxt "EMOJI: ⏰️ alarm clock" msgid "alarm_clock" msgstr "" @@ -319,12 +319,12 @@ msgid "arrow_backward" msgstr "" # 23EC -msgctxt "EMOJI: ⏬ fast down button" +msgctxt "EMOJI: ⏬️ fast down button" msgid "arrow_double_down" msgstr "" # 23EB -msgctxt "EMOJI: ⏫ fast up button" +msgctxt "EMOJI: ⏫️ fast up button" msgid "arrow_double_up" msgstr "" @@ -733,6 +733,11 @@ msgctxt "EMOJI: 😁 beaming face with smiling eyes" msgid "beaming_face" msgstr "" +# 1FAD8 +msgctxt "EMOJI: 🫘 beans" +msgid "beans" +msgstr "" + # 1F43B msgctxt "EMOJI: 🐻 bear" msgid "bear" @@ -908,6 +913,16 @@ msgctxt "EMOJI: 🦬 bison" msgid "bison" msgstr "" +# 1FAE6 +msgctxt "EMOJI: 🫦 biting lip" +msgid "biting_lip" +msgstr "" + +# 1F426-200D-2B1B +msgctxt "EMOJI: 🐦‍⬛ black bird" +msgid "black_bird" +msgstr "" + # 1F408-200D-2B1B msgctxt "EMOJI: 🐈‍⬛ black cat" msgid "black_cat" @@ -1188,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1208,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -1223,6 +1248,11 @@ msgctxt "EMOJI: 🧋 bubble tea" msgid "bubble_tea" msgstr "" +# 1FAE7 +msgctxt "EMOJI: 🫧 bubbles" +msgid "bubbles" +msgstr "" + # 1FAA3 msgctxt "EMOJI: 🪣 bucket" msgid "bucket" @@ -1564,7 +1594,7 @@ msgid "check_mark" msgstr "" # 2705 -msgctxt "EMOJI: ✅ check mark button" +msgctxt "EMOJI: ✅️ check mark button" msgid "check_mark_button" msgstr "" @@ -2143,6 +2173,11 @@ msgctxt "EMOJI: ©️ copyright" msgid "copyright" msgstr "" +# 1FAB8 +msgctxt "EMOJI: 🪸 coral" +msgid "coral" +msgstr "" + # 1F33D msgctxt "EMOJI: 🌽 ear of corn" msgid "corn" @@ -2274,12 +2309,12 @@ msgid "croissant" msgstr "" # 274C -msgctxt "EMOJI: ❌ cross mark" +msgctxt "EMOJI: ❌️ cross mark" msgid "cross_mark" msgstr "" # 274E -msgctxt "EMOJI: ❎ cross mark button" +msgctxt "EMOJI: ❎️ cross mark button" msgid "cross_mark_button" msgstr "" @@ -2303,6 +2338,11 @@ msgctxt "EMOJI: 🛳️ passenger ship" msgid "cruise_ship" msgstr "" +# 1FA7C +msgctxt "EMOJI: 🩼 crutch" +msgid "crutch" +msgstr "" + # 1F622 msgctxt "EMOJI: 😢 crying face" msgid "cry" @@ -2369,7 +2409,7 @@ msgid "curly_haired" msgstr "" # 27B0 -msgctxt "EMOJI: ➰ curly loop" +msgctxt "EMOJI: ➰️ curly loop" msgid "curly_loop" msgstr "" @@ -2573,6 +2613,16 @@ msgctxt "EMOJI: 😥 sad but relieved face" msgid "disappointed_relieved" msgstr "" +# 1FAA9 +msgctxt "EMOJI: 🪩 mirror ball" +msgid "disco" +msgstr "" + +# 1FAA9 +msgctxt "EMOJI: 🪩 mirror ball" +msgid "disco_ball" +msgstr "" + # 1F978 msgctxt "EMOJI: 🥸 disguised face" msgid "disguised" @@ -2584,7 +2634,7 @@ msgid "disguised_face" msgstr "" # 2797 -msgctxt "EMOJI: ➗ divide" +msgctxt "EMOJI: ➗️ divide" msgid "divide" msgstr "" @@ -2594,7 +2644,7 @@ msgid "diving_mask" msgstr "" # 2797 -msgctxt "EMOJI: ➗ divide" +msgctxt "EMOJI: ➗️ divide" msgid "division" msgstr "" @@ -2673,13 +2723,23 @@ msgctxt "EMOJI: 🇩🇴 flag: Dominican Republic" msgid "dominican_republic" msgstr "" +# 1FACF +msgctxt "EMOJI: 🫏 donkey" +msgid "donkey" +msgstr "" + # 1F6AA msgctxt "EMOJI: 🚪 door" msgid "door" msgstr "" +# 1FAE5 +msgctxt "EMOJI: 🫥 dotted line face" +msgid "dotted_line_face" +msgstr "" + # 27BF -msgctxt "EMOJI: ➿ double curly loop" +msgctxt "EMOJI: ➿️ double curly loop" msgid "double_curly_loop" msgstr "" @@ -2893,6 +2953,11 @@ msgctxt "EMOJI: 📧 e-mail" msgid "email" msgstr "" +# 1FAB9 +msgctxt "EMOJI: 🪹 empty nest" +msgid "empty_nest" +msgstr "" + # 1F51A msgctxt "EMOJI: 🔚 END arrow" msgid "end" @@ -3023,11 +3088,21 @@ msgctxt "EMOJI: 👀 eyes" msgid "eyes" msgstr "" +# 1F979 +msgctxt "EMOJI: 🥹 face holding back tears" +msgid "face_holding_back_tears" +msgstr "" + # 1F92E msgctxt "EMOJI: 🤮 face vomiting" msgid "face_vomiting" msgstr "" +# 1FAE4 +msgctxt "EMOJI: 🫤 face with diagonal mouth" +msgid "face_with_diagonal_mouth" +msgstr "" + # 1F92D msgctxt "EMOJI: 🤭 face with hand over mouth" msgid "face_with_hand_over_mouth" @@ -3043,11 +3118,21 @@ msgctxt "EMOJI: 🧐 face with monocle" msgid "face_with_monocle" msgstr "" +# 1FAE2 +msgctxt "EMOJI: 🫢 face with open eyes and hand over mouth" +msgid "face_with_open_eyes_hand_over_mouth" +msgstr "" + # 1F62E msgctxt "EMOJI: 😮 face with open mouth" msgid "face_with_open_mouth" msgstr "" +# 1FAE3 +msgctxt "EMOJI: 🫣 face with peeking eye" +msgid "face_with_peeking_eye" +msgstr "" + # 1F928 msgctxt "EMOJI: 🤨 face with raised eyebrow" msgid "face_with_raised_eyebrow" @@ -3108,6 +3193,31 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_aa" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -3244,7 +3354,7 @@ msgid "faroe_islands" msgstr "" # 23EC -msgctxt "EMOJI: ⏬ fast down button" +msgctxt "EMOJI: ⏬️ fast down button" msgid "fast_down" msgstr "" @@ -3259,7 +3369,7 @@ msgid "fast_reverse" msgstr "" # 23EB -msgctxt "EMOJI: ⏫ fast up button" +msgctxt "EMOJI: ⏫️ fast up button" msgid "fast_up" msgstr "" @@ -3424,7 +3534,7 @@ msgid "fishing_pole_and_fish" msgstr "" # 270A -msgctxt "EMOJI: ✊ raised fist" +msgctxt "EMOJI: ✊️ raised fist" msgid "fist" msgstr "" @@ -4604,7 +4714,7 @@ msgid "flag_to" msgstr "" # 1F1F9-1F1F7 -msgctxt "EMOJI: 🇹🇷 flag: Turkey" +msgctxt "EMOJI: 🇹🇷 flag: Türkiye" msgid "flag_tr" msgstr "" @@ -4788,6 +4898,11 @@ msgctxt "EMOJI: 😳 flushed face" msgid "flushed_face" msgstr "" +# 1FA88 +msgctxt "EMOJI: 🪈 flute" +msgid "flute" +msgstr "" + # 1FAB0 msgctxt "EMOJI: 🪰 fly" msgid "fly" @@ -4818,6 +4933,11 @@ msgctxt "EMOJI: 🙏 folded hands" msgid "folded_hands" msgstr "" +# 1FAAD +msgctxt "EMOJI: 🪭 folding hand fan" +msgid "folding_fan" +msgstr "" + # 1FAD5 msgctxt "EMOJI: 🫕 fondue" msgid "fondue" @@ -4998,6 +5118,11 @@ msgctxt "EMOJI: 🧄 garlic" msgid "garlic" msgstr "" +# 1FAE2 +msgctxt "EMOJI: 🫢 face with open eyes and hand over mouth" +msgid "gasp" +msgstr "" + # 2699 msgctxt "EMOJI: ⚙️ gear" msgid "gear" @@ -5053,6 +5178,11 @@ msgctxt "EMOJI: 💝 heart with ribbon" msgid "gift_heart" msgstr "" +# 1FADA +msgctxt "EMOJI: 🫚 ginger root" +msgid "ginger" +msgstr "" + # 1F992 msgctxt "EMOJI: 🦒 giraffe" msgid "giraffe" @@ -5123,6 +5253,11 @@ msgctxt "EMOJI: 🏌️ person golfing" msgid "golfing" msgstr "" +# 1FABF +msgctxt "EMOJI: 🪿 goose" +msgid "goose" +msgstr "" + # 1F98D msgctxt "EMOJI: 🦍 gorilla" msgid "gorilla" @@ -5138,6 +5273,11 @@ msgctxt "EMOJI: 🍇 grapes" msgid "grapes" msgstr "" +# 1FA76 +msgctxt "EMOJI: 🩶 grey heart" +msgid "gray_heart" +msgstr "" + # 1F1EC-1F1F7 msgctxt "EMOJI: 🇬🇷 flag: Greece" msgid "greece" @@ -5183,6 +5323,11 @@ msgctxt "EMOJI: 🇬🇩 flag: Grenada" msgid "grenada" msgstr "" +# 1FA76 +msgctxt "EMOJI: 🩶 grey heart" +msgid "grey_heart" +msgstr "" + # 1F62C msgctxt "EMOJI: 😬 grimacing face" msgid "grimacing" @@ -5293,6 +5438,11 @@ msgctxt "EMOJI: 🇬🇾 flag: Guyana" msgid "guyana" msgstr "" +# 1FAAE +msgctxt "EMOJI: 🪮 hair pick" +msgid "hair_pick" +msgstr "" + # 1F487 msgctxt "EMOJI: 💇 person getting haircut" msgid "haircut" @@ -5328,6 +5478,11 @@ msgctxt "EMOJI: 🛠️ hammer and wrench" msgid "hammer_and_wrench" msgstr "" +# 1FAAC +msgctxt "EMOJI: 🪬 hamsa" +msgid "hamsa" +msgstr "" + # 1F439 msgctxt "EMOJI: 🐹 hamster" msgid "hamster" @@ -5343,6 +5498,11 @@ msgctxt "EMOJI: 🤭 face with hand over mouth" msgid "hand_over_mouth" msgstr "" +# 1FAF0 +msgctxt "EMOJI: 🫰 hand with index finger and thumb crossed" +msgid "hand_with_index_finger_and_thumb_crossed" +msgstr "" + # 1F45C msgctxt "EMOJI: 👜 handbag" msgid "handbag" @@ -5378,6 +5538,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -5433,6 +5603,11 @@ msgctxt "EMOJI: 😻 smiling cat with heart-eyes" msgid "heart_eyes_cat" msgstr "" +# 1FAF6 +msgctxt "EMOJI: 🫶 heart hands" +msgid "heart_hands" +msgstr "" + # 2764-FE0F-200D-1F525 msgctxt "EMOJI: ❤️‍🔥 heart on fire" msgid "heart_on_fire" @@ -5473,6 +5648,11 @@ msgctxt "EMOJI: 💲 heavy dollar sign" msgid "heavy_dollar_sign" msgstr "" +# 1F7F0 +msgctxt "EMOJI: 🟰 heavy equals sign" +msgid "heavy_equals_sign" +msgstr "" + # 1F994 msgctxt "EMOJI: 🦔 hedgehog" msgid "hedgehog" @@ -5504,7 +5684,7 @@ msgid "high_brightness" msgstr "" # 270B -msgctxt "EMOJI: ✋ raised hand" +msgctxt "EMOJI: ✋️ raised hand" msgid "high_five" msgstr "" @@ -5698,6 +5878,11 @@ msgctxt "EMOJI: 🛖 hut" msgid "hut" msgstr "" +# 1FABB +msgctxt "EMOJI: 🪻 hyacinth" +msgid "hyacinth" +msgstr "" + # 1F9CA msgctxt "EMOJI: 🧊 ice" msgid "ice" @@ -5733,6 +5918,11 @@ msgctxt "EMOJI: 🆔 ID button" msgid "id" msgstr "" +# 1FAAA +msgctxt "EMOJI: 🪪 identification card" +msgid "id_card" +msgstr "" + # 1F250 msgctxt "EMOJI: 🉐 Japanese “bargain” button" msgid "ideograph_advantage" @@ -5958,11 +6148,21 @@ msgctxt "EMOJI: 👹 ogre" msgid "japanese_ogre" msgstr "" +# 1FAD9 +msgctxt "EMOJI: 🫙 jar" +msgid "jar" +msgstr "" + # 1F456 msgctxt "EMOJI: 👖 jeans" msgid "jeans" msgstr "" +# 1FABC +msgctxt "EMOJI: 🪼 jellyfish" +msgid "jellyfish" +msgstr "" + # 1F1EF-1F1EA msgctxt "EMOJI: 🇯🇪 flag: Jersey" msgid "jersey" @@ -6048,6 +6248,11 @@ msgctxt "EMOJI: ⌨️ keyboard" msgid "keyboard" msgstr "" +# 1FAAF +msgctxt "EMOJI: 🪯 khanda" +msgid "khanda" +msgstr "" + # 1F458 msgctxt "EMOJI: 👘 kimono" msgid "kimono" @@ -6298,6 +6503,16 @@ msgctxt "EMOJI: ↩️ right arrow curving left" msgid "leftwards_arrow_with_hook" msgstr "" +# 1FAF2 +msgctxt "EMOJI: 🫲 leftwards hand" +msgid "leftwards_hand" +msgstr "" + +# 1FAF7 +msgctxt "EMOJI: 🫷 leftwards pushing hand" +msgid "leftwards_pushing_hand" +msgstr "" + # 1F9B5 msgctxt "EMOJI: 🦵 leg" msgid "leg" @@ -6358,6 +6573,16 @@ msgctxt "EMOJI: 🇱🇮 flag: Liechtenstein" msgid "liechtenstein" msgstr "" +# 1F6DF +msgctxt "EMOJI: 🛟 ring buoy" +msgid "lifebuoy" +msgstr "" + +# 1FA75 +msgctxt "EMOJI: 🩵 light blue heart" +msgid "light_blue_heart" +msgstr "" + # 1F4A1 msgctxt "EMOJI: 💡 light bulb" msgid "light_bulb" @@ -6373,6 +6598,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -6469,7 +6699,7 @@ msgid "long_drum" msgstr "" # 27BF -msgctxt "EMOJI: ➿ double curly loop" +msgctxt "EMOJI: ➿️ double curly loop" msgid "loop" msgstr "" @@ -6478,6 +6708,11 @@ msgctxt "EMOJI: 🧴 lotion bottle" msgid "lotion_bottle" msgstr "" +# 1FAB7 +msgctxt "EMOJI: 🪷 lotus" +msgid "lotus" +msgstr "" + # 1F50A msgctxt "EMOJI: 🔊 speaker high volume" msgid "loud_sound" @@ -6508,6 +6743,11 @@ msgctxt "EMOJI: 🤟 love-you gesture" msgid "love_you_gesture" msgstr "" +# 1FAAB +msgctxt "EMOJI: 🪫 low battery" +msgid "low_battery" +msgstr "" + # 1F505 msgctxt "EMOJI: 🔅 dim button" msgid "low_brightness" @@ -6828,11 +7068,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -6858,6 +7108,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -6928,6 +7183,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -6998,6 +7258,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7023,6 +7288,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -7048,6 +7318,11 @@ msgctxt "EMOJI: 🍁 maple leaf" msgid "maple_leaf" msgstr "" +# 1FA87 +msgctxt "EMOJI: 🪇 maracas" +msgid "maracas" +msgstr "" + # 1F1F2-1F1ED msgctxt "EMOJI: 🇲🇭 flag: Marshall Islands" msgid "marshall_islands" @@ -7148,6 +7423,16 @@ msgctxt "EMOJI: 🍈 melon" msgid "melon" msgstr "" +# 1FAE0 +msgctxt "EMOJI: 🫠 melting face" +msgid "melt" +msgstr "" + +# 1FAE0 +msgctxt "EMOJI: 🫠 melting face" +msgid "melting_face" +msgstr "" + # 1F4DD msgctxt "EMOJI: 📝 memo" msgid "memo" @@ -7264,7 +7549,7 @@ msgid "minidisc" msgstr "" # 2796 -msgctxt "EMOJI: ➖ minus" +msgctxt "EMOJI: ➖️ minus" msgid "minus" msgstr "" @@ -7273,6 +7558,11 @@ msgctxt "EMOJI: 🪞 mirror" msgid "mirror" msgstr "" +# 1FAA9 +msgctxt "EMOJI: 🪩 mirror ball" +msgid "mirror_ball" +msgstr "" + # 1F5FF msgctxt "EMOJI: 🗿 moai" msgid "moai" @@ -7358,6 +7648,11 @@ msgctxt "EMOJI: 🎑 moon viewing ceremony" msgid "moon_ceremony" msgstr "" +# 1FACE +msgctxt "EMOJI: 🫎 moose" +msgid "moose" +msgstr "" + # 1F1F2-1F1E6 msgctxt "EMOJI: 🇲🇦 flag: Morocco" msgid "morocco" @@ -7584,7 +7879,7 @@ msgid "necktie" msgstr "" # 274E -msgctxt "EMOJI: ❎ cross mark button" +msgctxt "EMOJI: ❎️ cross mark button" msgid "negative_squared_cross_mark" msgstr "" @@ -7603,6 +7898,16 @@ msgctxt "EMOJI: 🤓 nerd face" msgid "nerd_face" msgstr "" +# 1FAB9 +msgctxt "EMOJI: 🪹 empty nest" +msgid "nest" +msgstr "" + +# 1FABA +msgctxt "EMOJI: 🪺 nest with eggs" +msgid "nest_with_eggs" +msgstr "" + # 1FA86 msgctxt "EMOJI: 🪆 nesting dolls" msgid "nesting_dolls" @@ -7989,7 +8294,7 @@ msgid "open_mouth" msgstr "" # 26CE -msgctxt "EMOJI: ⛎ Ophiuchus" +msgctxt "EMOJI: ⛎️ Ophiuchus" msgid "ophiuchus" msgstr "" @@ -8103,11 +8408,21 @@ msgctxt "EMOJI: 🎨 artist palette" msgid "palette" msgstr "" +# 1FAF3 +msgctxt "EMOJI: 🫳 palm down hand" +msgid "palm_down" +msgstr "" + # 1F334 msgctxt "EMOJI: 🌴 palm tree" msgid "palm_tree" msgstr "" +# 1FAF4 +msgctxt "EMOJI: 🫴 palm up hand" +msgid "palm_up" +msgstr "" + # 1F932 msgctxt "EMOJI: 🤲 palms up together" msgid "palms_up_together" @@ -8218,6 +8533,11 @@ msgctxt "EMOJI: 🐾 paw prints" msgid "paw_prints" msgstr "" +# 1FADB +msgctxt "EMOJI: 🫛 pea pod" +msgid "pea" +msgstr "" + # 262E msgctxt "EMOJI: ☮️ peace symbol" msgid "peace" @@ -8248,6 +8568,11 @@ msgctxt "EMOJI: 🍐 pear" msgid "pear" msgstr "" +# 1FAE3 +msgctxt "EMOJI: 🫣 face with peeking eye" +msgid "peek" +msgstr "" + # 1F58A msgctxt "EMOJI: 🖊️ pen" msgid "pen" @@ -8403,11 +8728,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8433,6 +8768,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8473,6 +8813,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8518,11 +8863,21 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" msgstr "" +# 1FAC5 +msgctxt "EMOJI: 🫅 person with crown" +msgid "person_with_crown" +msgstr "" + # 1F9D1-200D-1F9AF msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_probing_cane" @@ -8543,6 +8898,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8558,6 +8918,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -8628,6 +8993,11 @@ msgctxt "EMOJI: 🏓 ping pong" msgid "ping_pong" msgstr "" +# 1FA77 +msgctxt "EMOJI: 🩷 pink heart" +msgid "pink_heart" +msgstr "" + # 1F3F4-200D-2620-FE0F msgctxt "EMOJI: 🏴‍☠️ pirate flag" msgid "pirate_flag" @@ -8673,6 +9043,11 @@ msgctxt "EMOJI: ⏯️ play or pause button" msgid "play_pause" msgstr "" +# 1F6DD +msgctxt "EMOJI: 🛝 playground slide" +msgid "playground_slide" +msgstr "" + # 1F97A msgctxt "EMOJI: 🥺 pleading face" msgid "pleading" @@ -8689,7 +9064,7 @@ msgid "plunger" msgstr "" # 2795 -msgctxt "EMOJI: ➕ plus" +msgctxt "EMOJI: ➕️ plus" msgid "plus" msgstr "" @@ -8698,6 +9073,11 @@ msgctxt "EMOJI: 👇️ backhand index pointing down" msgid "point_down" msgstr "" +# 1FAF5 +msgctxt "EMOJI: 🫵 index pointing at the viewer" +msgid "point_forward" +msgstr "" + # 1F448 msgctxt "EMOJI: 👈️ backhand index pointing left" msgid "point_left" @@ -8813,6 +9193,16 @@ msgctxt "EMOJI: 💷 pound banknote" msgid "pound" msgstr "" +# 1FAD7 +msgctxt "EMOJI: 🫗 pouring liquid" +msgid "pour" +msgstr "" + +# 1FAD7 +msgctxt "EMOJI: 🫗 pouring liquid" +msgid "pouring_liquid" +msgstr "" + # 1F621 msgctxt "EMOJI: 😡 enraged face" msgid "pout" @@ -8843,6 +9233,16 @@ msgctxt "EMOJI: 📿 prayer beads" msgid "prayer_beads" msgstr "" +# 1FAC3 +msgctxt "EMOJI: 🫃 pregnant man" +msgid "pregnant_man" +msgstr "" + +# 1FAC4 +msgctxt "EMOJI: 🫄 pregnant person" +msgid "pregnant_person" +msgstr "" + # 1F930 msgctxt "EMOJI: 🤰 pregnant woman" msgid "pregnant_woman" @@ -9019,7 +9419,7 @@ msgid "raised_eyebrow" msgstr "" # 270B -msgctxt "EMOJI: ✋ raised hand" +msgctxt "EMOJI: ✋️ raised hand" msgid "raised_hand" msgstr "" @@ -9373,11 +9773,26 @@ msgctxt "EMOJI: ↪️ left arrow curving right" msgid "rightwards_arrow_with_hook" msgstr "" +# 1FAF1 +msgctxt "EMOJI: 🫱 rightwards hand" +msgid "rightwards_hand" +msgstr "" + +# 1FAF8 +msgctxt "EMOJI: 🫸 rightwards pushing hand" +msgid "rightwards_pushing_hand" +msgstr "" + # 1F48D msgctxt "EMOJI: 💍 ring" msgid "ring" msgstr "" +# 1F6DF +msgctxt "EMOJI: 🛟 ring buoy" +msgid "ring_buoy" +msgstr "" + # 1FA90 msgctxt "EMOJI: 🪐 ringed planet" msgid "ringed_planet" @@ -9468,6 +9883,11 @@ msgctxt "EMOJI: 🚣 person rowing boat" msgid "rowboat" msgstr "" +# 1FAC5 +msgctxt "EMOJI: 🫅 person with crown" +msgid "royalty" +msgstr "" + # 1F3C9 msgctxt "EMOJI: 🏉 rugby football" msgid "rugby_football" @@ -9538,6 +9958,16 @@ msgctxt "EMOJI: 🧂 salt" msgid "salt" msgstr "" +# 1FAE1 +msgctxt "EMOJI: 🫡 saluting face" +msgid "salute" +msgstr "" + +# 1FAE1 +msgctxt "EMOJI: 🫡 saluting face" +msgid "saluting_face" +msgstr "" + # 1F1FC-1F1F8 msgctxt "EMOJI: 🇼🇸 flag: Samoa" msgid "samoa" @@ -9753,6 +10183,16 @@ msgctxt "EMOJI: 🇸🇨 flag: Seychelles" msgid "seychelles" msgstr "" +# 1FAE8 +msgctxt "EMOJI: 🫨 shaking face" +msgid "shaking" +msgstr "" + +# 1FAE8 +msgctxt "EMOJI: 🫨 shaking face" +msgid "shaking_face" +msgstr "" + # 1F958 msgctxt "EMOJI: 🥘 shallow pan of food" msgid "shallow_pan_of_food" @@ -9973,6 +10413,11 @@ msgctxt "EMOJI: 😪 sleepy face" msgid "sleepy_face" msgstr "" +# 1F6DD +msgctxt "EMOJI: 🛝 playground slide" +msgid "slide" +msgstr "" + # 1F641 msgctxt "EMOJI: 🙁 slightly frowning face" msgid "slightly_frowning_face" @@ -10274,7 +10719,7 @@ msgid "sparkler" msgstr "" # 2728 -msgctxt "EMOJI: ✨ sparkles" +msgctxt "EMOJI: ✨️ sparkles" msgid "sparkles" msgstr "" @@ -11158,6 +11603,11 @@ msgctxt "EMOJI: 😤 face with steam from nose" msgid "triumph" msgstr "" +# 1F9CC +msgctxt "EMOJI: 🧌 troll" +msgid "troll" +msgstr "" + # 1F68E msgctxt "EMOJI: 🚎 trolleybus" msgid "trolleybus" @@ -11209,7 +11659,7 @@ msgid "turkey" msgstr "" # 1F1F9-1F1F7 -msgctxt "EMOJI: 🇹🇷 flag: Turkey" +msgctxt "EMOJI: 🇹🇷 flag: Türkiye" msgid "turkey_tr" msgstr "" @@ -11563,6 +12013,11 @@ msgctxt "EMOJI: 🍉 watermelon" msgid "watermelon" msgstr "" +# 1F979 +msgctxt "EMOJI: 🥹 face holding back tears" +msgid "watery_eyes" +msgstr "" + # 1F44B msgctxt "EMOJI: 👋 waving hand" msgid "wave" @@ -11633,6 +12088,11 @@ msgctxt "EMOJI: 🐋 whale" msgid "whale" msgstr "" +# 1F6DE +msgctxt "EMOJI: 🛞 wheel" +msgid "wheel" +msgstr "" + # 2638 msgctxt "EMOJI: ☸️ wheel of dharma" msgid "wheel_of_dharma" @@ -11654,7 +12114,7 @@ msgid "white_cane" msgstr "" # 2705 -msgctxt "EMOJI: ✅ check mark button" +msgctxt "EMOJI: ✅️ check mark button" msgid "white_check_mark" msgstr "" @@ -11664,7 +12124,7 @@ msgid "white_circle" msgstr "" # 2755 -msgctxt "EMOJI: ❕ white exclamation mark" +msgctxt "EMOJI: ❕️ white exclamation mark" msgid "white_exclamation" msgstr "" @@ -11714,7 +12174,7 @@ msgid "white_medium_square" msgstr "" # 2754 -msgctxt "EMOJI: ❔ white question mark" +msgctxt "EMOJI: ❔️ white question mark" msgid "white_question" msgstr "" @@ -11753,6 +12213,11 @@ msgctxt "EMOJI: 🍷 wine glass" msgid "wine_glass" msgstr "" +# 1FABD +msgctxt "EMOJI: 🪽 wing" +msgid "wing" +msgstr "" + # 1F609 msgctxt "EMOJI: 😉 winking face" msgid "wink" @@ -11763,6 +12228,11 @@ msgctxt "EMOJI: 😉 winking face" msgid "winking_face" msgstr "" +# 1F6DC +msgctxt "EMOJI: 🛜 wireless" +msgid "wireless" +msgstr "" + # 1F43A msgctxt "EMOJI: 🐺 wolf" msgid "wolf" @@ -11943,11 +12413,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -11973,6 +12453,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12043,6 +12528,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12113,6 +12603,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12143,6 +12638,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" @@ -12244,10 +12744,20 @@ msgid "wtf" msgstr "" # 274C -msgctxt "EMOJI: ❌ cross mark" +msgctxt "EMOJI: ❌️ cross mark" msgid "x" msgstr "" +# 1FA7B +msgctxt "EMOJI: 🩻 x-ray" +msgid "x-ray" +msgstr "" + +# 1FA7B +msgctxt "EMOJI: 🩻 x-ray" +msgid "xray" +msgstr "" + # 1F9F6 msgctxt "EMOJI: 🧶 yarn" msgid "yarn" @@ -12367,393 +12877,3 @@ msgstr "" msgctxt "EMOJI: 💤 ZZZ" msgid "zzz" msgstr "" - -# 1FAE0 -msgctxt "EMOJI: 🫠 melting face" -msgid "melt" -msgstr "" - -# 1FAE0 -msgctxt "EMOJI: 🫠 melting face" -msgid "melting_face" -msgstr "" - -# 1FAE2 -msgctxt "EMOJI: 🫢 face with open eyes and hand over mouth" -msgid "gasp" -msgstr "" - -# 1FAE2 -msgctxt "EMOJI: 🫢 face with open eyes and hand over mouth" -msgid "face_with_open_eyes_hand_over_mouth" -msgstr "" - -# 1FAE3 -msgctxt "EMOJI: 🫣 face with peeking eye" -msgid "peek" -msgstr "" - -# 1FAE3 -msgctxt "EMOJI: 🫣 face with peeking eye" -msgid "face_with_peeking_eye" -msgstr "" - -# 1FAE1 -msgctxt "EMOJI: 🫡 saluting face" -msgid "salute" -msgstr "" - -# 1FAE1 -msgctxt "EMOJI: 🫡 saluting face" -msgid "saluting_face" -msgstr "" - -# 1FAE5 -msgctxt "EMOJI: 🫥 dotted line face" -msgid "dotted_line_face" -msgstr "" - -# 1FAE4 -msgctxt "EMOJI: 🫤 face with diagonal mouth" -msgid "face_with_diagonal_mouth" -msgstr "" - -# 1F979 -msgctxt "EMOJI: 🥹 face holding back tears" -msgid "watery_eyes" -msgstr "" - -# 1F979 -msgctxt "EMOJI: 🥹 face holding back tears" -msgid "face_holding_back_tears" -msgstr "" - -# 1FAF1 -msgctxt "EMOJI: 🫱 rightwards hand" -msgid "rightwards_hand" -msgstr "" - -# 1FAF2 -msgctxt "EMOJI: 🫲 leftwards hand" -msgid "leftwards_hand" -msgstr "" - -# 1FAF3 -msgctxt "EMOJI: 🫳 palm down hand" -msgid "palm_down" -msgstr "" - -# 1FAF4 -msgctxt "EMOJI: 🫴 palm up hand" -msgid "palm_up" -msgstr "" - -# 1FAF0 -msgctxt "EMOJI: 🫰 hand with index finger and thumb crossed" -msgid "hand_with_index_finger_and_thumb_crossed" -msgstr "" - -# 1FAF5 -msgctxt "EMOJI: 🫵 index pointing at the viewer" -msgid "point_forward" -msgstr "" - -# 1FAF6 -msgctxt "EMOJI: 🫶 heart hands" -msgid "heart_hands" -msgstr "" - -# 1FAE6 -msgctxt "EMOJI: 🫦 biting lip" -msgid "biting_lip" -msgstr "" - -# 1FAC5 -msgctxt "EMOJI: 🫅 person with crown" -msgid "royalty" -msgstr "" - -# 1FAC5 -msgctxt "EMOJI: 🫅 person with crown" -msgid "person_with_crown" -msgstr "" - -# 1FAC3 -msgctxt "EMOJI: 🫃 pregnant man" -msgid "pregnant_man" -msgstr "" - -# 1FAC4 -msgctxt "EMOJI: 🫄 pregnant person" -msgid "pregnant_person" -msgstr "" - -# 1F9CC -msgctxt "EMOJI: 🧌 troll" -msgid "troll" -msgstr "" - -# 1FAB8 -msgctxt "EMOJI: 🪸 coral" -msgid "coral" -msgstr "" - -# 1FAB7 -msgctxt "EMOJI: 🪷 lotus" -msgid "lotus" -msgstr "" - -# 1FAB9 -msgctxt "EMOJI: 🪹 empty nest" -msgid "nest" -msgstr "" - -# 1FAB9 -msgctxt "EMOJI: 🪹 empty nest" -msgid "empty_nest" -msgstr "" - -# 1FABA -msgctxt "EMOJI: 🪺 nest with eggs" -msgid "nest_with_eggs" -msgstr "" - -# 1FAD8 -msgctxt "EMOJI: 🫘 beans" -msgid "beans" -msgstr "" - -# 1FAD7 -msgctxt "EMOJI: 🫗 pouring liquid" -msgid "pour" -msgstr "" - -# 1FAD7 -msgctxt "EMOJI: 🫗 pouring liquid" -msgid "pouring_liquid" -msgstr "" - -# 1FAD9 -msgctxt "EMOJI: 🫙 jar" -msgid "jar" -msgstr "" - -# 1F6DD -msgctxt "EMOJI: 🛝 playground slide" -msgid "slide" -msgstr "" - -# 1F6DD -msgctxt "EMOJI: 🛝 playground slide" -msgid "playground_slide" -msgstr "" - -# 1F6DE -msgctxt "EMOJI: 🛞 wheel" -msgid "wheel" -msgstr "" - -# 1F6DF -msgctxt "EMOJI: 🛟 ring buoy" -msgid "lifebuoy" -msgstr "" - -# 1F6DF -msgctxt "EMOJI: 🛟 ring buoy" -msgid "ring_buoy" -msgstr "" - -# 1FAAC -msgctxt "EMOJI: 🪬 hamsa" -msgid "hamsa" -msgstr "" - -# 1FAA9 -msgctxt "EMOJI: 🪩 mirror ball" -msgid "disco" -msgstr "" - -# 1FAA9 -msgctxt "EMOJI: 🪩 mirror ball" -msgid "disco_ball" -msgstr "" - -# 1FAA9 -msgctxt "EMOJI: 🪩 mirror ball" -msgid "mirror_ball" -msgstr "" - -# 1FAAB -msgctxt "EMOJI: 🪫 low battery" -msgid "low_battery" -msgstr "" - -# 1FA7C -msgctxt "EMOJI: 🩼 crutch" -msgid "crutch" -msgstr "" - -# 1FA7B -msgctxt "EMOJI: 🩻 x-ray" -msgid "x-ray" -msgstr "" - -# 1FA7B -msgctxt "EMOJI: 🩻 x-ray" -msgid "xray" -msgstr "" - -# 1FAE7 -msgctxt "EMOJI: 🫧 bubbles" -msgid "bubbles" -msgstr "" - -# 1FAAA -msgctxt "EMOJI: 🪪 identification card" -msgid "id_card" -msgstr "" - -# 1F7F0 -msgctxt "EMOJI: 🟰 heavy equals sign" -msgid "heavy_equals_sign" -msgstr "" - -# 1F642-200D-2194-FE0F -msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" -msgid "head_shaking_horizontally" -msgstr "" - -# 1F642-200D-2195-FE0F -msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" -msgid "head_shaking_vertically" -msgstr "" - -# 1F6B6-200D-27A1-FE0F -msgctxt "EMOJI: 🚶‍➡️ person walking facing right" -msgid "person_walking_right" -msgstr "" - -# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" -msgid "woman_walking_right" -msgstr "" - -# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" -msgid "man_walking_right" -msgstr "" - -# 1F9CE-200D-27A1-FE0F -msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" -msgid "person_kneeling_right" -msgstr "" - -# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" -msgid "woman_kneeling_right" -msgstr "" - -# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" -msgid "man_kneeling_right" -msgstr "" - -# 1F9D1-200D-1F9AF-200D-27A1-FE0F -msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" -msgid "person_with_white_cane_right" -msgstr "" - -# 1F468-200D-1F9AF-200D-27A1-FE0F -msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" -msgid "man_with_white_cane_right" -msgstr "" - -# 1F469-200D-1F9AF-200D-27A1-FE0F -msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" -msgid "woman_with_white_cane_right" -msgstr "" - -# 1F9D1-200D-1F9BC-200D-27A1-FE0F -msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" -msgid "person_in_motorized_wheelchair_right" -msgstr "" - -# 1F468-200D-1F9BC-200D-27A1-FE0F -msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" -msgid "man_in_motorized_wheelchair_right" -msgstr "" - -# 1F469-200D-1F9BC-200D-27A1-FE0F -msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" -msgid "woman_in_motorized_wheelchair_right" -msgstr "" - -# 1F9D1-200D-1F9BD-200D-27A1-FE0F -msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" -msgid "person_in_manual_wheelchair_right" -msgstr "" - -# 1F468-200D-1F9BD-200D-27A1-FE0F -msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" -msgid "man_in_manual_wheelchair_right" -msgstr "" - -# 1F469-200D-1F9BD-200D-27A1-FE0F -msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" -msgid "woman_in_manual_wheelchair_right" -msgstr "" - -# 1F3C3-200D-27A1-FE0F -msgctxt "EMOJI: 🏃‍➡️ person running facing right" -msgid "person_running_right" -msgstr "" - -# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" -msgid "woman_running_right" -msgstr "" - -# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" -msgid "man_running_right" -msgstr "" - -# 1F9D1-200D-1F9D1-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" -msgid "family_aac" -msgstr "" - -# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" -msgid "family_aacc" -msgstr "" - -# 1F9D1-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧒 family: adult, child" -msgid "family_aa" -msgstr "" - -# 1F9D1-200D-1F9D2-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" -msgid "family_acc" -msgstr "" - -# 1F426-200D-1F525 -msgctxt "EMOJI: 🐦‍🔥 phoenix" -msgid "phoenix" -msgstr "" - -# 1F34B-200D-1F7E9 -msgctxt "EMOJI: 🍋‍🟩 lime" -msgid "lime" -msgstr "" - -# 1F344-200D-1F7EB -msgctxt "EMOJI: 🍄‍🟫 brown mushroom" -msgid "brown_mushroom" -msgstr "" - -# 26D3-FE0F-200D-1F4A5 -msgctxt "EMOJI: ⛓️‍💥 broken chain" -msgid "broken_chain" -msgstr "" diff --git a/po/bn/messages.po b/po/bn/messages.po index ee5e0ccb..a9521129 100644 --- a/po/bn/messages.po +++ b/po/bn/messages.po @@ -1,10 +1,10 @@ -# +# Bengali msgid "" msgstr "" "Project-Id-Version: Emojibase\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2023-09-29 22:07+0530\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language-Team: \n" "Language: bn\n" @@ -14,475 +14,594 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n" "X-Generator: Poedit 3.3.2\n" -#, javascript-format -msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" -msgid "regional indicator %s" -msgstr "আঞ্চলিক সূচক %s" - -msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "স্বর" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "তারকাচিহ্ন" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "কার্যক্রম" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "সংখ্যা নিদর্শন" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "প্রাণী এবং প্রকৃতি" -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "হালকা ত্বকের স্বর" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "উপাদান" -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "মাঝারি-হালকা ত্বকের স্বর" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "পতাকা" -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "মাঝারি ত্বকের স্বর" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "খাদ্য পানীয়" -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "মাঝারি-গাঢ় ত্বকের স্বর" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "বস্তু" -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "গাঢ় ত্বক টোন" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "মানুষ এবং শরীর" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "স্মাইলি এবং আবেগ" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "মানুষ এবং শরীর" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "উপাদান" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "প্রতীক" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "প্রাণী এবং প্রকৃতি" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "ভ্রমণ এবং স্থান" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "খাদ্য পানীয়" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "আলফানিউমেরিক চিহ্ন" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "ভ্রমণ এবং স্থান" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "উভচর" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "কার্যক্রম" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "পাখি" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "বস্তু" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "বাগ" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "প্রতীক" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "স্তন্যপায়ী প্রাণী" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "পতাকা" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "নাবিক জীবন" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "হাসছে" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "সরীসৃপ" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "স্নেহপূর্ণ" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "তীর" -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "জিহ্বা দিয়ে" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "চারু এবং কারু" -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "হাত দিয়ে" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "অডিও এবং ভিডিও প্রতীক" -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "নিরপেক্ষ/সন্দেহবাদী" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "পুরস্কার পদক" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "ঘুমন্ত" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "শরীরের অংশ" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "অসুস্থ" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "বই এবং কাগজ" -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "টুপি সঙ্গে" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "বিড়াল মুখ" -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "চশমা সহ" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "পোশাক" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "উদ্বিগ্ন" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "কম্পিউটার" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "নেতিবাচক" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "দেশের পতাকা" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "পরিচ্ছদ এবং প্রাণী" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "মুদ্রা" -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "বিড়াল মুখ" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "থালা বাসন" -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "বানরের মুখ" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "পান করা" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "আবেগ" -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "আঙ্গুল খোলা" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "ঘটনা এবং ছুটির দিন" -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "হাতের চিহ্ন" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "স্নেহপূর্ণ" -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "আঙুল নির্দেশ করে" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "উদ্বিগ্ন" -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "আঙ্গুল বন্ধ" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "পরিচ্ছদ এবং প্রাণী" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "হাত" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "চশমা সহ" -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "হাত প্রপস" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "হাত দিয়ে" -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "শরীরের অংশ" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "টুপি সঙ্গে" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "মানুষ" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "নেতিবাচক" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "অঙ্গভঙ্গি" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "নিরপেক্ষ/সন্দেহবাদী" -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "ভূমিকা এবং কর্মজীবন" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "ঘুমন্ত" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "ফ্যান্টাসি" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "হাসছে" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "অ্যাথলেটিক্স" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "জিহ্বা দিয়ে" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "বিশ্রাম" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "অসুস্থ" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "পরিবার" -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "মানুষের প্রতীক" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "অন্যান্য পতাকা" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "ত্বক টোন" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "এশিয়ান" -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "চুলের শৈলী" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "ফল" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "স্তন্যপায়ী প্রাণী" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "সীফুড" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "পাখি" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "রান্না করা / প্রস্তুত" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "উভচর" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "মিষ্টি এবং মিছরি" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "সরীসৃপ" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "সবজি" -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "নাবিক জীবন" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "গেম এবং শখ" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "বাগ" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "লিঙ্গ লক্ষণ" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "ফুল" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "আকার এবং রং" -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "অন্যান্য গাছপালা" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "চুলের শৈলী" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "ফল" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "আঙ্গুল বন্ধ" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "সবজি" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "আঙ্গুল খোলা" -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "রান্না করা / প্রস্তুত" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "হাতের চিহ্ন" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "এশিয়ান" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "হাত প্রপস" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "সীফুড" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "আঙুল নির্দেশ করে" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "মিষ্টি এবং মিছরি" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "হাত" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "পান করা" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "থালা বাসন" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "হোটেল" -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "গ্লোব এবং মানচিত্র" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "গৃহস্থালী জিনিস" -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "ভৌগলিক অবস্থান" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "কীপ্যাড অক্ষর" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "ভবন" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "আলো, ফিল্ম এবং ভিডিও" -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "ধর্মীয় ভবন" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "তালা এবং চাবি" -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "অন্যান্য জায়গা" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "মেইল" -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "ভূমি স্থানান্তর" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "গণিত প্রতীক" -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "জল পরিবহন" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "চিকিৎসা" -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "বিমান পরিবহন" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "টাকা" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "হোটেল" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "বানরের মুখ" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "সময়" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "সঙ্গীত" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "আবহাওয়া" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "বাদ্যযন্ত্র" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "ঘটনা এবং ছুটির দিন" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "অফিসে ব্যবহারকৃত জিনিসপত্র" -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "পুরস্কার পদক" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "অন্যান্য বস্তু" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "খেলাধুলা" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "অন্যান্য চিহ্ন" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "গেম এবং শখ" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "মানুষ" -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "চারু এবং কারু" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "পোশাক" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "ফ্যান্টাসি" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "শব্দ" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "অঙ্গভঙ্গি" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "সঙ্গীত" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "বিশ্রাম" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "বাদ্যযন্ত্র" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "ভূমিকা এবং কর্মজীবন" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "অ্যাথলেটিক্স" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "মানুষের প্রতীক" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "ফোন" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "কম্পিউটার" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "ভবন" -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "আলো, ফিল্ম এবং ভিডিও" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "ভৌগলিক অবস্থান" -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "বই এবং কাগজ" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "গ্লোব এবং মানচিত্র" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "টাকা" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "অন্যান্য জায়গা" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "মেইল" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "ধর্মীয় ভবন" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "লেখা" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "ফুল" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "অফিসে ব্যবহারকৃত জিনিসপত্র" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "অন্যান্য গাছপালা" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "তালা এবং চাবি" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "বিরাম চিহ্ন" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "টুলস" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "ধর্মীয় প্রতীক" -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "বিজ্ঞান সরঞ্জাম" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "চিকিৎসা" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "ত্বক টোন" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "গৃহস্থালী জিনিস" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "আবহাওয়া" -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "অন্যান্য বস্তু" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "শব্দ" -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "পরিবহন লক্ষণ" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "খেলাধুলা" -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "সতর্কতা চিহ্ন" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "মহকুমা পতাকা" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "তীর" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "সময়" -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "ধর্মীয় প্রতীক" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "টুলস" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "রাশিচক্র চিহ্ন" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "বিমান পরিবহন" -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "অডিও এবং ভিডিও প্রতীক" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "ভূমি স্থানান্তর" -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "লিঙ্গ লক্ষণ" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "পরিবহন লক্ষণ" -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "গণিত প্রতীক" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "জল পরিবহন" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "বিরাম চিহ্ন" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "সতর্কতা চিহ্ন" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "মুদ্রা" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "লেখা" -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "অন্যান্য চিহ্ন" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "রাশিচক্র চিহ্ন" -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "কীপ্যাড অক্ষর" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "আঞ্চলিক সূচক %s" -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "আলফানিউমেরিক চিহ্ন" +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "তারকাচিহ্ন" -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "আকার এবং রং" +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "সংখ্যা নিদর্শন" -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "অন্যান্য পতাকা" +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "স্বর" -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "দেশের পতাকা" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "গাঢ় ত্বক টোন" -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "মহকুমা পতাকা" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "হালকা ত্বকের স্বর" + +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "মাঝারি ত্বকের স্বর" + +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "মাঝারি-গাঢ় ত্বকের স্বর" + +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "মাঝারি-হালকা ত্বকের স্বর" diff --git a/po/bn/shortcodes.po b/po/bn/shortcodes.po index 80524364..664fec62 100644 --- a/po/bn/shortcodes.po +++ b/po/bn/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/da/messages.po b/po/da/messages.po index 468c7858..212fdc78 100644 --- a/po/da/messages.po +++ b/po/da/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:12-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: da\n" @@ -14,539 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regional indikator %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "farve" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "stjerne" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "oplevelser" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "nummertegn" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "dyr & natur" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "lys teint" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "komponenter" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "medium-lys teint" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "flag" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "medium teint" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "mad & drikke" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "medium-mørk teint" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objekter" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "mørk teint" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "mennesker & krop" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smileys & følelser" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "mennesker & krop" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "komponenter" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symboler" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "dyr & natur" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "rejser & steder" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "mad & drikke" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alfanumeriske symboler" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "rejser & steder" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "padder" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "oplevelser" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "fugle" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objekter" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "bugs" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symboler" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "pattedyr" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "flag" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "livet" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "smilende" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "krybdyr" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "kærlig" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "pile" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "med tungen" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "kunst & kunsthåndværk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "med hænder" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "lyd & video symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutral / skeptisk" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "tildele medaljer" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "søvnig" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "kropsdele" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "utilpas" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "bøger & papir" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "med hatte" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "kat ansigter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "med briller" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "tøj" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "pågældende" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computer" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativ" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "landeflag" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "costumed & skabninger" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valutaer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "kat ansigter" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "service" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "abe ansigter" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "drikke" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "følelser" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "åbne fingre" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "arrangementer & helligdage" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "håndtegn" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "kærlig" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "finger, der peger" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "pågældende" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "lukkede fingre" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "costumed & skabninger" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "hands" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "med briller" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "hånd rekvisitter" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "med hænder" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "kropsdele" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "med hatte" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "personer" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativ" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "bevægelser" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutral / skeptisk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roller & karriere" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "søvnig" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasi" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "smilende" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "atletik" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "med tungen" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "hviler" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "utilpas" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "familie" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "personer symboler" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "andre flag" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "hudfarver" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiatiske" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "frisurer" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "frugt" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "pattedyr" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "skaldyr" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "fugle" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "kogte / tilberedte" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "padder" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "slik & slik" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "krybdyr" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "grøntsager" -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "livet" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "spil & hobbyer" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "bugs" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "kønstegn" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "blomster" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "former & farver" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "andre planter" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "frisurer" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "frugt" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "lukkede fingre" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "grøntsager" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "åbne fingre" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "kogte / tilberedte" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "håndtegn" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiatiske" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "hånd rekvisitter" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "skaldyr" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "finger, der peger" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "slik & slik" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "hands" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "drikke" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "service" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "glober & kort" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "husholdningsartikler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geografiske placeringer" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "tastaturtegn" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "bygninger" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "lys, film & video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religiøse bygninger" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "lås & nøgler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "andre steder" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "post" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "landtransport" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "matematiske symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "vand transport" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medicinsk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "lufttransport" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "mønt" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "abe ansigter" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "tid" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "musik" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "vejr" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "musikinstrumenter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "arrangementer & helligdage" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "kontorartikler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "tildele medaljer" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "andre objekter" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sportsgrene" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "andre symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "spil & hobbyer" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "personer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "kunst & kunsthåndværk" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "tøj" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasi" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "lyd" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "bevægelser" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "musik" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "hviler" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "musikinstrumenter" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roller & karriere" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "atletik" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "personer symboler" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "bygninger" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "lys, film & video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geografiske placeringer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "bøger & papir" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "glober & kort" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "mønt" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "andre steder" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "post" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religiøse bygninger" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "skrive" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "blomster" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "kontorartikler" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "andre planter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "lås & nøgler" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "tegnsætning" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "værktøj" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religiøse symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "videnskabeligt udstyr" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medicinsk" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "hudfarver" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "husholdningsartikler" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "vejr" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "andre objekter" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "lyd" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transportskilte" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sportsgrene" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "advarselssymboler" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "underinddelingsflag" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "pile" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "tid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religiøse symboler" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "værktøj" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "stjernetegn tegn" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "lufttransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "lyd & video symboler" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "landtransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "kønstegn" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transportskilte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "matematiske symboler" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "vand transport" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "tegnsætning" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "advarselssymboler" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valutaer" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "skrive" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "andre symboler" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "stjernetegn tegn" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "tastaturtegn" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regional indikator %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "stjerne" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "nummertegn" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "farve" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alfanumeriske symboler" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "mørk teint" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "former & farver" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "lys teint" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "andre flag" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "medium teint" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "landeflag" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "medium-mørk teint" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "underinddelingsflag" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "medium-lys teint" diff --git a/po/da/shortcodes.po b/po/da/shortcodes.po index 77b267a9..7c1bdca8 100644 --- a/po/da/shortcodes.po +++ b/po/da/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/de/messages.po b/po/de/messages.po index a93764e3..dcc805c4 100644 --- a/po/de/messages.po +++ b/po/de/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:17-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: de\n" @@ -14,569 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regionaler Indikator %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "Farbe" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "Sternchen" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "Aktivitäten" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "Nummernschild" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "Tiere & Natur" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "heller Hautton" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "Komponenten" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "mittelheller Hautton" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "Flaggen" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "mittlerer Hautton" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "Essen & Trinken" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "mitteldunkrer Hautton" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "Gegenstände" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "dunkler Hautton" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "Menschen & Körper" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "Smileys & Emotionen" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "Menschen & Körper" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "Komponenten" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "Symbole" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "Tiere & Natur" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "Reisen & Orte" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "Essen & Trinken" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alphanumerische Symbole" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "Reisen & Orte" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "Amphibien" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "Aktivitäten" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "Vögel" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "Gegenstände" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "Fehler" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "Symbole" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "Säugetiere" -#, fuzzy -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "Flaggen" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "Meereslebewesen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "Lächelnd" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "Reptilien" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "Liebevoll" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "Pfeile" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "mit Zunge" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "Kunsthandwerk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "mit Händen" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "Audio- & Videosymbole" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutral / skeptisch" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "Auszeichnung enden" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "Schläfrig" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "Körperteile" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "Unwohl" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "Bücher & Papier" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "mit Hüten" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "Katzengesichter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "mit Brille" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "Kleidung" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "betroffen" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "Computer" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativ" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "Länderflaggen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "kostümiert & Kreaturen" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "Währungen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "Katzengesichter" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "Geschirr" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "Affengesichter" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "Trinken" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "Emotionen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "Finger offen" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "Veranstaltungen & Feiertage" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "Handzeichen" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "Liebevoll" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "Fingerzeige" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "betroffen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "Finger geschlossen" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "kostümiert & Kreaturen" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "Hände" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "mit Brille" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "Handrequisiten" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "mit Händen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "Körperteile" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "mit Hüten" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "Personen" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "Gesten" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutral / skeptisch" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "Rollen & Karrieren" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "Schläfrig" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "Fantasie" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "Lächelnd" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "Leichtathletik" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "mit Zunge" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "Ruhe" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "Unwohl" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "Familie" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "Personensymbole" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "andere Flaggen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "Hauttöne" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "Asiatisch" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "Frisuren" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "Frucht" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "Säugetiere" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "Meeresfrüchte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "Vögel" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "gekocht / zubereitet" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "Amphibien" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "Süßigkeiten & Süßigkeiten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "Reptilien" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "Gemüse" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "Meereslebewesen" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "Spiele & Hobbys" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "Fehler" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "Geschlechtszeichen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "Blumen" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "Formen & Farben" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "andere Pflanzen" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "Frisuren" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "Frucht" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "Finger geschlossen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "Gemüse" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "Finger offen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "gekocht / zubereitet" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "Handzeichen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "Asiatisch" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "Handrequisiten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "Meeresfrüchte" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "Fingerzeige" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "Süßigkeiten & Süßigkeiten" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "Hände" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "Trinken" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "Geschirr" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "Unterkunft" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "Globen & Karten" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "Haushaltsgegenstände" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geographische Standorte" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "Tastaturzeichen" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "Gebäude" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "Licht, Film & Video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religiöse Gebäude" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "Schloss & Schlüssel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "andere Orte" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "Mail" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "Bodentransport" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "mathematische Symbole" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "Wassertransport" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "Medizinisch" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "Lufttransport" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "Geld" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "Unterkunft" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "Affengesichter" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "Zeit" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "Musik" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "Wetter" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "Musikinstrumente" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "Veranstaltungen & Feiertage" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "Bürobedarfe" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "Auszeichnung enden" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "andere Objekte" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "Sportarten" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "andere Symbole" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "Spiele & Hobbys" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "Personen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "Kunsthandwerk" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "Kleidung" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "Fantasie" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "Klang" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "Gesten" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "Musik" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "Ruhe" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "Musikinstrumente" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "Rollen & Karrieren" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "Leichtathletik" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "Personensymbole" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "Telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "Computer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "Gebäude" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "Licht, Film & Video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geographische Standorte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "Bücher & Papier" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "Globen & Karten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "Geld" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "andere Orte" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "Mail" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religiöse Gebäude" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "Schreiben" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "Blumen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "Bürobedarfe" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "andere Pflanzen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "Schloss & Schlüssel" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "Satzzeichen" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "Werkzeuge" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religiöse Symbole" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "wissenschaftliche Ausrüstung" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "Medizinisch" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "Hauttöne" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "Haushaltsgegenstände" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "Wetter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "andere Objekte" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "Klang" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "Verkehrszeichen" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "Sportarten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "Warnsymbole" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "Unterteilungsflags" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "Pfeile" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "Zeit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religiöse Symbole" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "Werkzeuge" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "Tierkreiszeichen" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "Lufttransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "Audio- & Videosymbole" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "Bodentransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "Geschlechtszeichen" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "Verkehrszeichen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "mathematische Symbole" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "Wassertransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "Satzzeichen" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "Warnsymbole" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "Währungen" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "Schreiben" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "andere Symbole" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "Tierkreiszeichen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "Tastaturzeichen" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regionaler Indikator %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "Sternchen" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "Nummernschild" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "Farbe" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alphanumerische Symbole" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "dunkler Hautton" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "Formen & Farben" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "heller Hautton" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "andere Flaggen" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "mittlerer Hautton" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "Länderflaggen" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "mitteldunkrer Hautton" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "Unterteilungsflags" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "mittelheller Hautton" diff --git a/po/de/shortcodes.po b/po/de/shortcodes.po index 1e87115c..52518e45 100644 --- a/po/de/shortcodes.po +++ b/po/de/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/en-gb/messages.po b/po/en-gb/messages.po index bd4d6353..7a1faf13 100644 --- a/po/en-gb/messages.po +++ b/po/en-gb/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:01-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: en_GB\n" @@ -14,764 +14,603 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0\n" -# Custom -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regional indicator %s" - -# Custom -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "tone" - -# Custom -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisk" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "activities" -# Custom -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "number sign" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "animals & nature" -# Custom -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "light skin tone" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "components" -# Custom -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "medium-light skin tone" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "flags" -# Custom -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "medium skin tone" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "food & drink" -# Custom -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "medium-dark skin tone" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objects" -# Custom -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "dark skin tone" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "people & body" -# 0: smileys-emotion -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smileys & emotion" -# 1: people-body -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "people & body" - -# 2: component -#, fuzzy -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "components" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symbols" -# 3: animals-nature -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "animals & nature" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "travel & places" -# 4: food-drink -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "food & drink" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alphanumeric symbols" -# 5: travel-places -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "travel & places" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "amphibians" -# 6: activities -# 26: person-activity -#, fuzzy -#| msgctxt "EMOJI GROUP: activities, EMOJI SUB-GROUP: person-activity" -#| msgid "activities" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "activities" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "birds" -# 7: objects -#, fuzzy -#| msgctxt "EMOJI GROUP: objects" -#| msgid "objects" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objects" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "bugs" -# 8: symbols -#, fuzzy -#| msgctxt "EMOJI GROUP: symbols" -#| msgid "symbols" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symbols" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mammals" -# 9: flags -#, fuzzy -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "flags" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "marine life" -# 0: face-smiling -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "smiling" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptiles" -# 1: face-affection -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "affectionate" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "arrows" -# 2: face-tongue -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "with tongue" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "arts & crafts" -# 3: face-hand -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "with hands" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "audio & video symbols" -# 4: face-neutral-skeptical -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutral / skeptical" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "award medals" -# 5: face-sleepy -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "sleepy" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "body parts" -# 6: face-unwell -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "unwell" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "books & paper" -# 7: face-hat -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "with hats" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "cat faces" -# 8: face-glasses -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "with glasses" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "clothing" -# 9: face-concerned -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "concerned" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computer" -# 10: face-negative -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-negative" -#| msgid "negative" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negative" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "country flags" -# 11: face-costume -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "costumed & creatures" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "currencies" -# 12: cat-face -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "cat faces" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "dishware" -# 13: monkey-face -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "monkey faces" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "drink" -# 14: emotion -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emotions" -# 15: hand-fingers-open -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "fingers open" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "events & holidays" -# 16: hand-fingers-partial -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "hand signs" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "affectionate" -# 17: hand-single-finger -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "finger pointing" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "concerned" -# 18: hand-fingers-closed -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "fingers closed" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "costumed & creatures" -# 19: hands -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "hands" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "with glasses" -# 20: hand-prop -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "hand props" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "with hands" -# 21: body-parts -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "body parts" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "with hats" -# 22: person -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person" -#| msgid "people" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "people" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negative" -# 23: person-gesture -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gestures" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutral / skeptical" -# 24: person-role -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roles & careers" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "sleepy" -# 25: person-fantasy -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasy" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "smiling" -# 27: person-sport -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person-sport" -#| msgid "athletics" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "athletics" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "with tongue" -# 28: person-resting -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "resting" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "unwell" -# 29: family -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: family" -#| msgid "family" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "family" -# 30: person-symbol -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "people symbols" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "other flags" -# 31: skin-tone -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "skin tones" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asian" -# 32: hair-style -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "hair styles" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "fruit" -# 33: animal-mammal -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-mammal" -#| msgid "mammals" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mammals" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "seafood" -# 34: animal-bird -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-bird" -#| msgid "birds" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "birds" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "cooked / prepared" -# 35: animal-amphibian -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-amphibian" -#| msgid "amphibians" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "amphibians" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "sweets & candy" -# 36: animal-reptile -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-reptile" -#| msgid "reptiles" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptiles" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "vegetables" -# 37: animal-marine -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "marine life" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "games & hobbies" -# 38: animal-bug -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-bug" -#| msgid "bugs" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "bugs" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "gender signs" -# 39: plant-flower -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "flowers" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "shapes & colors" -# 40: plant-other -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "other plants" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "hair styles" -# 41: food-fruit -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "fruit" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "fingers closed" -# 42: food-vegetable -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "vegetables" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "fingers open" -# 43: food-prepared -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "cooked / prepared" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "hand signs" -# 44: food-asian -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: food-asian" -#| msgid "asian" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asian" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "hand props" -# 45: food-marine -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "seafood" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "finger pointing" -# 46: food-sweet -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "sweets & candy" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "hands" -# 47: drink -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "drink" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -# 48: dishware -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "dishware" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -# 49: place-map -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globes & maps" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "household items" -# 50: place-geographic -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geographic locations" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "keypad characters" -# 51: place-building -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: place-building" -#| msgid "buildings" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "administrators" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "light, film & video" -# 52: place-religious -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religious buildings" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "lock & keys" -# 53: place-other -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "other places" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "mail" -# 54: transport-ground -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "ground transportation" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "math symbols" -# 55: transport-water -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "water transportation" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medical" -# 56: transport-air -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "air transportation" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "money" -# 57: hotel -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hotel" -#| msgid "hotel" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "monkey faces" -# 58: time -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: time" -#| msgid "time" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "time" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "music" -# 59: sky-weather -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: sky-weather" -#| msgid "weather" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "weather" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "musical instruments" -# 60: event -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "events & holidays" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "office supplies" -# 61: award-medal -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "award medals" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "other objects" -# 62: sport -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sports" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "other symbols" -# 63: game -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "games & hobbies" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "people" -# 64: arts-crafts -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "arts & crafts" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -# 65: clothing -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: clothing" -#| msgid "clothing" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "clothing" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasy" -# 66: sound -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: sound" -#| msgid "sound" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "sound" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gestures" -# 67: music -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: music" -#| msgid "music" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "music" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "resting" -# 68: musical-instrument -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "musical instruments" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roles & careers" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "athletics" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "people symbols" -# 69: phone -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: phone" -#| msgid "phone" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "phone" -# 70: computer -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: computer" -#| msgid "computer" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "administrators" -# 71: light-video -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "light, film & video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geographic locations" -# 72: book-paper -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "books & paper" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globes & maps" -# 73: money -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: money" -#| msgid "money" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "money" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "other places" -# 74: mail -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: mail" -#| msgid "mail" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "mail" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religious buildings" -# 75: writing -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: writing" -#| msgid "writing" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "writing" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "flowers" -# 76: office -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "office supplies" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "other plants" -# 77: lock -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "lock & keys" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "punctuation" -# 78: tool -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: tool" -#| msgid "tools" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "tools" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religious symbols" -# 79: science -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "science equipment" -# 80: medical -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: medical" -#| msgid "medical" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medical" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "skin tones" -# 81: household -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "household items" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "weather" -# 82: other-object -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "other objects" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "sound" -# 83: transport-sign -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transport signs" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sports" -# 84: warning -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "warning symbols" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "subdivision flags" -# 85: arrow -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: arrow" -#| msgid "arrows" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "arrows" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "time" -# 86: religion -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religious symbols" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "tools" -# 87: zodiac -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "zodiac signs" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "air transportation" -# 88: av-symbol -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "audio & video symbols" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "ground transportation" -# 89: gender -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "gender signs" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transport signs" -# 90: math -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "math symbols" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "water transportation" -# 91: punctuation -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "punctuation" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "warning symbols" -# 92: currency -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: currency" -#| msgid "currencies" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "currencies" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "writing" -# 93: other-symbol -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "other symbols" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "zodiac signs" -# 94: keycap -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "keypad characters" +# Custom +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regional indicator %s" -# 95: alphanum -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alphanumeric symbols" +# Custom +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisk" -# 96: geometric -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "shapes & colors" +# Custom +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "number sign" -# 97: flag -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "other flags" +# Custom +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "tone" -# 98: country-flag -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "country flags" +# Custom +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "dark skin tone" -# 99: subdivision-flag -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "subdivision flags" +# Custom +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "light skin tone" + +# Custom +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "medium skin tone" + +# Custom +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "medium-dark skin tone" + +# Custom +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "medium-light skin tone" diff --git a/po/en-gb/shortcodes.po b/po/en-gb/shortcodes.po index 03e0853e..57c04f3e 100644 --- a/po/en-gb/shortcodes.po +++ b/po/en-gb/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: en_GB\n" @@ -1204,6 +1204,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "broccoli" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1224,6 +1229,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "brown_heart" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3184,6 +3194,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "family" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5504,6 +5534,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "hatching_chick" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6554,6 +6594,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "lightning" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7019,11 +7064,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "man_in_manual_wheelchair" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "man_in_motorized_wheelchair" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7049,6 +7104,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "man_kneeling" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7119,6 +7179,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "man_running" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7189,6 +7254,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "man_walking" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7214,6 +7284,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "man_with_white_cane" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8649,11 +8724,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "person_in_manual_wheelchair" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "person_in_motorized_wheelchair" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8679,6 +8764,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "person_kneeling" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8719,6 +8809,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "person_running" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8764,6 +8859,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "person_walking" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8794,6 +8894,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "person_with_white_cane" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8809,6 +8914,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "philippines" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12299,11 +12409,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "woman_in_manual_wheelchair" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "woman_in_motorized_wheelchair" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12329,6 +12449,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "woman_kneeling" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12399,6 +12524,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "woman_running" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12469,6 +12599,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "woman_walking" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12499,6 +12634,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "woman_with_white_cane" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/en/messages.po b/po/en/messages.po index 20ac7783..b9ce7ef3 100644 --- a/po/en/messages.po +++ b/po/en/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:00-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: en\n" @@ -14,924 +14,603 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.0\n" -# Custom -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regional indicator %s" - -# Custom -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "tone" - -# Custom -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisk" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "activities" -# Custom -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "number sign" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "animals & nature" -# Custom -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "light skin tone" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "components" -# Custom -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "medium-light skin tone" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "flags" -# Custom -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "medium skin tone" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "food & drink" -# Custom -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "medium-dark skin tone" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objects" -# Custom -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "dark skin tone" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "people & body" -# 0: smileys-emotion -#, fuzzy -#| msgctxt "EMOJI GROUP: smileys-emotion" -#| msgid "smileys & emotion" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smileys & emotion" -# 1: people-body -#, fuzzy -#| msgctxt "EMOJI GROUP: people-body" -#| msgid "people & body" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "people & body" - -# 2: component -#, fuzzy -#| msgctxt "EMOJI GROUP: component" -#| msgid "components" -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "components" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symbols" -# 3: animals-nature -#, fuzzy -#| msgctxt "EMOJI GROUP: animals-nature" -#| msgid "animals & nature" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "animals & nature" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "travel & places" -# 4: food-drink -#, fuzzy -#| msgctxt "EMOJI GROUP: food-drink" -#| msgid "food & drink" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "food & drink" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alphanumeric symbols" -# 5: travel-places -#, fuzzy -#| msgctxt "EMOJI GROUP: travel-places" -#| msgid "travel & places" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "travel & places" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "amphibians" -# 6: activities -# 26: person-activity -#, fuzzy -#| msgctxt "EMOJI GROUP: activities, EMOJI SUB-GROUP: person-activity" -#| msgid "activities" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "activities" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "birds" -# 7: objects -#, fuzzy -#| msgctxt "EMOJI GROUP: objects" -#| msgid "objects" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objects" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "bugs" -# 8: symbols -#, fuzzy -#| msgctxt "EMOJI GROUP: symbols" -#| msgid "symbols" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symbols" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mammals" -# 9: flags -#, fuzzy -#| msgctxt "EMOJI GROUP: flags" -#| msgid "flags" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "flags" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "marine life" -# 0: face-smiling -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-smiling" -#| msgid "smiling" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "smiling" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptiles" -# 1: face-affection -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-affection" -#| msgid "affectionate" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "affectionate" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "arrows" -# 2: face-tongue -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-tongue" -#| msgid "with tongue" -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "with tongue" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "arts & crafts" -# 3: face-hand -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-hand" -#| msgid "with hands" -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "with hands" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "audio & video symbols" -# 4: face-neutral-skeptical -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" -#| msgid "neutral / skeptical" -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutral / skeptical" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "award medals" -# 5: face-sleepy -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-sleepy" -#| msgid "sleepy" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "sleepy" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "body parts" -# 6: face-unwell -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-unwell" -#| msgid "unwell" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "unwell" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "books & paper" -# 7: face-hat -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-hat" -#| msgid "with hats" -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "with hats" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "cat faces" -# 8: face-glasses -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-glasses" -#| msgid "with glasses" -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "with glasses" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "clothing" -# 9: face-concerned -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-concerned" -#| msgid "concerned" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "concerned" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computer" -# 10: face-negative -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-negative" -#| msgid "negative" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negative" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "country flags" -# 11: face-costume -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: face-costume" -#| msgid "costumed & creatures" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "costumed & creatures" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "currencies" -# 12: cat-face -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: cat-face" -#| msgid "cat faces" -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "cat faces" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "dishware" -# 13: monkey-face -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: monkey-face" -#| msgid "monkey faces" -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "monkey faces" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "drink" -# 14: emotion -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: emotion" -#| msgid "emotions" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emotions" -# 15: hand-fingers-open -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hand-fingers-open" -#| msgid "fingers open" -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "fingers open" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "events & holidays" -# 16: hand-fingers-partial -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" -#| msgid "hand signs" -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "hand signs" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "affectionate" -# 17: hand-single-finger -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hand-single-finger" -#| msgid "finger pointing" -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "finger pointing" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "concerned" -# 18: hand-fingers-closed -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" -#| msgid "fingers closed" -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "fingers closed" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "costumed & creatures" -# 19: hands -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hands" -#| msgid "hands" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "hands" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "with glasses" -# 20: hand-prop -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hand-prop" -#| msgid "hand props" -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "hand props" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "with hands" -# 21: body-parts -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: body-parts" -#| msgid "body parts" -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "body parts" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "with hats" -# 22: person -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person" -#| msgid "people" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "people" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negative" -# 23: person-gesture -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person-gesture" -#| msgid "gestures" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gestures" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutral / skeptical" -# 24: person-role -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person-role" -#| msgid "roles & careers" -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roles & careers" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "sleepy" -# 25: person-fantasy -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person-fantasy" -#| msgid "fantasy" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasy" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "smiling" -# 27: person-sport -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person-sport" -#| msgid "athletics" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "athletics" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "with tongue" -# 28: person-resting -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person-resting" -#| msgid "resting" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "resting" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "unwell" -# 29: family -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: family" -#| msgid "family" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "family" -# 30: person-symbol -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: person-symbol" -#| msgid "people symbols" -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "people symbols" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "other flags" -# 31: skin-tone -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: skin-tone" -#| msgid "skin tones" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "skin tones" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asian" -# 32: hair-style -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hair-style" -#| msgid "hair styles" -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "hair styles" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "fruit" -# 33: animal-mammal -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-mammal" -#| msgid "mammals" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mammals" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "seafood" -# 34: animal-bird -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-bird" -#| msgid "birds" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "birds" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "cooked / prepared" -# 35: animal-amphibian -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-amphibian" -#| msgid "amphibians" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "amphibians" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "sweets & candy" -# 36: animal-reptile -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-reptile" -#| msgid "reptiles" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptiles" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "vegetables" -# 37: animal-marine -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-marine" -#| msgid "marine life" -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "marine life" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "games & hobbies" -# 38: animal-bug -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: animal-bug" -#| msgid "bugs" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "bugs" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "gender signs" -# 39: plant-flower -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: plant-flower" -#| msgid "flowers" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "flowers" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "shapes & colors" -# 40: plant-other -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: plant-other" -#| msgid "other plants" -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "other plants" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "hair styles" -# 41: food-fruit -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: food-fruit" -#| msgid "fruit" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "fruit" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "fingers closed" -# 42: food-vegetable -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: food-vegetable" -#| msgid "vegetables" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "vegetables" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "fingers open" -# 43: food-prepared -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: food-prepared" -#| msgid "cooked / prepared" -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "cooked / prepared" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "hand signs" -# 44: food-asian -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: food-asian" -#| msgid "asian" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asian" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "hand props" -# 45: food-marine -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: food-marine" -#| msgid "seafood" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "seafood" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "finger pointing" -# 46: food-sweet -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: food-sweet" -#| msgid "sweets & candy" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "sweets & candy" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "hands" -# 47: drink -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: drink" -#| msgid "drink" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "drink" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -# 48: dishware -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: dishware" -#| msgid "dishware" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "dishware" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -# 49: place-map -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: place-map" -#| msgid "globes & maps" -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globes & maps" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "household items" -# 50: place-geographic -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: place-geographic" -#| msgid "geographic locations" -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geographic locations" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "keypad characters" -# 51: place-building -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: place-building" -#| msgid "buildings" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "buildings" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "light, film & video" -# 52: place-religious -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: place-religious" -#| msgid "religious buildings" -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religious buildings" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "lock & keys" -# 53: place-other -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: place-other" -#| msgid "other places" -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "other places" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "mail" -# 54: transport-ground -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: transport-ground" -#| msgid "ground transportation" -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "ground transportation" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "math symbols" -# 55: transport-water -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: transport-water" -#| msgid "water transportation" -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "water transportation" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medical" -# 56: transport-air -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: transport-air" -#| msgid "air transportation" -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "air transportation" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "money" -# 57: hotel -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: hotel" -#| msgid "hotel" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "monkey faces" -# 58: time -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: time" -#| msgid "time" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "time" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "music" -# 59: sky-weather -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: sky-weather" -#| msgid "weather" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "weather" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "musical instruments" -# 60: event -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: event" -#| msgid "events & holidays" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "events & holidays" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "office supplies" -# 61: award-medal -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: award-medal" -#| msgid "award medals" -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "award medals" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "other objects" -# 62: sport -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: sport" -#| msgid "sports" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sports" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "other symbols" -# 63: game -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: game" -#| msgid "games & hobbies" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "games & hobbies" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "people" -# 64: arts-crafts -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: arts-crafts" -#| msgid "arts & crafts" -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "arts & crafts" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -# 65: clothing -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: clothing" -#| msgid "clothing" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "clothing" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasy" -# 66: sound -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: sound" -#| msgid "sound" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "sound" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gestures" -# 67: music -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: music" -#| msgid "music" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "music" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "resting" -# 68: musical-instrument -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: musical-instrument" -#| msgid "musical instruments" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "musical instruments" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roles & careers" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "athletics" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "people symbols" -# 69: phone -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: phone" -#| msgid "phone" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "phone" -# 70: computer -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: computer" -#| msgid "computer" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "buildings" -# 71: light-video -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: light-video" -#| msgid "light, film & video" -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "light, film & video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geographic locations" -# 72: book-paper -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: book-paper" -#| msgid "books & paper" -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "books & paper" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globes & maps" -# 73: money -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: money" -#| msgid "money" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "money" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "other places" -# 74: mail -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: mail" -#| msgid "mail" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "mail" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religious buildings" -# 75: writing -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: writing" -#| msgid "writing" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "writing" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "flowers" -# 76: office -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: office" -#| msgid "office supplies" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "office supplies" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "other plants" -# 77: lock -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: lock" -#| msgid "lock & keys" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "lock & keys" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "punctuation" -# 78: tool -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: tool" -#| msgid "tools" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "tools" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religious symbols" -# 79: science -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: science" -#| msgid "science equipment" -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "science equipment" -# 80: medical -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: medical" -#| msgid "medical" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medical" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "skin tones" -# 81: household -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: household" -#| msgid "household items" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "household items" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "weather" -# 82: other-object -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: other-object" -#| msgid "other objects" -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "other objects" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "sound" -# 83: transport-sign -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: transport-sign" -#| msgid "transport signs" -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transport signs" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sports" -# 84: warning -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: warning" -#| msgid "warning symbols" -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "warning symbols" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "subdivision flags" -# 85: arrow -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: arrow" -#| msgid "arrows" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "arrows" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "time" -# 86: religion -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: religion" -#| msgid "religious symbols" -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religious symbols" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "tools" -# 87: zodiac -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: zodiac" -#| msgid "zodiac signs" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "zodiac signs" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "air transportation" -# 88: av-symbol -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: av-symbol" -#| msgid "audio & video symbols" -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "audio & video symbols" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "ground transportation" -# 89: gender -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: gender" -#| msgid "gender signs" -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "gender signs" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transport signs" -# 90: math -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: math" -#| msgid "math symbols" -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "math symbols" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "water transportation" -# 91: punctuation -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: punctuation" -#| msgid "punctuation" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "punctuation" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "warning symbols" -# 92: currency -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: currency" -#| msgid "currencies" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "currencies" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "writing" -# 93: other-symbol -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: other-symbol" -#| msgid "other symbols" -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "other symbols" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "zodiac signs" -# 94: keycap -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: keycap" -#| msgid "keypad characters" -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "keypad characters" +# Custom +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regional indicator %s" -# 95: alphanum -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: alphanum" -#| msgid "alphanumeric symbols" -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alphanumeric symbols" +# Custom +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisk" -# 96: geometric -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: geometric" -#| msgid "shapes & colors" -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "shapes & colors" +# Custom +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "number sign" -# 97: flag -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: flag" -#| msgid "other flags" -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "other flags" +# Custom +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "tone" -# 98: country-flag -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: country-flag" -#| msgid "country flags" -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "country flags" +# Custom +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "dark skin tone" -# 99: subdivision-flag -#, fuzzy -#| msgctxt "EMOJI SUB-GROUP: subdivision-flag" -#| msgid "subdivision flags" -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "subdivision flags" +# Custom +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "light skin tone" + +# Custom +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "medium skin tone" + +# Custom +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "medium-dark skin tone" + +# Custom +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "medium-light skin tone" diff --git a/po/en/shortcodes.po b/po/en/shortcodes.po index 2a19f7ed..a5502808 100644 --- a/po/en/shortcodes.po +++ b/po/en/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: en\n" @@ -1204,6 +1204,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "broccoli" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "broken_chain" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1224,6 +1229,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "brown_heart" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "brown_mushroom" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3184,6 +3194,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "family" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "family_aac" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "family_aacc" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "family_ac" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "family_acc" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5504,6 +5534,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "hatching_chick" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "head_shaking_horizontally" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "head_shaking_vertically" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6554,6 +6594,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "lightning" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "lime" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7019,11 +7064,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "man_in_manual_wheelchair" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "man_in_manual_wheelchair_right" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "man_in_motorized_wheelchair" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "man_in_motorized_wheelchair_right" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7049,6 +7104,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "man_kneeling" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "man_kneeling_right" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7119,6 +7179,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "man_running" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "man_running_right" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7189,6 +7254,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "man_walking" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "man_walking_right" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7214,6 +7284,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "man_with_white_cane" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "man_with_white_cane_right" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8649,11 +8724,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "person_in_manual_wheelchair" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "person_in_manual_wheelchair_right" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "person_in_motorized_wheelchair" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "person_in_motorized_wheelchair_right" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8679,6 +8764,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "person_kneeling" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "person_kneeling_right" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8719,6 +8809,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "person_running" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "person_running_right" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8764,6 +8859,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "person_walking" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "person_walking_right" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8794,6 +8894,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "person_with_white_cane" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "person_with_white_cane_right" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8809,6 +8914,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "philippines" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "phoenix" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12299,11 +12409,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "woman_in_manual_wheelchair" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "woman_in_manual_wheelchair_right" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "woman_in_motorized_wheelchair" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "woman_in_motorized_wheelchair_right" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12329,6 +12449,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "woman_kneeling" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "woman_kneeling_right" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12399,6 +12524,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "woman_running" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "woman_running_right" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12469,6 +12599,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "woman_walking" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "woman_walking_right" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12499,6 +12634,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "woman_with_white_cane" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "woman_with_white_cane_right" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" @@ -12733,143 +12873,3 @@ msgstr "zombie" msgctxt "EMOJI: 💤 ZZZ" msgid "zzz" msgstr "zzz" - -# 1F642-200D-2194-FE0F -msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" -msgid "head_shaking_horizontally" -msgstr "head_shaking_horizontally" - -# 1F642-200D-2195-FE0F -msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" -msgid "head_shaking_vertically" -msgstr "head_shaking_vertically" - -# 1F6B6-200D-27A1-FE0F -msgctxt "EMOJI: 🚶‍➡️ person walking facing right" -msgid "person_walking_right" -msgstr "person_walking_right" - -# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" -msgid "woman_walking_right" -msgstr "woman_walking_right" - -# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" -msgid "man_walking_right" -msgstr "man_walking_right" - -# 1F9CE-200D-27A1-FE0F -msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" -msgid "person_kneeling_right" -msgstr "person_kneeling_right" - -# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" -msgid "woman_kneeling_right" -msgstr "woman_kneeling_right" - -# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" -msgid "man_kneeling_right" -msgstr "man_kneeling_right" - -# 1F9D1-200D-1F9AF-200D-27A1-FE0F -msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" -msgid "person_with_white_cane_right" -msgstr "person_with_white_cane_right" - -# 1F468-200D-1F9AF-200D-27A1-FE0F -msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" -msgid "man_with_white_cane_right" -msgstr "man_with_white_cane_right" - -# 1F469-200D-1F9AF-200D-27A1-FE0F -msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" -msgid "woman_with_white_cane_right" -msgstr "woman_with_white_cane_right" - -# 1F9D1-200D-1F9BC-200D-27A1-FE0F -msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" -msgid "person_in_motorized_wheelchair_right" -msgstr "person_in_motorized_wheelchair_right" - -# 1F468-200D-1F9BC-200D-27A1-FE0F -msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" -msgid "man_in_motorized_wheelchair_right" -msgstr "man_in_motorized_wheelchair_right" - -# 1F469-200D-1F9BC-200D-27A1-FE0F -msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" -msgid "woman_in_motorized_wheelchair_right" -msgstr "woman_in_motorized_wheelchair_right" - -# 1F9D1-200D-1F9BD-200D-27A1-FE0F -msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" -msgid "person_in_manual_wheelchair_right" -msgstr "person_in_manual_wheelchair_right" - -# 1F468-200D-1F9BD-200D-27A1-FE0F -msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" -msgid "man_in_manual_wheelchair_right" -msgstr "man_in_manual_wheelchair_right" - -# 1F469-200D-1F9BD-200D-27A1-FE0F -msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" -msgid "woman_in_manual_wheelchair_right" -msgstr "woman_in_manual_wheelchair_right" - -# 1F3C3-200D-27A1-FE0F -msgctxt "EMOJI: 🏃‍➡️ person running facing right" -msgid "person_running_right" -msgstr "person_running_right" - -# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" -msgid "woman_running_right" -msgstr "woman_running_right" - -# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F -msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" -msgid "man_running_right" -msgstr "man_running_right" - -# 1F9D1-200D-1F9D1-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" -msgid "family_aac" -msgstr "family_aac" - -# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" -msgid "family_aacc" -msgstr "family_aacc" - -# 1F9D1-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧒 family: adult, child" -msgid "family_ac" -msgstr "family_ac" - -# 1F9D1-200D-1F9D2-200D-1F9D2 -msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" -msgid "family_acc" -msgstr "family_acc" - -# 1F426-200D-1F525 -msgctxt "EMOJI: 🐦‍🔥 phoenix" -msgid "phoenix" -msgstr "phoenix" - -# 1F34B-200D-1F7E9 -msgctxt "EMOJI: 🍋‍🟩 lime" -msgid "lime" -msgstr "lime" - -# 1F344-200D-1F7EB -msgctxt "EMOJI: 🍄‍🟫 brown mushroom" -msgid "brown_mushroom" -msgstr "brown_mushroom" - -# 26D3-FE0F-200D-1F4A5 -msgctxt "EMOJI: ⛓️‍💥 broken chain" -msgid "broken_chain" -msgstr "broken_chain" diff --git a/po/es-mx/messages.po b/po/es-mx/messages.po index 5e9d7db0..7b9d771d 100644 --- a/po/es-mx/messages.po +++ b/po/es-mx/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:20-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: es_MX\n" @@ -14,544 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "indicador regional %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "color" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisco" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "actividades" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "símbolo de número" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "animales y la naturaleza" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "tono de piel claro" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "componentes" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "tono de piel medio claro" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "banderas" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "tono de piel medio" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "comida y bebida" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "tono de piel medio-oscuro" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objetos" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "tono de piel oscuro" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "personas y cuerpo" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "emoticonos y emoción" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "personas y cuerpo" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "componentes" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "símbolos" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "animales y la naturaleza" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "viajes y lugares" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "comida y bebida" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "símbolos alfanuméricos" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "viajes y lugares" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "anfibios" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "actividades" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "aves" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objetos" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "insectos" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "símbolos" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mamíferos" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "banderas" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "vida marina" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "sonriendo" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptiles" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "cariñoso" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "flechas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "con lengua" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "artes y oficios" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "manos" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "símbolos de audio y vídeo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutral / escéptico" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "medallas de premio" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "somnoliento" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "partes del cuerpo" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "enfermo" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "libros & papel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "con sombreros" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "caras de gato" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "con gafas" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "ropa" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "preocupado" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computadora" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativo" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "banderas del país" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "disfrazado & criaturas" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "monedas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "caras de gato" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "vajilla" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "caras de mono" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "bebida" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emociones" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "dedos abiertos" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "eventos y días festivos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "signos de mano" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "cariñoso" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "señalando con el dedo" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "preocupado" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "dedos cerrados" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "disfrazado & criaturas" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "manos" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "con gafas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "apoyos de mano" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "manos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "partes del cuerpo" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "con sombreros" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "personas" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativo" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gestos" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutral / escéptico" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roles y carreras" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "somnoliento" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasía" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "sonriendo" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "atletismo" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "con lengua" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "descansando" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "enfermo" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "familia" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "símbolos de la gente" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "otras banderas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "tonos de piel" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiático" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "estilos de cabello" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "fruta" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mamíferos" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "mariscos" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "aves" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "cocido / preparado" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "anfibios" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "dulces y dulces" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptiles" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "verduras y hortalizas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "vida marina" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "juegos y pasatiempos" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "insectos" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "signos de género" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "flores" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "formas y colores" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "otras plantas" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "estilos de cabello" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "fruta" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "dedos cerrados" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "verduras y hortalizas" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "dedos abiertos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "cocido / preparado" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "signos de mano" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiático" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "apoyos de mano" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "mariscos" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "señalando con el dedo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "dulces y dulces" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "manos" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "bebida" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "vajilla" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globos y mapas" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "artículos del hogar" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "ubicaciones geográficas" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "caracteres del teclado" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "edificios" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "luz, película y vídeo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "edificios religiosos" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "bloquear y llaves" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "otros lugares" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "correo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "transporte terrestre" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "símbolos matemáticos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "transporte de agua" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "médico" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "transporte aéreo" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "dinero" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "caras de mono" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "hora" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "música" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "clima" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "instrumentos musicales" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "eventos y días festivos" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "suministros de oficina" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "medallas de premio" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "otros objetos" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "deportes" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "otros símbolos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "juegos y pasatiempos" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "personas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "artes y oficios" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "ropa" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasía" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "sonido" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gestos" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "música" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "descansando" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "instrumentos musicales" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roles y carreras" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "atletismo" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "símbolos de la gente" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "teléfono" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computadora" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "edificios" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "luz, película y vídeo" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "ubicaciones geográficas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "libros & papel" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globos y mapas" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "dinero" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "otros lugares" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "correo" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "edificios religiosos" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "escrito" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "flores" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "suministros de oficina" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "otras plantas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "bloquear y llaves" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "puntuación" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "herramientas" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "símbolos religiosos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "equipos de ciencia" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "médico" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "tonos de piel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "artículos del hogar" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "clima" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "otros objetos" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "sonido" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "señales de transporte" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "deportes" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "símbolos de advertencia" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "banderas de subdivisión" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "flechas" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "hora" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "símbolos religiosos" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "herramientas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "signos del zodiaco" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "transporte aéreo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "símbolos de audio y vídeo" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "transporte terrestre" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "signos de género" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "señales de transporte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "símbolos matemáticos" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "transporte de agua" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "puntuación" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "símbolos de advertencia" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "monedas" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "escrito" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "otros símbolos" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "signos del zodiaco" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "caracteres del teclado" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "indicador regional %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisco" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "símbolo de número" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "color" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "símbolos alfanuméricos" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "tono de piel oscuro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "formas y colores" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "tono de piel claro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "otras banderas" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "tono de piel medio" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "banderas del país" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "tono de piel medio-oscuro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "banderas de subdivisión" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "tono de piel medio claro" diff --git a/po/es-mx/shortcodes.po b/po/es-mx/shortcodes.po index 8be8f09c..e56a68b5 100644 --- a/po/es-mx/shortcodes.po +++ b/po/es-mx/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/es/messages.po b/po/es/messages.po index 34a25338..9318adce 100644 --- a/po/es/messages.po +++ b/po/es/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:19-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: es\n" @@ -14,544 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "indicador regional %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "color" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisco" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "actividades" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "símbolo de número" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "animales y la naturaleza" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "tono de piel claro" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "componentes" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "tono de piel medio claro" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "banderas" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "tono de piel medio" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "comida y bebida" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "tono de piel medio-oscuro" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objetos" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "tono de piel oscuro" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "personas y cuerpo" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "emoticonos y emoción" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "personas y cuerpo" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "componentes" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "símbolos" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "animales y la naturaleza" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "viajes y lugares" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "comida y bebida" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "símbolos alfanuméricos" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "viajes y lugares" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "anfibios" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "actividades" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "aves" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objetos" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "insectos" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "símbolos" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mamíferos" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "banderas" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "vida marina" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "sonriendo" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptiles" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "cariñoso" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "flechas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "con lengua" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "artes y oficios" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "con las manos" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "símbolos de audio y vídeo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutral / escéptico" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "medallas de premio" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "somnoliento" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "partes del cuerpo" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "enfermo" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "libros & papel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "con sombreros" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "caras de gato" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "con gafas" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "ropa" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "preocupado" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computadora" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativo" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "banderas del país" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "disfrazado & criaturas" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "monedas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "caras de gato" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "vajilla" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "caras de mono" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "bebida" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emociones" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "dedos abiertos" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "eventos y días festivos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "signos de mano" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "cariñoso" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "señalando con el dedo" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "preocupado" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "dedos cerrados" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "disfrazado & criaturas" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "manos" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "con gafas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "apoyos de mano" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "con las manos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "partes del cuerpo" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "con sombreros" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "personas" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativo" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gestos" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutral / escéptico" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roles y carreras" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "somnoliento" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasía" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "sonriendo" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "atletismo" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "con lengua" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "descansando" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "enfermo" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "familia" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "símbolos de la gente" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "otras banderas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "tonos de piel" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiático" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "estilos de cabello" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "fruta" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mamíferos" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "mariscos" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "aves" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "cocido / preparado" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "anfibios" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "dulces y dulces" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptiles" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "verduras y hortalizas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "vida marina" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "juegos y pasatiempos" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "insectos" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "signos de género" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "flores" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "formas y colores" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "otras plantas" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "estilos de cabello" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "fruta" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "dedos cerrados" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "verduras y hortalizas" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "dedos abiertos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "cocido / preparado" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "signos de mano" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiático" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "apoyos de mano" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "mariscos" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "señalando con el dedo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "dulces y dulces" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "manos" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "bebida" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "vajilla" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globos y mapas" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "artículos del hogar" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "ubicaciones geográficas" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "caracteres del teclado" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "edificios" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "luz, película y vídeo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "edificios religiosos" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "bloquear y llaves" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "otros lugares" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "correo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "transporte terrestre" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "símbolos matemáticos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "transporte de agua" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "médico" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "transporte aéreo" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "dinero" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "caras de mono" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "hora" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "música" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "clima" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "instrumentos musicales" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "eventos y días festivos" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "suministros de oficina" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "medallas de premio" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "otros objetos" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "deportes" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "otros símbolos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "juegos y pasatiempos" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "personas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "artes y oficios" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "ropa" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasía" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "sonido" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gestos" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "música" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "descansando" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "instrumentos musicales" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roles y carreras" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "atletismo" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "símbolos de la gente" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "teléfono" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computadora" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "edificios" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "luz, película y vídeo" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "ubicaciones geográficas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "libros & papel" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globos y mapas" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "dinero" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "otros lugares" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "correo" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "edificios religiosos" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "escrito" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "flores" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "suministros de oficina" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "otras plantas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "bloquear y llaves" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "puntuación" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "herramientas" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "símbolos religiosos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "equipos de ciencia" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "médico" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "tonos de piel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "artículos del hogar" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "clima" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "otros objetos" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "sonido" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "señales de transporte" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "deportes" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "símbolos de advertencia" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "banderas de subdivisión" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "flechas" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "hora" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "símbolos religiosos" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "herramientas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "signos del zodiaco" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "transporte aéreo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "símbolos de audio y vídeo" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "transporte terrestre" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "signos de género" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "señales de transporte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "símbolos matemáticos" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "transporte de agua" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "puntuación" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "símbolos de advertencia" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "monedas" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "escrito" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "otros símbolos" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "signos del zodiaco" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "caracteres del teclado" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "indicador regional %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisco" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "símbolo de número" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "color" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "símbolos alfanuméricos" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "tono de piel oscuro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "formas y colores" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "tono de piel claro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "otras banderas" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "tono de piel medio" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "banderas del país" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "tono de piel medio-oscuro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "banderas de subdivisión" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "tono de piel medio claro" diff --git a/po/es/shortcodes.po b/po/es/shortcodes.po index 1d957687..cb585b03 100644 --- a/po/es/shortcodes.po +++ b/po/es/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/et/messages.po b/po/et/messages.po index 91c40038..f6332c74 100644 --- a/po/et/messages.po +++ b/po/et/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:22-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: et\n" @@ -14,542 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "piirkondlik näitaja %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "värvi" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "tärn" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "tegevuse" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "numbrimärk" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "loomad ja loodus" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "kerge nahatoon" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "komponendid" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "keskmise valgusega nahatoon" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "lipud" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "keskmine nahatoon" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "toit ja jook" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "keskmine-tume nahatoon" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objektid" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "tume nahatoon" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "inimesed ja keha" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "emotikonid ja emotsioonid" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "inimesed ja keha" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "komponendid" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "sümbolid" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "loomad ja loodus" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "reisimine ja kohad" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "toit ja jook" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "tähtnumbrilised sümbolid" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "reisimine ja kohad" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "kahepaiksed" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "tegevuse" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "linnud" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objektid" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "vigu" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "sümbolid" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "imetajad" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "lipud" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "mereelustikule" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "naeratab" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "roomajad" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "hell" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "nooled" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "keelega" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "kunst ja käsitöö" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "kätega" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "heli- ja videosümbolid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutraalne / skeptiline" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "auhinna medalid" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "unine" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "kehaosad" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "enesetunne" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "raamatud ja paber" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "mütsidega" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "kassi nägu" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "prillidega" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "riided" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "asjaomase" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "arvuti" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negatiivne" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "riigi lipud" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "costumed & olendid" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valuutade" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "kassi nägu" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "nõud" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "ahv nägu" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "juua" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emotsioone" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "sõrmed avatud" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "üritused ja pühad" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "käe märgid" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "hell" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "näpuga osutamine" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "asjaomase" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "sõrmed suletud" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "costumed & olendid" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "käed" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "prillidega" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "käsi rekvisiidid" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "kätega" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "kehaosad" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "mütsidega" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "inimesed" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negatiivne" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "žestid" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutraalne / skeptiline" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "rollid ja karjäär" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "unine" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantaasia" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "naeratab" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "kergejõustik" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "keelega" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "puhkavad" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "enesetunne" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "perekond" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "inimeste sümbolid" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "muud lipud" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "naha toonid" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "aasia" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "juuste stiilid" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "puu" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "imetajad" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "mereannid" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "linnud" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "keedetud / valmis" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "kahepaiksed" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "maiustused ja kommid" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "roomajad" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "köögiviljad" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "mereelustikule" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "mängud ja hobid" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "vigu" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "sootunnused" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "lilled" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "kujundid ja värvid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "muud taimed" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "juuste stiilid" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "puu" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "sõrmed suletud" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "köögiviljad" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "sõrmed avatud" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "keedetud / valmis" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "käe märgid" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "aasia" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "käsi rekvisiidid" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "mereannid" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "näpuga osutamine" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "maiustused ja kommid" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "käed" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "juua" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "nõud" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotellis" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "gloobused ja kaardid" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "kodutarbed" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geograafilised asukohad" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "klahvistiku märgid" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "hooned" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "valgus, film ja video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religioossed hooned" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "lukustamine ja klahvid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "teistes kohtades" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "mail" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "maatransport" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "matemaatika sümbolid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "veetransport" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "meditsiini" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "õhutransport" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "raha" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotellis" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "ahv nägu" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "aeg" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "muusika" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "weather" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "muusikariistad" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "üritused ja pühad" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "kontoritarbed" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "auhinna medalid" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "muud objektid" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sport" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "muud sümbolid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "mängud ja hobid" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "inimesed" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "kunst ja käsitöö" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "riided" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantaasia" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "heli" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "žestid" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "muusika" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "puhkavad" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "muusikariistad" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "rollid ja karjäär" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "kergejõustik" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "inimeste sümbolid" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "arvuti" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "hooned" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "valgus, film ja video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geograafilised asukohad" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "raamatud ja paber" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "gloobused ja kaardid" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "raha" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "teistes kohtades" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "mail" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religioossed hooned" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "kirjalikult" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "lilled" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "kontoritarbed" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "muud taimed" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "lukustamine ja klahvid" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "kirjavahemärgid" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "tööriistad" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religioossed sümbolid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "teadusseadmed" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "meditsiini" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "naha toonid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "kodutarbed" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "weather" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "muud objektid" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "heli" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transpordi märgid" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "hoiatussümbolid" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "alarajooni lipud" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "nooled" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "aeg" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religioossed sümbolid" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "tööriistad" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "sodiaagimärgid" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "õhutransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "heli- ja videosümbolid" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "maatransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "sootunnused" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transpordi märgid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "matemaatika sümbolid" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "veetransport" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "kirjavahemärgid" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "hoiatussümbolid" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valuutade" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "kirjalikult" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "muud sümbolid" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "sodiaagimärgid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "klahvistiku märgid" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "piirkondlik näitaja %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "tärn" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "numbrimärk" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "värvi" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "tähtnumbrilised sümbolid" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "tume nahatoon" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "kujundid ja värvid" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "kerge nahatoon" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "muud lipud" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "keskmine nahatoon" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "riigi lipud" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "keskmine-tume nahatoon" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "alarajooni lipud" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "keskmise valgusega nahatoon" diff --git a/po/et/shortcodes.po b/po/et/shortcodes.po index f4213024..0a5d1147 100644 --- a/po/et/shortcodes.po +++ b/po/et/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/fi/messages.po b/po/fi/messages.po index da8f7834..46dbb385 100644 --- a/po/fi/messages.po +++ b/po/fi/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:22-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: fi\n" @@ -14,539 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "alueellinen indikaattori %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "väri" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "tähtimerkki" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "aktiviteetit" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "numeromerkki" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "eläimet & luonto" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "vaalea ihon sävy" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "osia" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "keskikevyt ihon sävy" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "liput" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "keskitason ihon sävy" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "ruoka & juoma" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "keski-tumma ihon sävy" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objektit" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "tumma ihon sävy" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "ihmiset & keho" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "hymiöt & tunteet" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "ihmiset & keho" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "osia" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symbolit" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "eläimet & luonto" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "matkustaa & paikkoja" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "ruoka & juoma" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "aakkosnumeeriset symbolit" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "matkustaa & paikkoja" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "sammakkoeläimet" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "aktiviteetit" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "linnut" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objektit" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "vikoja" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symbolit" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "nisäkkäät" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "liput" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "meren eliöstö" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "hymyilevä" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "matelijat" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "rakastava" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "nuolet" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "kielellä" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "taide & käsityöt" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "käsillä" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "ääni- ja videosymbolit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutraali / skeptinen" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "mitalien myöntäminen" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "unelias" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "ruumiinosat" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "pahoinvointia" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "kirjat & paperi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "hattujen kanssa" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "kissan kasvot" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "lasien kanssa" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "vaatteet" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "asianomaisten" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "tietokone" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negatiivinen" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "maaliput" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "puvut & olennot" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valuutat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "kissan kasvot" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "astiat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "apinan kasvot" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "juoma" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "tunteita" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "sormet auki" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "tapahtumat & lomat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "käsimerkit" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "rakastava" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "sormella osoittaminen" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "asianomaisten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "sormet kiinni" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "puvut & olennot" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "käsissä" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "lasien kanssa" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "käsi rekvisiitta" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "käsillä" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "ruumiinosat" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "hattujen kanssa" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "henkilöt" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negatiivinen" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "eleitä" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutraali / skeptinen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roolit & urat" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "unelias" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasia" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "hymyilevä" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "yleisurheilu" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "kielellä" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "lepo" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "pahoinvointia" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "perhe" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "ihmiset-symbolit" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "muut liput" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "ihon sävyt" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "aasian" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "hiustyylit" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "hedelmät" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "nisäkkäät" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "meren antimet" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "linnut" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "keitetyt / valmistetut" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "sammakkoeläimet" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "makeiset & karkit" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "matelijat" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "vihannekset" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "meren eliöstö" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "pelit & harrastukset" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "vikoja" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "sukupuolimerkit" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "kukkia" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "muodot ja värit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "muut kasvit" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "hiustyylit" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "hedelmät" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "sormet kiinni" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "vihannekset" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "sormet auki" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "keitetyt / valmistetut" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "käsimerkit" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "aasian" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "käsi rekvisiitta" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "meren antimet" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "sormella osoittaminen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "makeiset & karkit" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "käsissä" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "juoma" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "astiat" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotelli" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "maapallot & kartat" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "taloustavarat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "maantieteelliset sijainnit" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "näppäimistön merkit" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "rakennukset" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "valo, elokuva & video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "uskonnolliset rakennukset" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "lukko & avaimet" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "muut paikat" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "sähköposti" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "maakuljetukset" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "matematiikan symbolit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "veden kuljetus" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "lääketieteen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "ilmakuljetukset" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "rahaa" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotelli" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "apinan kasvot" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "aika" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "musiikki" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "sää" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "soittimet" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "tapahtumat & lomat" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "toimistotarvikkeet" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "mitalien myöntäminen" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "muut objektit" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "urheilu" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "muut symbolit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "pelit & harrastukset" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "henkilöt" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "taide & käsityöt" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "vaatteet" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasia" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "ääni" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "eleitä" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "musiikki" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "lepo" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "soittimet" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roolit & urat" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "yleisurheilu" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "ihmiset-symbolit" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "puhelin" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "tietokone" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "rakennukset" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "valo, elokuva & video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "maantieteelliset sijainnit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "kirjat & paperi" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "maapallot & kartat" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "rahaa" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "muut paikat" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "sähköposti" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "uskonnolliset rakennukset" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "kirjoitetaan" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "kukkia" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "toimistotarvikkeet" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "muut kasvit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "lukko & avaimet" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "välimerkit" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "työkalut" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "uskonnolliset symbolit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "tiedelaitteet" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "lääketieteen" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "ihon sävyt" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "taloustavarat" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "sää" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "muut objektit" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "ääni" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "liikennemerkit" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "urheilu" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "varoitussymbolit" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "osa-alueliput" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "nuolet" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "aika" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "uskonnolliset symbolit" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "työkalut" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "horoskooppi" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "ilmakuljetukset" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "ääni- ja videosymbolit" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "maakuljetukset" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "sukupuolimerkit" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "liikennemerkit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "matematiikan symbolit" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "veden kuljetus" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "välimerkit" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "varoitussymbolit" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valuutat" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "kirjoitetaan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "muut symbolit" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "horoskooppi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "näppäimistön merkit" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "alueellinen indikaattori %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "tähtimerkki" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "numeromerkki" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "väri" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "aakkosnumeeriset symbolit" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "tumma ihon sävy" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "muodot ja värit" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "vaalea ihon sävy" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "muut liput" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "keskitason ihon sävy" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "maaliput" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "keski-tumma ihon sävy" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "osa-alueliput" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "keskikevyt ihon sävy" diff --git a/po/fi/shortcodes.po b/po/fi/shortcodes.po index b56ae08d..a0f34378 100644 --- a/po/fi/shortcodes.po +++ b/po/fi/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/fr/messages.po b/po/fr/messages.po index c760879e..2fe0b0e5 100644 --- a/po/fr/messages.po +++ b/po/fr/messages.po @@ -6,10 +6,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:25-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,542 +16,599 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "indicateur régional %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "couleur" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "astérisque" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "activités" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "signe numérique" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "animaux et la nature" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "teint clair" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "composants" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "teint moyen-clair" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "drapeaux" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "teint moyen" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "nourriture et boissons" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "teint foncé moyen-foncé" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objets" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "teint foncé" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "les gens et le corps" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smileys et émotion" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "les gens et le corps" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "composants" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symboles" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "animaux et la nature" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "voyages et lieux" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "nourriture et boissons" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "symboles alphanumériques" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "voyages et lieux" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "amphibiens" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "activités" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "oiseaux" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objets" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "insectes" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symboles" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mammifères" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "drapeaux" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "vie marine" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "souriant" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptiles" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "affectueux" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "flèches" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "avec la langue" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "arts et métiers" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "avec les mains" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "symboles audio et vidéo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutre / sceptique" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "médailles de prix" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "somnolent" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "parties du corps" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "malade" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "livres et papier" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "avec des chapeaux" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "visages de chat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "avec des lunettes" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "vêtements" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "concerné" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "ordinateur" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "négatif" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "drapeaux de pays" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "costumés et créatures" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "devises" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "visages de chat" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "vaisselle" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "visages de singe" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "boisson" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "émotions" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "doigts ouverts" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "événements et jours fériés" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "signes de la main" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "affectueux" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "pointage du doigt" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "concerné" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "doigts fermés" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "costumés et créatures" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "mains" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "avec des lunettes" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "accessoires à main" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "avec les mains" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "parties du corps" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "avec des chapeaux" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "personnes" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "négatif" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gestes" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutre / sceptique" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "rôles et carrières" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "somnolent" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantaisie" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "souriant" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "athlétisme" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "avec la langue" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "repos" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "malade" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "famille" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "symboles de personnes" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "autres drapeaux" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "tons de peau" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiatique" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "styles de cheveux" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "fruit" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mammifères" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "fruit de mer" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "oiseaux" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "cuit / préparé" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "amphibiens" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "bonbons" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptiles" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "légumes" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "vie marine" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "jeux et passe-temps" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "insectes" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "signes de genre" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "fleurs" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "formes et couleurs" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "d’autres plantes" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "styles de cheveux" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "fruit" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "doigts fermés" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "légumes" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "doigts ouverts" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "cuit / préparé" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "signes de la main" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiatique" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "accessoires à main" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "fruit de mer" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "pointage du doigt" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "bonbons" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "mains" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "boisson" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "vaisselle" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hôtel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globes et cartes" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "articles ménagers" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "emplacements géographiques" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "caractères de clavier" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "bâtiments" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "lumière, film et vidéo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "édifices religieux" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "serrure & clés" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "d’autres endroits" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "courrier" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "transport terrestre" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "symboles mathématiques" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "transport par eau" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "médical" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "transport aérien" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "argent" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hôtel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "visages de singe" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "temps" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "musique" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "meteo" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "instruments de musique" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "événements et jours fériés" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "fournitures de bureau" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "médailles de prix" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "d’autres objets" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "des sports" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "d’autres symboles" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "jeux et passe-temps" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "personnes" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "arts et métiers" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "vêtements" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantaisie" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "bruit" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gestes" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "musique" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "repos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "instruments de musique" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "rôles et carrières" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "athlétisme" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "symboles de personnes" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "téléphone" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "ordinateur" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "bâtiments" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "lumière, film et vidéo" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "emplacements géographiques" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "livres et papier" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globes et cartes" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "argent" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "d’autres endroits" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "courrier" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "édifices religieux" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "écrit" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "fleurs" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "fournitures de bureau" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "d’autres plantes" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "serrure & clés" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "ponctuation" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "outils" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "symboles religieux" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "équipement scientifique" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "médical" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "tons de peau" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "articles ménagers" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "meteo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "d’autres objets" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "bruit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "panneaux de transport" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "des sports" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "symboles d’avertissement" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "drapeaux de lotissement" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "flèches" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "temps" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "symboles religieux" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "outils" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "signes du zodiaque" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "transport aérien" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "symboles audio et vidéo" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "transport terrestre" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "signes de genre" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "panneaux de transport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "symboles mathématiques" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "transport par eau" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "ponctuation" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "symboles d’avertissement" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "devises" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "écrit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "d’autres symboles" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "signes du zodiaque" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "caractères de clavier" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "indicateur régional %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "astérisque" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "signe numérique" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "couleur" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "symboles alphanumériques" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "teint foncé" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "formes et couleurs" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "teint clair" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "autres drapeaux" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "teint moyen" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "drapeaux de pays" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "teint foncé moyen-foncé" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "drapeaux de lotissement" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "teint moyen-clair" diff --git a/po/fr/shortcodes.po b/po/fr/shortcodes.po index 097dc046..4445f5d3 100644 --- a/po/fr/shortcodes.po +++ b/po/fr/shortcodes.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Nathan \n" "Language-Team: French \n" "Language: fr\n" @@ -1205,6 +1205,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1225,6 +1230,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3185,6 +3195,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5505,6 +5535,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6555,6 +6595,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7020,11 +7065,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7050,6 +7105,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7120,6 +7180,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7190,6 +7255,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7215,6 +7285,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8650,11 +8725,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8680,6 +8765,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8720,6 +8810,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8765,6 +8860,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8795,6 +8895,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8810,6 +8915,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12300,11 +12410,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12330,6 +12450,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12400,6 +12525,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12470,6 +12600,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12500,6 +12635,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/hi/messages.po b/po/hi/messages.po index 1957e5df..ee9988f8 100644 --- a/po/hi/messages.po +++ b/po/hi/messages.po @@ -1,10 +1,10 @@ -# +# Hindi msgid "" msgstr "" "Project-Id-Version: Emojibase\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2023-09-29 22:07+0530\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language-Team: \n" "Language: bn\n" @@ -14,475 +14,594 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n" "X-Generator: Poedit 3.3.2\n" -#, javascript-format -msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" -msgid "regional indicator %s" -msgstr "আঞ্চলিক সূচক %s" - -msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "सुर" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "तारांकन" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "गतिविधियाँ" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "संख्या चिह्न" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "जानवर और प्रकृति" -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "हल्की त्वचा का रंग" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "अवयव" -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "मध्यम-हल्की त्वचा का रंग" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "झंडे" -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "मध्यम त्वचा टोन" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "भोजन पेय" -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "मध्यम-गहरा त्वचा टोन" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "वस्तुओं" -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "गहरे रंग की त्वचा" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "लोग और शरीर" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "स्माइली और भावना" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "लोग और शरीर" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "अवयव" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "प्रतीक" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "जानवर और प्रकृति" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "यात्रा एवं स्थान" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "भोजन पेय" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "अल्फ़ान्यूमेरिक प्रतीक" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "यात्रा एवं स्थान" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "उभयचर" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "गतिविधियाँ" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "पक्षियों" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "वस्तुओं" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "कीड़े" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "प्रतीक" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "स्तनधारियों" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "झंडे" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "समुद्री जीवन" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "मुस्कराते हुए" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "सरीसृप" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "स्नेही" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "तीर" -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "जीभ से" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "कला और शिल्प" -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "हाथों से" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "ऑडियो और वीडियो प्रतीक" -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "तटस्थ/संशयवादी" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "पुरस्कार पदक" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "नींद" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "शरीर के अंग" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "अस्वस्थ" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "किताबें और कागज" -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "टोपी के साथ" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "बिल्ली के चेहरे" -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "चश्मे के साथ" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "कपड़े" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "संबंधित" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "कंप्यूटर" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "नकारात्मक" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "देश के झंडे" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "वेशभूषा और जीव" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "मुद्राओं" -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "बिल्ली के चेहरे" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "डिशवेयर" -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "बंदर के चेहरे" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "पीना" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "भावनाएँ" -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "उँगलियाँ खुलीं" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "घटनाएँ एवं छुट्टियाँ" -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "हाथ के संकेत" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "स्नेही" -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "उंगली उठाना" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "संबंधित" -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "उँगलियाँ बंद" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "वेशभूषा और जीव" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "हाथ" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "चश्मे के साथ" -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "हाथ सहारा" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "हाथों से" -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "शरीर के अंग" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "टोपी के साथ" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "लोग" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "नकारात्मक" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "इशारों" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "तटस्थ/संशयवादी" -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "भूमिकाएँ और करियर" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "नींद" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "कल्पना" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "मुस्कराते हुए" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "व्यायाम" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "जीभ से" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "आराम" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "अस्वस्थ" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "परिवार" -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "लोक प्रतीक" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "अन्य झंडे" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "त्वचा का रंग" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "एशियाई" -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "बाल शैलियाँ" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "फल" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "स्तनधारियों" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "समुद्री भोजन" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "पक्षियों" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "पका हुआ/तैयार" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "उभयचर" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "मिठाई और कैंडी" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "सरीसृप" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "सब्ज़ियाँ" -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "समुद्री जीवन" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "खेल और शौक" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "कीड़े" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "लिंग चिह्न" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "पुष्प" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "आकार और रंग" -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "अन्य पौधे" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "बाल शैलियाँ" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "फल" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "उँगलियाँ बंद" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "सब्ज़ियाँ" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "उँगलियाँ खुलीं" -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "पका हुआ/तैयार" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "हाथ के संकेत" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "एशियाई" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "हाथ सहारा" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "समुद्री भोजन" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "उंगली उठाना" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "मिठाई और कैंडी" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "हाथ" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "पीना" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "डिशवेयर" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "होटल" -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "ग्लोब और मानचित्र" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "घरेलू सामान" -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "भौगोलिक स्थान" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "कीपैड अक्षर" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "इमारतों" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "प्रकाश, फिल्म और वीडियो" -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "धार्मिक इमारतें" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "ताला और चाभियाँ" -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "अन्य जगहें" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "मेल" -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "भूमि परिवहन" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "गणित के प्रतीक" -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "जल परिवहन" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "चिकित्सा" -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "वायु परिवहन" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "धन" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "होटल" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "बंदर के चेहरे" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "समय" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "संगीत" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "मौसम" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "संगीत वाद्ययंत्र" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "घटनाएँ एवं छुट्टियाँ" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "कार्यालय की आपूर्ति" -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "पुरस्कार पदक" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "अन्य वस्तुएं" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "खेल" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "अन्य प्रतीक" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "खेल और शौक" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "लोग" -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "कला और शिल्प" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "कपड़े" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "कल्पना" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "आवाज़" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "इशारों" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "संगीत" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "आराम" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "संगीत वाद्ययंत्र" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "भूमिकाएँ और करियर" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "व्यायाम" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "लोक प्रतीक" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "फ़ोन" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "कंप्यूटर" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "इमारतों" -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "प्रकाश, फिल्म और वीडियो" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "भौगोलिक स्थान" -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "किताबें और कागज" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "ग्लोब और मानचित्र" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "धन" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "अन्य जगहें" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "मेल" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "धार्मिक इमारतें" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "लिखना" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "पुष्प" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "कार्यालय की आपूर्ति" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "अन्य पौधे" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "ताला और चाभियाँ" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "विराम चिह्न" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "औजार" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "धार्मिक प्रतीक" -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "विज्ञान उपकरण" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "चिकित्सा" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "त्वचा का रंग" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "घरेलू सामान" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "मौसम" -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "अन्य वस्तुएं" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "आवाज़" -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "परिवहन संकेत" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "खेल" -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "चेतावनी प्रतीक" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "उपखंड झंडे" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "तीर" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "समय" -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "धार्मिक प्रतीक" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "औजार" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "राशि चक्र के संकेत" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "वायु परिवहन" -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "ऑडियो और वीडियो प्रतीक" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "भूमि परिवहन" -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "लिंग चिह्न" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "परिवहन संकेत" -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "गणित के प्रतीक" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "जल परिवहन" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "विराम चिह्न" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "चेतावनी प्रतीक" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "मुद्राओं" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "लिखना" -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "अन्य प्रतीक" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "राशि चक्र के संकेत" -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "कीपैड अक्षर" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "আঞ্চলিক সূচক %s" -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "अल्फ़ान्यूमेरिक प्रतीक" +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "तारांकन" -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "आकार और रंग" +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "संख्या चिह्न" -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "अन्य झंडे" +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "सुर" -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "देश के झंडे" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "गहरे रंग की त्वचा" -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "उपखंड झंडे" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "हल्की त्वचा का रंग" + +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "मध्यम त्वचा टोन" + +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "मध्यम-गहरा त्वचा टोन" + +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "मध्यम-हल्की त्वचा का रंग" diff --git a/po/hi/shortcodes.po b/po/hi/shortcodes.po index ae2a0bb0..4c6708fd 100644 --- a/po/hi/shortcodes.po +++ b/po/hi/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/hu/messages.po b/po/hu/messages.po index 35d50f6f..1d5d978b 100644 --- a/po/hu/messages.po +++ b/po/hu/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:25-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: hu\n" @@ -14,544 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regionális mutató %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "szín" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "csillag" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "tevékenységek" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "szám jel" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "állatok és természet" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "könnyű bőrszín" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "alkatrészek" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "közepesen világos bőrszín" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "zászlók" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "közepes bőrszín" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "étel és ital" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "közepesen sötét bőrszín" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objektumok" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "sötét bőrszín" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "emberek & test" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smiley & érzelem" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "emberek & test" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "alkatrészek" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "szimbólumok" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "állatok és természet" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "utazás és helyek" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "étel és ital" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alfanumerikus szimbólumok" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "utazás és helyek" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "kétéltűek" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "tevékenységek" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "madarak" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objektumok" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "hibákat" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "szimbólumok" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "emlősök" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "zászlók" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "tengeri élet" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "mosolygó" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "hüllők" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "szerető" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "nyilak" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "nyelvvel" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "művészetek és kézművesség" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "kezekkel" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "audio & video szimbólumok" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "semleges / szkeptikus" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "érmek odaítélése" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "álmos" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "testrészek" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "rosszul" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "könyvek és papír" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "kalappal" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "macska arcok" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "szemüveggel" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "ruházat" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "érintett" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "számítógépes" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negatív" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "ország zászlók" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "jelmezes & lények" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valuták" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "macska arcok" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "edények" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "majom arcok" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "ital" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "érzelmek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "ujjak nyitva" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "események és ünnepek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "kéz jelek" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "szerető" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "ujjmutatás" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "érintett" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "ujjak zárva" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "jelmezes & lények" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "kezét" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "szemüveggel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "kézi kellékek" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "kezekkel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "testrészek" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "kalappal" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "emberek" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negatív" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gesztusok" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "semleges / szkeptikus" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "szerepek és karrierek" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "álmos" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantázia" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "mosolygó" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "atlétika" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "nyelvvel" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "pihenő" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "rosszul" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "család" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "személyek szimbólumai" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "egyéb zászlók" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "bőrtónusok" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "ázsiai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "hajstílusok" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "gyümölcs" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "emlősök" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "tengeri élelmiszer" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "madarak" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "főtt / elkészített" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "kétéltűek" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "édességek és édességek" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "hüllők" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "zöldségek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "tengeri élet" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "játékok és hobbik" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "hibákat" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "nemi jelek" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "virágok" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "alakzatok és színek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "egyéb növények" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "hajstílusok" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "gyümölcs" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "ujjak zárva" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "zöldségek" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "ujjak nyitva" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "főtt / elkészített" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "kéz jelek" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "ázsiai" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "kézi kellékek" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "tengeri élelmiszer" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "ujjmutatás" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "édességek és édességek" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "kezét" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "ital" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "edények" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "szálloda" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "földgömbök és térképek" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "háztartási cikkek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "földrajzi helyek" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "billentyűzet karakterek" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "épületek" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "fény, film & videó" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "vallási épületek" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "zárolás és billentyűk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "más helyeken" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "posta" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "földi szállítás" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "matematikai szimbólumok" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "vízi szállítás" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "orvosi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "légi közlekedés" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "pénzt" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "szálloda" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "majom arcok" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "idő" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "zenei" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "időjárás" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "hangszerek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "események és ünnepek" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "irodaszerek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "érmek odaítélése" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "egyéb objektumok" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sport" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "egyéb szimbólumok" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "játékok és hobbik" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "emberek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "művészetek és kézművesség" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "ruházat" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantázia" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "hang" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gesztusok" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "zenei" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "pihenő" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "hangszerek" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "szerepek és karrierek" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "atlétika" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "személyek szimbólumai" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "számítógépes" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "épületek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "fény, film & videó" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "földrajzi helyek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "könyvek és papír" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "földgömbök és térképek" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "pénzt" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "más helyeken" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "posta" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "vallási épületek" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "írás" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "virágok" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "irodaszerek" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "egyéb növények" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "zárolás és billentyűk" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "Írásjelek" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "eszközök" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "vallási szimbólumok" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "tudományos berendezések" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "orvosi" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "bőrtónusok" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "háztartási cikkek" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "időjárás" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "egyéb objektumok" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "hang" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "közlekedési táblák" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "figyelmeztető szimbólumok" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "felosztási jelzők" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "nyilak" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "idő" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "vallási szimbólumok" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "eszközök" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "állatöv idomár jelek" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "légi közlekedés" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "audio & video szimbólumok" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "földi szállítás" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "nemi jelek" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "közlekedési táblák" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "matematikai szimbólumok" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "vízi szállítás" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "Írásjelek" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "figyelmeztető szimbólumok" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valuták" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "írás" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "egyéb szimbólumok" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "állatöv idomár jelek" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "billentyűzet karakterek" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regionális mutató %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "csillag" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "szám jel" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "szín" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alfanumerikus szimbólumok" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "sötét bőrszín" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "alakzatok és színek" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "könnyű bőrszín" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "egyéb zászlók" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "közepes bőrszín" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "ország zászlók" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "közepesen sötét bőrszín" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "felosztási jelzők" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "közepesen világos bőrszín" diff --git a/po/hu/shortcodes.po b/po/hu/shortcodes.po index c34e71d3..8d4eedad 100644 --- a/po/hu/shortcodes.po +++ b/po/hu/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/it/messages.po b/po/it/messages.po index daead78e..df2cffd3 100644 --- a/po/it/messages.po +++ b/po/it/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:28-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: it\n" @@ -14,542 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "indicatore regionale %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "colore" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisco" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "attività" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "segno di numero" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "animali & natura" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "tono della pelle chiaro" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "componenti" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "tono della pelle medio-chiaro" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "bandiera" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "tono medio della pelle" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "cibo e bevande" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "tono della pelle medio-scuro" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "oggetti" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "tono della pelle scuro" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "persone e corpo" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smileys & emozione" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "persone e corpo" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "componenti" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "simboli" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "animali & natura" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "viaggi & luoghi" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "cibo e bevande" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "simboli alfanumerici" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "viaggi & luoghi" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "anfibi" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "attività" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "uccelli" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "oggetti" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "insetti" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "simboli" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mammiferi" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "bandiera" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "vita marina" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "sorridente" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "rettili" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "affettuoso" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "frecce" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "con la lingua" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "arti & mestieri" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "con le mani" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "simboli audio e video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutro / scettico" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "medaglie premio" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "assonnato" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "parti del corpo" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "bene" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "libri e carta" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "con cappelli" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "volti di gatto" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "con gli occhiali" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "abbigliamento" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "interessato" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computer" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativo" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "bandiere di campagna" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "in costume e creature" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valute" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "volti di gatto" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "stoviglie" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "volti di scimmia" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "bere" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emozioni" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "dita aperte" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "eventi & vacanze" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "segni a mano" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "affettuoso" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "puntamento del dito" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "interessato" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "dita chiuse" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "in costume e creature" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "mani" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "con gli occhiali" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "puntelli a mano" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "con le mani" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "parti del corpo" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "con cappelli" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "persone" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativo" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gesti" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutro / scettico" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "ruoli e carriere" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "assonnato" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasia" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "sorridente" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "atletica" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "con la lingua" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "riposo" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "bene" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "famiglia" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "persone simboli" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "altre bandiere" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "toni della pelle" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiatico" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "stili di capelli" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "frutta" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mammiferi" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "pesce" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "uccelli" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "cotto / preparato" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "anfibi" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "dolci e caramelle" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "rettili" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "verdure" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "vita marina" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "giochi & hobby" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "insetti" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "segni di genere" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "fiori" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "forme e colori" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "altre piante" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "stili di capelli" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "frutta" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "dita chiuse" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "verdure" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "dita aperte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "cotto / preparato" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "segni a mano" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiatico" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "puntelli a mano" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "pesce" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "puntamento del dito" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "dolci e caramelle" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "mani" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "bere" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "stoviglie" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "albergo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globi e mappe" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "articoli" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "posizioni geografiche" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "caratteri della tastiera" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "edifici" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "luce, film e video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "edifici religiosi" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "blocco e chiavi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "altri luoghi" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "posta" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "trasporto via terra" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "simboli matematici" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "trasporto dell'acqua" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medicale" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "trasporto aereo" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "soldi" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "albergo" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "volti di scimmia" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "ora" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "musica" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "del tempo" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "strumenti musicali" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "eventi & vacanze" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "forniture per ufficio" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "medaglie premio" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "altri oggetti" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sport" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "altri simboli" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "giochi & hobby" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "persone" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "arti & mestieri" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "abbigliamento" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasia" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "suono" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gesti" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "musica" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "riposo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "strumenti musicali" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "ruoli e carriere" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "atletica" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "persone simboli" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefono" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "edifici" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "luce, film e video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "posizioni geografiche" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "libri e carta" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globi e mappe" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "soldi" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "altri luoghi" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "posta" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "edifici religiosi" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "scrittura" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "fiori" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "forniture per ufficio" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "altre piante" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "blocco e chiavi" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "punteggiatura" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "strumenti" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "simboli religiosi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "attrezzature scientifiche" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medicale" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "toni della pelle" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "articoli" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "del tempo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "altri oggetti" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "suono" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "segnali di trasporto" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "simboli di avviso" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "bandiere di suddivisione" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "frecce" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "ora" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "simboli religiosi" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "strumenti" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "segni zodiacali" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "trasporto aereo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "simboli audio e video" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "trasporto via terra" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "segni di genere" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "segnali di trasporto" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "simboli matematici" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "trasporto dell'acqua" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "punteggiatura" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "simboli di avviso" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valute" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "scrittura" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "altri simboli" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "segni zodiacali" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "caratteri della tastiera" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "indicatore regionale %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisco" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "segno di numero" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "colore" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "simboli alfanumerici" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "tono della pelle scuro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "forme e colori" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "tono della pelle chiaro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "altre bandiere" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "tono medio della pelle" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "bandiere di campagna" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "tono della pelle medio-scuro" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "bandiere di suddivisione" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "tono della pelle medio-chiaro" diff --git a/po/it/shortcodes.po b/po/it/shortcodes.po index 3fd59fa8..290f25d4 100644 --- a/po/it/shortcodes.po +++ b/po/it/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/ja/messages.po b/po/ja/messages.po index db884c08..01b2adc8 100644 --- a/po/ja/messages.po +++ b/po/ja/messages.po @@ -5,10 +5,9 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:28-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" -"Language-Team: Japanese \n" +"Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -16,564 +15,599 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "地域指標 %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "色" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "アスタリスク" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "有効化" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "番号記号" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "動物自然" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "明るい肌のトーン" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "コンポーネント" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "中光肌調" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "フラグ" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "中程度の肌のトーン" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "飲み物・食べ物" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "中暗い肌のトーン" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "オブジェクト" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "暗い肌のトーン" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "人体" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "スマイリーと感情" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "人体" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "コンポーネント" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "シンボル" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "動物自然" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "旅行・場所" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "飲み物・食べ物" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "英数字記号" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "旅行・場所" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "両生 類" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "有効化" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "鳥" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "オブジェクト" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "バグ" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "シンボル" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "哺乳 類" -#, fuzzy -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "フラグ" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "海洋生物" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "笑顔" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "爬虫類" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "愛情顔" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "矢印" -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "舌の顔" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "芸術・工芸" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "手で" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "オーディオとビデオのシンボル" -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "中立的で懐疑的な顔" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "メダルを授与する" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "眠そうな顔" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "身体部分" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "体調不良顔" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "本と紙" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "帽子をかぶって" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "猫の顔" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "メガネ付き" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "服" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "関係" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "コンピュータ" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "負" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "国旗" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "衣装を着て、生き物" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "通貨" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "猫の顔" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "食器" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "猿の顔" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "飲む" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "感情" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "指が開いている" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "イベントと休日" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "手の看板" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "愛情顔" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "指差し" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "関係" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "指が閉じた" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "衣装を着て、生き物" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "手" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "メガネ付き" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "手の小道具" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "手で" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "身体部分" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "帽子をかぶって" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "人" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "負" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "ジェスチャー" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "中立的で懐疑的な顔" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "役割とキャリア" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "眠そうな顔" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "ファンタジー" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "笑顔" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "陸上 競技" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "舌の顔" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "休憩" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "体調不良顔" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "家族" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "人々のシンボル" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "その他のフラグ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "スキントーン" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "アジア" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "ヘアスタイル" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "フルーツ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "哺乳 類" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "シーフード" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "鳥" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "調理済み / 準備済み" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "両生 類" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "お菓子とお菓子" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "爬虫類" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "野菜" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "海洋生物" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "ゲームと趣味" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "バグ" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "ジェンダーサイン" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "花" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "図形と色" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "その他の植物" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "ヘアスタイル" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "フルーツ" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "指が閉じた" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "野菜" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "指が開いている" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "調理済み / 準備済み" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "手の看板" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "アジア" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "手の小道具" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "シーフード" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "指差し" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "お菓子とお菓子" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "手" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "飲む" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "食器" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "ホテル" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "地球儀と地図" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "家庭用品" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "地理的な場所" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "キーパッド文字" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "建物" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "光、フィルム、ビデオ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "宗教的な建物" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "ロックとキー" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "その他の場所" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "郵便" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "地上輸送" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "数学記号" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "水輸送" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "メディカル" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "航空輸送" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "資金" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "ホテル" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "猿の顔" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "時間" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "ミュージック" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "天気" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "楽器" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "イベントと休日" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "事務用品" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "メダルを授与する" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "その他のオブジェクト" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "スポーツ" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "その他の記号" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "ゲームと趣味" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "人" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "芸術・工芸" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "服" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "ファンタジー" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "音" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "ジェスチャー" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "ミュージック" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "休憩" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "楽器" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "役割とキャリア" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "陸上 競技" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "人々のシンボル" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "電話番号" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "コンピュータ" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "建物" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "光、フィルム、ビデオ" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "地理的な場所" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "本と紙" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "地球儀と地図" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "資金" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "その他の場所" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "郵便" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "宗教的な建物" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "書き込み" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "花" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "事務用品" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "その他の植物" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "ロックとキー" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "句読点" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "ツール" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "宗教的シンボル" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "科学機器" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "メディカル" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "スキントーン" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "家庭用品" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "天気" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "その他のオブジェクト" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "音" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "輸送標識" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "スポーツ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "警告記号" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "サブディビジョン フラグ" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "矢印" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "時間" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "宗教的シンボル" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "ツール" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "干支" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "航空輸送" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "オーディオとビデオのシンボル" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "地上輸送" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "ジェンダーサイン" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "輸送標識" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "数学記号" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "水輸送" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "句読点" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "警告記号" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "通貨" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "書き込み" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "その他の記号" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "干支" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "キーパッド文字" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "地域指標 %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "アスタリスク" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "番号記号" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "色" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "英数字記号" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "暗い肌のトーン" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "図形と色" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "明るい肌のトーン" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "その他のフラグ" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "中程度の肌のトーン" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "国旗" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "中暗い肌のトーン" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "サブディビジョン フラグ" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "中光肌調" diff --git a/po/ja/shortcodes.po b/po/ja/shortcodes.po index ca3482df..b38b74c4 100644 --- a/po/ja/shortcodes.po +++ b/po/ja/shortcodes.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Takuro Onoue \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -1205,6 +1205,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1225,6 +1230,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3185,6 +3195,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5505,6 +5535,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6555,6 +6595,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7020,11 +7065,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7050,6 +7105,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7120,6 +7180,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7190,6 +7255,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7215,6 +7285,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8650,11 +8725,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8680,6 +8765,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8720,6 +8810,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8765,6 +8860,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8795,6 +8895,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8810,6 +8915,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12300,11 +12410,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12330,6 +12450,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12400,6 +12525,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12470,6 +12600,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12500,6 +12635,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/ko/messages.po b/po/ko/messages.po index 770988a3..8714d139 100644 --- a/po/ko/messages.po +++ b/po/ko/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:30-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: ko\n" @@ -14,580 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "지역 지표 %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "색깔" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "별표" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "액티비티" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "숫자 기호" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "동물과 자연" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "밝은 피부 톤" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "구성 요소" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "중간 빛 피부 톤" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "플래그" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "중간 피부 톤" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "음식 및 음료" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "미디엄 다크 스킨 톤" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "사물" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "어두운 피부 톤" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "사람과 몸" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "웃는 얼굴과 감정" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "사람과 몸" - -#, fuzzy -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "구성 요소" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "기호" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "동물과 자연" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "여행 및 장소" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "음식 및 음료" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "거형 기호" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "여행 및 장소" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "양서류" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "액티비티" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "조류" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "사물" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "버그" -#, fuzzy -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "기호" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "포유류" -#, fuzzy -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "플래그" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "해양 생물" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "미소" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "파충류" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "애정" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "화살" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "혀와 함께" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "예술과 공예품" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "손" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "오디오 및 비디오 기호" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "중립 / 회의적" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "수상 메달" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "졸린" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "신체 부위" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "웰빙이 좋지 않은" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "책과 종이" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "모자와 함께" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "고양이 얼굴" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "안경" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "의류" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "우려" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "컴퓨터" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "마이너스" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "국가 플래그" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "의상과 생물" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "통화" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "고양이 얼굴" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "식기" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "원숭이 얼굴" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "음료" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "감정" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "손가락 열기" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "이벤트 및 공휴일" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "손 표지판" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "애정" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "손가락 포인팅" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "우려" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "손가락 닫기" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "의상과 생물" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "손" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "안경" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "손 소품" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "손" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "신체 부위" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "모자와 함께" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "사람들" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "마이너스" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "제스처" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "중립 / 회의적" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "역할 및 경력" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "졸린" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "판타지" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "미소" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "육상" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "혀와 함께" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "휴식" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "웰빙이 좋지 않은" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "가족" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "사람 기호" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "기타 플래그" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "피부 톤" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "아시아" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "헤어 스타일" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "과일" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "포유류" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "해산물" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "조류" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "조리 / 준비" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "양서류" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "과자 및 사탕" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "파충류" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "야채" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "해양 생물" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "게임 및 취미" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "버그" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "성별 징후" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "꽃" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "모양 및 색상" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "기타 식물" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "헤어 스타일" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "과일" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "손가락 닫기" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "야채" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "손가락 열기" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "조리 / 준비" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "손 표지판" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "아시아" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "손 소품" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "해산물" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "손가락 포인팅" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "과자 및 사탕" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "손" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "음료" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "식기" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "호텔" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "글로브 와지도" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "가정용품" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "지리적 위치" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "키패드 문자" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "건물" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "빛, 영화 및 비디오" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "종교 건물" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "잠금 및 키" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "기타 장소" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "메일" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "지상 교통" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "수학 기호" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "물 운송" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "의료" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "항공 운송" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "돈을" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "호텔" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "원숭이 얼굴" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "시간" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "음악" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "날씨" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "악기" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "이벤트 및 공휴일" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "사무용품" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "수상 메달" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "기타 개체" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "스포츠" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "기타 기호" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "게임 및 취미" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "사람들" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "예술과 공예품" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "의류" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "판타지" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "소리" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "제스처" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "음악" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "휴식" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "악기" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "역할 및 경력" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "육상" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "사람 기호" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "전화" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "컴퓨터" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "건물" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "빛, 영화 및 비디오" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "지리적 위치" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "책과 종이" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "글로브 와지도" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "돈을" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "기타 장소" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "메일" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "종교 건물" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "쓰기" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "꽃" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "사무용품" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "기타 식물" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "잠금 및 키" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "문장 부호" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "도구" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "종교적 상징" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "과학 장비" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "의료" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "피부 톤" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "가정용품" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "날씨" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "기타 개체" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "소리" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "교통 표지판" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "스포츠" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "경고 기호" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "세분화 플래그" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "화살" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "시간" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "종교적 상징" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "도구" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "조디악 징후" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "항공 운송" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "오디오 및 비디오 기호" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "지상 교통" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "성별 징후" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "교통 표지판" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "수학 기호" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "물 운송" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "문장 부호" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "경고 기호" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "통화" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "쓰기" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "기타 기호" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "조디악 징후" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "키패드 문자" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "지역 지표 %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "별표" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "숫자 기호" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "색깔" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "거형 기호" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "어두운 피부 톤" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "모양 및 색상" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "밝은 피부 톤" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "기타 플래그" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "중간 피부 톤" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "국가 플래그" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "미디엄 다크 스킨 톤" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "세분화 플래그" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "중간 빛 피부 톤" diff --git a/po/ko/shortcodes.po b/po/ko/shortcodes.po index 4a054051..e3847953 100644 --- a/po/ko/shortcodes.po +++ b/po/ko/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/lt/messages.po b/po/lt/messages.po index 341e7804..f496c936 100644 --- a/po/lt/messages.po +++ b/po/lt/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:32-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: lt\n" @@ -14,543 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regioninis rodiklis %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "spalva" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "žvaigždute" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "veikla" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "numerio ženklas" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "gyvūnai ir gamta" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "lengvas odos tonas" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "komponentai" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "vidutinio apšvietimo odos tonas" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "vėliavos" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "vidutinis odos tonas" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "maistas ir gėrimai" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "vidutinio tamsumo odos tonas" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objektų" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "tamsios odos tonas" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "žmonės ir kūnas" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "šypsenėlės ir emocijos" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "žmonės ir kūnas" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "komponentai" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "simboliai" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "gyvūnai ir gamta" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "kelionės ir vietos" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "maistas ir gėrimai" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "raidiniai ir skaitiniai simboliai" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "kelionės ir vietos" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "varliagyvių" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "veikla" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "paukščių" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objektų" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "klaidas" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "simboliai" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "žinduoliai" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "vėliavos" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "jūrų gyvybė" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "šypsosi" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "ropliai" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "meilus" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "rodykles" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "su liežuviu" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "menas ir amatai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "rankomis" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "garso ir vaizdo simboliai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutralus / skeptiškai" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "apdovanojimų medaliai" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "mieguistas" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "kūno dalys" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "blogai" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "knygos ir popierius" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "su skrybėlėmis" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "kačių veidai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "su akiniais" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "drabužių" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "atitinkamos" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "kompiuterio" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "neigiama" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "šalių vėliavos" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "kostiumuoti ir padarai" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valiutomis" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "kačių veidai" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "indų indai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "beždžionės veidai" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "gėrimas" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emocijas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "pirštai atidaryti" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "renginiai ir šventės" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "rankų ženklai" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "meilus" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "pirštu nukreiptas" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "atitinkamos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "uždaryti pirštai" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "kostiumuoti ir padarai" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "rankos" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "su akiniais" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "rankiniai rekvizitai" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "rankomis" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "kūno dalys" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "su skrybėlėmis" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "žmonių" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "neigiama" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gestai" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutralus / skeptiškai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "vaidmenys ir karjera" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "mieguistas" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantazija" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "šypsosi" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "lengvosios atletikos" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "su liežuviu" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "poilsio" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "blogai" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "šeima" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "žmonių simboliai" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "kitos vėliavėlės" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "odos tonai" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "azijos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "plaukų stiliai" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "vaisių" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "žinduoliai" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "jūros gėrybių" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "paukščių" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "virti / paruošti" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "varliagyvių" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "saldainiai ir saldainiai" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "ropliai" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "daržovių" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "jūrų gyvybė" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "žaidimai ir pomėgiai" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "klaidas" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "lyčių ženklai" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "gėlės" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "figūros ir spalvos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "kiti augalai" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "plaukų stiliai" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "vaisių" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "uždaryti pirštai" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "daržovių" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "pirštai atidaryti" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "virti / paruošti" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "rankų ženklai" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "azijos" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "rankiniai rekvizitai" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "jūros gėrybių" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "pirštu nukreiptas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "saldainiai ir saldainiai" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "rankos" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "gėrimas" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "indų indai" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "viešbutis" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "gaubliai ir žemėlapiai" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "namų apyvokos daiktai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geografinės vietovės" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "klaviatūros simboliai" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "pastatų" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "šviesa, filmas ir video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religiniai pastatai" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "užraktas ir klavišai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "kitos vietos" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "pašto" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "antžeminis transportas" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "matematiniai simboliai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "vandens transportavimas" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medicinos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "oro transportas" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "pinigų" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "viešbutis" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "beždžionės veidai" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "laikas" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "muzikos" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "oras" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "muzikos instrumentai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "renginiai ir šventės" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "biuro reikmenys" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "apdovanojimų medaliai" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "kiti objektai" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sportas" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "kiti simboliai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "žaidimai ir pomėgiai" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "žmonių" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "menas ir amatai" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "drabužių" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantazija" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "garso" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gestai" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "muzikos" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "poilsio" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "muzikos instrumentai" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "vaidmenys ir karjera" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "lengvosios atletikos" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "žmonių simboliai" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefono" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "kompiuterio" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "pastatų" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "šviesa, filmas ir video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geografinės vietovės" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "knygos ir popierius" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "gaubliai ir žemėlapiai" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "pinigų" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "kitos vietos" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "pašto" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religiniai pastatai" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "raštu" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "gėlės" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "biuro reikmenys" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "kiti augalai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "užraktas ir klavišai" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "skyrybos" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "įrankiai" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religiniai simboliai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "mokslo įranga" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medicinos" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "odos tonai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "namų apyvokos daiktai" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "oras" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "kiti objektai" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "garso" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transportavimo ženklai" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sportas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "įspėjamieji simboliai" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "poskyrio vėliavėlės" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "rodykles" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "laikas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religiniai simboliai" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "įrankiai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "zodiako ženklai" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "oro transportas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "garso ir vaizdo simboliai" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "antžeminis transportas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "lyčių ženklai" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transportavimo ženklai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "matematiniai simboliai" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "vandens transportavimas" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "skyrybos" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "įspėjamieji simboliai" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valiutomis" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "raštu" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "kiti simboliai" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "zodiako ženklai" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "klaviatūros simboliai" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regioninis rodiklis %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "žvaigždute" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "numerio ženklas" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "spalva" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "raidiniai ir skaitiniai simboliai" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "tamsios odos tonas" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "figūros ir spalvos" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "lengvas odos tonas" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "kitos vėliavėlės" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "vidutinis odos tonas" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "šalių vėliavos" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "vidutinio tamsumo odos tonas" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "poskyrio vėliavėlės" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "vidutinio apšvietimo odos tonas" diff --git a/po/lt/shortcodes.po b/po/lt/shortcodes.po index e60256b8..ab562d02 100644 --- a/po/lt/shortcodes.po +++ b/po/lt/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/ms/messages.po b/po/ms/messages.po index 92cadbea..64042547 100644 --- a/po/ms/messages.po +++ b/po/ms/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:35-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: ms\n" @@ -14,532 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "penunjuk wilayah %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "warna" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "tanda bintang" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "aktiviti" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "tanda nombor" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "haiwan & alam semula jadi" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "nada kulit cahaya" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "komponen" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "nada kulit ringan" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "bendera" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "nada kulit sederhana" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "makanan & minuman" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "nada kulit sederhana-gelap" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objek" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "nada kulit gelap" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "orang & badan" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "senyuman & emosi" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "orang & badan" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "komponen" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "simbol" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "haiwan & alam semula jadi" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "perjalanan & tempat" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "makanan & minuman" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "simbol abjad" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "perjalanan & tempat" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "amfbia" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "aktiviti" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "burung" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objek" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "pepijat" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "simbol" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mamalia" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "bendera" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "hidupan laut" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "tersenyum" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptilia" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "kasih sayang" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "anak panah" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "dengan lidah" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "seni & kraf" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "dengan tangan" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "simbol audio & video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutral / ragu-ragu" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "pingat anugerah" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "mengantuk" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "bahagian badan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "tidak sihat" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "buku & kertas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "dengan topi" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "muka kucing" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "dengan gelas" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "pakaian" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "berkenaan" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "komputer" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negatif" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "bendera negara" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "kostum & makhluk" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "mata wang" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "muka kucing" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "perisian basuh" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "wajah monyet" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "minuman" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emosi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "jari terbuka" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "acara & cuti" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "tanda tangan" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "kasih sayang" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "menuding jari" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "berkenaan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "jari ditutup" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "kostum & makhluk" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "tangan" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "dengan gelas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "prop tangan" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "dengan tangan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "bahagian badan" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "dengan topi" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "orang" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negatif" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gerak isyarat" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutral / ragu-ragu" -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "peranan & kerjaya" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "mengantuk" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasi" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "tersenyum" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "olahraga" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "dengan lidah" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "berehat" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "tidak sihat" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "keluarga" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "simbol orang" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "bendera lain" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "nada kulit" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asia" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "gaya rambut" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "buah" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mamalia" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "makanan laut" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "burung" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "dimasak / disediakan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "amfbia" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "gula-gula" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptilia" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "sayur" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "hidupan laut" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "permainan & hobi" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "pepijat" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "tanda-tanda jantina" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "bunga" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "bentuk & warna" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "tumbuh-tumbuhan lain" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "gaya rambut" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "buah" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "jari ditutup" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "sayur" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "jari terbuka" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "dimasak / disediakan" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "tanda tangan" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asia" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "prop tangan" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "makanan laut" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "menuding jari" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "gula-gula" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "tangan" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "minuman" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "perisian basuh" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "glob & peta" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "barangan isi rumah" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "lokasi geografi" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "aksara pad kekunci" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "bangunan" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "cahaya, filem & video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "bangunan agama" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "kunci & kekunci" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "tempat-tempat lain" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "mel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "pengangkutan darat" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "simbol matematik" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "pengangkutan air" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "perubatan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "pengangkutan udara" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "wang" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "wajah monyet" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "masa" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "muzik" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "cuaca" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "alat muzik" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "acara & cuti" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "bekalan pejabat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "pingat anugerah" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "objek lain" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sukan" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "simbol lain" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "permainan & hobi" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "orang" -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "seni & kraf" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "pakaian" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasi" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "bunyi" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gerak isyarat" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "muzik" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "berehat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "alat muzik" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "peranan & kerjaya" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "olahraga" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "simbol orang" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "komputer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "bangunan" -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "cahaya, filem & video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "lokasi geografi" -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "buku & kertas" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "glob & peta" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "wang" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "tempat-tempat lain" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "mel" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "bangunan agama" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "secara bertulis" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "bunga" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "bekalan pejabat" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "tumbuh-tumbuhan lain" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "kunci & kekunci" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "tanda baca" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "alat" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "simbol agama" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "peralatan sains" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "perubatan" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "nada kulit" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "barangan isi rumah" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "cuaca" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "objek lain" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "bunyi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "tanda-tanda pengangkutan" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sukan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "simbol amaran" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "bendera pembahagian" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "anak panah" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "masa" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "simbol agama" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "alat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "tanda-tanda zodiak" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "pengangkutan udara" -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "simbol audio & video" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "pengangkutan darat" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "tanda-tanda jantina" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "tanda-tanda pengangkutan" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "simbol matematik" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "pengangkutan air" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "tanda baca" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "simbol amaran" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "mata wang" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "secara bertulis" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "simbol lain" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "tanda-tanda zodiak" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "aksara pad kekunci" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "penunjuk wilayah %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "tanda bintang" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "tanda nombor" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "warna" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "simbol abjad" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "nada kulit gelap" -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "bentuk & warna" +#, fuzzy +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "nada kulit cahaya" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "bendera lain" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "nada kulit sederhana" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "bendera negara" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "nada kulit sederhana-gelap" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "bendera pembahagian" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "nada kulit ringan" diff --git a/po/ms/shortcodes.po b/po/ms/shortcodes.po index 83a4464e..7209f562 100644 --- a/po/ms/shortcodes.po +++ b/po/ms/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/nb/messages.po b/po/nb/messages.po index 8d9cf75c..55ee742b 100644 --- a/po/nb/messages.po +++ b/po/nb/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:35-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: nb\n" @@ -14,543 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regional indikator %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "farge" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "stjernen" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "aktiviteter" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "nummertegn" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "dyr og natur" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "lys hudtone" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "komponenter" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "middels lett hudtone" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "flagg" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "middels hudtone" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "mat og drikke" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "middels mørk hudtone" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objekter" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "mørk hudtone" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "mennesker og kropp" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smilefjes og følelser" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "mennesker og kropp" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "komponenter" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symboler" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "dyr og natur" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "reise og steder" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "mat og drikke" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alfanumeriske symboler" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "reise og steder" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "amfibier" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "aktiviteter" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "fugler" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objekter" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "feil" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symboler" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "pattedyr" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "flagg" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "marint liv" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "smilende" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptiler" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "hengiven" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "piler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "med tungen" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "kunst og håndverk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "med hender" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "lyd- og videosymboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "nøytral / skeptisk" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "tildele medaljer" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "søvnige" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "kroppsdeler" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "uvel" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "bøker og papir" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "med hatter" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "katten ansikter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "med briller" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "klær" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "bekymret" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "datamaskin" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativ" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "land flagg" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "kostymet og skapninger" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valutaer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "katten ansikter" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "servise" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "ape ansikter" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "drikke" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "følelser" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "fingrene åpne" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "arrangementer og helligdager" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "hånd tegn" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "hengiven" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "finger peker" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "bekymret" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "fingrene lukket" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "kostymet og skapninger" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "hender" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "med briller" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "hånd rekvisitter" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "med hender" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "kroppsdeler" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "med hatter" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "personer" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativ" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "bevegelser" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "nøytral / skeptisk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roller og karrierer" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "søvnige" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasi" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "smilende" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "friidrett" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "med tungen" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "hvile" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "uvel" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "familie" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "folk symboler" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "andre flagg" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "hudtoner" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiatiske" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "hår stiler" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "frukt" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "pattedyr" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "sjømat" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "fugler" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "kokt / forberedt" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "amfibier" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "søtsaker og godteri" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptiler" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "grønnsaker" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "marint liv" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "spill og hobbyer" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "feil" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "kjønnstegn" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "blomster" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "former og farger" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "andre planter" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "hår stiler" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "frukt" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "fingrene lukket" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "grønnsaker" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "fingrene åpne" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "kokt / forberedt" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "hånd tegn" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiatiske" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "hånd rekvisitter" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "sjømat" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "finger peker" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "søtsaker og godteri" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "hender" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "drikke" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "servise" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotell" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globes og kart" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "husholdningsartikler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geografiske steder" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "tastatur tegn" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "bygninger" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "lys, film og video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religiøse bygninger" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "lås og taster" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "andre steder" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "post" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "bakketransport" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "matematiske symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "transport av vann" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medisinsk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "lufttransport" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "penger" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotell" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "ape ansikter" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "tid" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "musikk" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "vær" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "musikkinstrumenter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "arrangementer og helligdager" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "kontorrekvisita" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "tildele medaljer" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "andre objekter" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sports" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "andre symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "spill og hobbyer" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "personer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "kunst og håndverk" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "klær" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasi" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "lyd" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "bevegelser" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "musikk" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "hvile" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "musikkinstrumenter" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roller og karrierer" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "friidrett" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "folk symboler" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "datamaskin" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "bygninger" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "lys, film og video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geografiske steder" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "bøker og papir" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globes og kart" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "penger" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "andre steder" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "post" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religiøse bygninger" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "skriver" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "blomster" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "kontorrekvisita" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "andre planter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "lås og taster" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "tegnsetting" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "verktøy" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religiøse symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "vitenskap utstyr" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medisinsk" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "hudtoner" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "husholdningsartikler" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "vær" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "andre objekter" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "lyd" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transportskilt" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sports" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "advarsel symboler" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "underinndeling flagg" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "piler" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "tid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religiøse symboler" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "verktøy" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "dyrekretsen tegn" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "lufttransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "lyd- og videosymboler" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "bakketransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "kjønnstegn" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transportskilt" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "matematiske symboler" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "transport av vann" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "tegnsetting" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "advarsel symboler" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valutaer" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "skriver" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "andre symboler" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "dyrekretsen tegn" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "tastatur tegn" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regional indikator %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "stjernen" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "nummertegn" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "farge" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alfanumeriske symboler" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "mørk hudtone" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "former og farger" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "lys hudtone" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "andre flagg" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "middels hudtone" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "land flagg" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "middels mørk hudtone" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "underinndeling flagg" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "middels lett hudtone" diff --git a/po/nb/shortcodes.po b/po/nb/shortcodes.po index d985e518..d8eb2d6c 100644 --- a/po/nb/shortcodes.po +++ b/po/nb/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/nl/messages.po b/po/nl/messages.po index 49e7b072..353befa0 100644 --- a/po/nl/messages.po +++ b/po/nl/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:37-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: nl\n" @@ -14,539 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regionale indicator %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "kleur" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisk" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "activiteiten" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "nummer teken" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "dieren & natuur" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "lichte huidskleur" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "componenten" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "medium-lichte huidskleur" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "flaggen" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "medium huidskleur" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "eten & drinken" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "medium-donkere huidskleur" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "kunstwerken en documenten" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "donkere huidskleur" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "people & body" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smileys & emotie" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "people & body" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "componenten" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symbolen" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "dieren & natuur" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "reizen & plaatsen" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "eten & drinken" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alfanumerieke symbolen" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "reizen & plaatsen" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "amfibieën" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "activiteiten" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "vogels" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "kunstwerken en documenten" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "bugs" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symbolen" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "zoogdieren" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "flaggen" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "zeeleven" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "glimlachend" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptielen" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "aanhankelijk" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "pijlen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "met tong" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "kunst & ambachten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "met de handen" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "audio & video symbolen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutraal / sceptisch" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "toekenning medailles" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "slaperig" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "lichaamsdelen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "onwel" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "boeken & papier" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "met hoeden" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "kattengezichten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "met een bril" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "kleding" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "betrokken" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computer" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negatief" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "landvlaggen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "gekostumeerd & wezens" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valuta" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "kattengezichten" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "vaatwerk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "apengezichten" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "drankje" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emoties" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "vingers open" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "evenementen & feestdagen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "handtekens" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "aanhankelijk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "vinger wijzen" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "betrokken" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "vingers gesloten" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "gekostumeerd & wezens" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "handen" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "met een bril" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "handrekwisieten" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "met de handen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "lichaamsdelen" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "met hoeden" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "personen" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negatief" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gebaren" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutraal / sceptisch" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "rollen & carrières" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "slaperig" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasie" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "glimlachend" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "atletiek" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "met tong" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "rust" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "onwel" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "familie" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "symbolen voor personen" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "andere vlaggen" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "huidtinten" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "aziatische" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "haarstijlen" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "fruit" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "zoogdieren" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "zeevruchten" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "vogels" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "gekookt / bereid" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "amfibieën" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "snoep" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptielen" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "groenten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "zeeleven" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "spellen" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "bugs" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "gendertekens" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "bloemen" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "vormen & kleuren" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "andere planten" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "haarstijlen" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "fruit" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "vingers gesloten" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "groenten" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "vingers open" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "gekookt / bereid" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "handtekens" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "aziatische" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "handrekwisieten" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "zeevruchten" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "vinger wijzen" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "snoep" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "handen" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "drankje" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "vaatwerk" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globes & kaarten" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "huishoudelijke artikelen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geografische locaties" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "toetsen aan toetsen" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "gebouwen" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "licht, film & video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religieuze gebouwen" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "slot & toetsen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "andere plaatsen" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "mail" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "grondtransport" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "wiskundige symbolen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "vervoer over water" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medische" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "luchtvervoer" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "geld" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "apengezichten" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "tijd" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "muziek" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "weer" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "muziekinstrumenten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "evenementen & feestdagen" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "kantoorbenodigdheden" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "toekenning medailles" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "andere objecten" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sport" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "andere symbolen" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "spellen" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "personen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "kunst & ambachten" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "kleding" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasie" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "geluid" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gebaren" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "muziek" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "rust" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "muziekinstrumenten" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "rollen & carrières" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "atletiek" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "symbolen voor personen" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefoon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "gebouwen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "licht, film & video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geografische locaties" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "boeken & papier" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globes & kaarten" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "geld" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "andere plaatsen" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "mail" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religieuze gebouwen" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "schrijven" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "bloemen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "kantoorbenodigdheden" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "andere planten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "slot & toetsen" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "interpunctie" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "hulpmiddelen" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religieuze symbolen" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "wetenschapsapparatuur" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medische" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "huidtinten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "huishoudelijke artikelen" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "weer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "andere objecten" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "geluid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transportborden" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "waarschuwingssymbolen" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "onderverdelingsvlaggen" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "pijlen" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "tijd" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religieuze symbolen" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "hulpmiddelen" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "sterrenbeelden" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "luchtvervoer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "audio & video symbolen" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "grondtransport" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "gendertekens" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transportborden" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "wiskundige symbolen" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "vervoer over water" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "interpunctie" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "waarschuwingssymbolen" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valuta" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "schrijven" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "andere symbolen" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "sterrenbeelden" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "toetsen aan toetsen" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regionale indicator %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisk" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "nummer teken" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "kleur" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alfanumerieke symbolen" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "donkere huidskleur" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "vormen & kleuren" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "lichte huidskleur" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "andere vlaggen" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "medium huidskleur" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "landvlaggen" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "medium-donkere huidskleur" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "onderverdelingsvlaggen" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "medium-lichte huidskleur" diff --git a/po/nl/shortcodes.po b/po/nl/shortcodes.po index bed59200..b31cf147 100644 --- a/po/nl/shortcodes.po +++ b/po/nl/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/pl/messages.po b/po/pl/messages.po index 5fb9c04d..359266d9 100644 --- a/po/pl/messages.po +++ b/po/pl/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:37-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: pl\n" @@ -14,541 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "wskaźnik regionalny %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "kolor" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "gwiazdka" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "aktywność" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "znak liczbowy" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "zwierzęta & przyroda" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "jasny koloryt skóry" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "składniki" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "średnio jasny koloryt skóry" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "flagi" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "średni koloryt skóry" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "jedzenie i picie" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "średnio-ciemny odcień skóry" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objekt" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "ciemny odcień skóry" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "ludzie & ciało" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "buźki & emocje" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "ludzie & ciało" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "składniki" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symbole" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "zwierzęta & przyroda" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "podróże & miejsca" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "jedzenie i picie" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "symbole alfanumeryczne" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "podróże & miejsca" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "płazy" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "aktywność" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "ptaki" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objekt" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "błędów" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symbole" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "ssaków" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "flagi" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "życie morskie" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "uśmiechnięty" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "gady" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "czuły" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "strzałki" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "z językiem" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "sztuka & rzemiosło" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "z rękami" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "symbole audio i wideo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutralny / sceptyczny" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "medale nagród" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "senny" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "części ciała" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "chory" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "książki & papier" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "z kapeluszami" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "twarze kota" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "w okularach" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "odzież" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "zainteresowanych" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "komputer" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "ujemny" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "flagi kraju" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "kostiumy & stworzenia" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "walut" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "twarze kota" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "naczynia" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "małpa twarze" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "pić" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emocje" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "palce otwarte" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "wydarzenia & święta" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "znaki dłoni" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "czuły" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "wskazywanie palcem" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "zainteresowanych" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "palce zamknięte" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "kostiumy & stworzenia" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "ręce" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "w okularach" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "podpory ręczne" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "z rękami" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "części ciała" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "z kapeluszami" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "ludzie" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "ujemny" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gesty" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutralny / sceptyczny" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "role & kariera" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "senny" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantazja" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "uśmiechnięty" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "lekkoatletyka" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "z językiem" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "odpoczynku" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "chory" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "rodzina" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "symbole osób" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "inne flagi" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "odcienie skóry" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "azjatyckie" -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "fryzury" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "owoców" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "ssaków" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "owoce morza" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "ptaki" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "gotowane / przygotowane" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "płazy" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "słodycze & cukierki" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "gady" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "warzywa" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "życie morskie" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "gry & hobby" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "błędów" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "objawy płci" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "kwiaty" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "kształty & kolory" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "inne rośliny" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "fryzury" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "owoców" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "palce zamknięte" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "warzywa" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "palce otwarte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "gotowane / przygotowane" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "znaki dłoni" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "azjatyckie" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "podpory ręczne" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "owoce morza" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "wskazywanie palcem" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "słodycze & cukierki" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "ręce" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "pić" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "naczynia" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globusy & mapy" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "artykuły gospodarstwa domowego" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "lokalizacje geograficzne" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "znaki klawiatury" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "budynków" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "światło, film & wideo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "budynki sakrne" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "blokada & klawisze" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "inne miejsca" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "poczta" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "transport naziemny" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "symbole matematyczne" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "transport wodny" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medycznych" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "transport lotniczy" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "pieniądze" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "małpa twarze" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "czas" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "muzyka" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "pogoda" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "instrumenty muzyczne" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "wydarzenia & święta" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "materiały biurowe" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "medale nagród" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "inne obiekty" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sportowe" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "inne symbole" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "gry & hobby" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "ludzie" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "sztuka & rzemiosło" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "odzież" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantazja" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "dźwięk" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gesty" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "muzyka" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "odpoczynku" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "instrumenty muzyczne" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "role & kariera" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "lekkoatletyka" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "symbole osób" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "komputer" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "budynków" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "światło, film & wideo" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "lokalizacje geograficzne" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "książki & papier" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globusy & mapy" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "pieniądze" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "inne miejsca" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "poczta" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "budynki sakrne" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "pisania" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "kwiaty" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "materiały biurowe" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "inne rośliny" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "blokada & klawisze" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "interpunkcja" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "przybory" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "symbole religijne" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "sprzęt naukowy" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medycznych" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "odcienie skóry" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "artykuły gospodarstwa domowego" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "pogoda" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "inne obiekty" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "dźwięk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "znaki transportowe" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sportowe" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "symbole ostrzegawcze" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "flagi podpodziału" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "strzałki" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "czas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "symbole religijne" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "przybory" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "zodiaku" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "transport lotniczy" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "symbole audio i wideo" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "transport naziemny" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "objawy płci" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "znaki transportowe" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "symbole matematyczne" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "transport wodny" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "interpunkcja" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "symbole ostrzegawcze" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "walut" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "pisania" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "inne symbole" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "zodiaku" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "znaki klawiatury" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "wskaźnik regionalny %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "gwiazdka" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "znak liczbowy" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "kolor" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "symbole alfanumeryczne" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "ciemny odcień skóry" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "kształty & kolory" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "jasny koloryt skóry" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "inne flagi" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "średni koloryt skóry" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "flagi kraju" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "średnio-ciemny odcień skóry" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "flagi podpodziału" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "średnio jasny koloryt skóry" diff --git a/po/pl/shortcodes.po b/po/pl/shortcodes.po index c3748a7f..13bda962 100644 --- a/po/pl/shortcodes.po +++ b/po/pl/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/pt/messages.po b/po/pt/messages.po index 362c563c..21f2766b 100644 --- a/po/pt/messages.po +++ b/po/pt/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:40-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: pt\n" @@ -14,544 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "indicador regional %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "cor" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisco" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "atividades" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "sinal de número" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "animais e natureza" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "tom de pele clara" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "componentes" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "tom de pele de luz média" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "comutadores" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "tom de pele média" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "comida e bebida" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "tom de pele média-escura" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objetos" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "tom de pele escura" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "pessoas e corpo" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "sorrisos e emoção" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "pessoas e corpo" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "componentes" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "símbolos" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "animais e natureza" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "viagens e lugares" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "comida e bebida" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "símbolos alfanuméricos" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "viagens e lugares" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "anfíbios" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "atividades" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "aves" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objetos" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "insetos" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "símbolos" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mamíferos" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "comutadores" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "vida marinha" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "sorrindo" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "répteis" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "carinhoso" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "setas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "com língua" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "artesanato" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "com as mãos" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "símbolos de áudio e vídeo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutro / cético" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "medalhas de prêmio" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "sonolento" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "partes do corpo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "indisposto" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "livros e papel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "com chapéus" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "rostos gato" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "com óculos" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "roupa" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "preocupado" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "computador" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativo" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "bandeiras do país" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "fantasiados e criaturas" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "moedas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "rostos gato" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "loiça" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "rostos macaco" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "bebida" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "emoções" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "dedos abertos" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "eventos e feriados" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "sinais de mão" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "carinhoso" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "apontar o dedo" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "preocupado" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "dedos fechados" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "fantasiados e criaturas" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "mãos" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "com óculos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "adereços de mão" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "com as mãos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "partes do corpo" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "com chapéus" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "pessoas" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativo" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gestos" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutro / cético" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "papéis e carreiras" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "sonolento" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasia" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "sorrindo" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "atletismo" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "com língua" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "descansando" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "indisposto" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "família" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "símbolos de pessoas" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "outras bandeiras" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "tons de pele" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiático" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "estilos de cabelo" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "fruta" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mamíferos" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "marisco" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "aves" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "cozido / preparado" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "anfíbios" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "doces e doces" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "répteis" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "vegetais" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "vida marinha" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "jogos e hobbies" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "insetos" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "sinais de gênero" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "flores" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "formas e cores" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "outras plantas" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "estilos de cabelo" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "fruta" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "dedos fechados" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "vegetais" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "dedos abertos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "cozido / preparado" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "sinais de mão" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiático" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "adereços de mão" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "marisco" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "apontar o dedo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "doces e doces" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "mãos" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "bebida" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "loiça" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "globos e mapas" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "utensílios domésticos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "localizações geográficas" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "caracteres teclado" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "edifícios" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "luz, filme e vídeo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "edifícios religiosos" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "bloqueio e chaves" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "outros lugares" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "correio" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "transporte terrestre" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "símbolos matemáticos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "transporte aquático" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "médico" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "transporte aéreo" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "total de dinheiro gasto" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotel" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "rostos macaco" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "hora" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "música" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "clima" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "instrumentos musicais" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "eventos e feriados" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "materiais de escritório" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "medalhas de prêmio" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "outros objetos" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "desporto" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "outros símbolos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "jogos e hobbies" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "pessoas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "artesanato" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "roupa" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasia" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "som" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gestos" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "música" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "descansando" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "instrumentos musicais" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "papéis e carreiras" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "atletismo" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "símbolos de pessoas" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefone" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "computador" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "edifícios" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "luz, filme e vídeo" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "localizações geográficas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "livros e papel" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "globos e mapas" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "total de dinheiro gasto" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "outros lugares" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "correio" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "edifícios religiosos" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "escrever" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "flores" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "materiais de escritório" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "outras plantas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "bloqueio e chaves" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "pontuação" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "ferramentas" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "símbolos religiosos" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "equipamento científico" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "médico" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "tons de pele" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "utensílios domésticos" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "clima" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "outros objetos" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "som" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "sinais de transporte" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "desporto" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "símbolos de aviso" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "bandeiras de subdivisão" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "setas" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "hora" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "símbolos religiosos" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "ferramentas" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "signos do zodíaco" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "transporte aéreo" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "símbolos de áudio e vídeo" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "transporte terrestre" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "sinais de gênero" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "sinais de transporte" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "símbolos matemáticos" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "transporte aquático" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "pontuação" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "símbolos de aviso" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "moedas" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "escrever" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "outros símbolos" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "signos do zodíaco" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "caracteres teclado" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "indicador regional %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisco" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "sinal de número" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "cor" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "símbolos alfanuméricos" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "tom de pele escura" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "formas e cores" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "tom de pele clara" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "outras bandeiras" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "tom de pele média" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "bandeiras do país" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "tom de pele média-escura" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "bandeiras de subdivisão" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "tom de pele de luz média" diff --git a/po/pt/shortcodes.po b/po/pt/shortcodes.po index aa1d4ec5..2104fbc4 100644 --- a/po/pt/shortcodes.po +++ b/po/pt/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/ru/messages.po b/po/ru/messages.po index 6bb7a158..aaf9f4cc 100644 --- a/po/ru/messages.po +++ b/po/ru/messages.po @@ -5,540 +5,609 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:40-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" -"Language-Team: Russian \n" +"Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "региональный показатель %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "цвет" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "звездочка" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "варианты досуга" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "числовой знак" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "животные и природа" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "светлый тон кожи" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "компонент" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "средне-светлый тон кожи" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "флаг" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "средний тон кожи" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "еда и напитки" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "средне-темный тон кожи" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "предметы" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "темный тон кожи" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "тело людей" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "смайлики и люди" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "тело людей" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "компонент" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "символы" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "животные и природа" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "путешествия и местности" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "еда и напитки" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "алфавитные символы" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "путешествия и местности" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "aмфибий" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "варианты досуга" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "птицы" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "предметы" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "ошибки" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "символы" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "mлекопитающих" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "флаг" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "морской флоры и фауны" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "улыбающиеся лицо" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "pептилий" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "любящий" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "стрелки" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "с языком" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "искусства и ремесел" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "руками" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "аудио- и видео символы" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "нейтральный / скептически" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "наградные медали" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "сонный" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "части тела" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "нездоровый" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "книги и бумага" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "с шляпами" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "кошки лица" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "в очках" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "одежда" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "обеспокоенный" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "компьютер" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "отрицательный" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "флаг страны" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "костюмированные и существа" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "валюта" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "кошки лица" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "посуда" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "обезьяна лица" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "напиток" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "эмоция" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "пальцы открыты" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "событие" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "ручные знаки" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "любящий" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "пальцем указывая" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "обеспокоенный" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "пальцы закрыты" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "костюмированные и существа" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "руки" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "в очках" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "ручные реквизиты" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "руками" -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "части тела" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "с шляпами" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "человек" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "отрицательный" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "жесты" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "нейтральный / скептически" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "роли и карьеры" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "сонный" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "фантастика" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "улыбающиеся лицо" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "легкая атлетика" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "с языком" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "отдыхающий" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "нездоровый" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "семья" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "символы людей" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "другие флаги" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "тона кожи" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "азиатский" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "прически" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "фрукты" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "mлекопитающих" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "mорепродукты" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "птицы" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "приготовленные / подготовленные" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "aмфибий" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "сладости и конфеты" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "pептилий" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "овощи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "морской флоры и фауны" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "игра" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "ошибки" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "пол" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "цветы" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "формы и цвета" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "другие растения" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "прически" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "фрукты" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "пальцы закрыты" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "овощи" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "пальцы открыты" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "приготовленные / подготовленные" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "ручные знаки" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "азиатский" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "ручные реквизиты" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "mорепродукты" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "пальцем указывая" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "сладости и конфеты" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "руки" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "напиток" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "посуда" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "отель" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "глобусы и карты" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "предметы домашнего обихода" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "географические местоположения" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "символы клавиатуры" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "здания" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "свет, пленка и видео" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "религиозные здания" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "замок" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "в других местах" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "почта" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "наземный транспорт" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "математика" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "водный транспорт" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "медицина" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "авиаперевозки" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "деньги" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "отель" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "обезьяна лица" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "время" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "музыка" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "погода" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "музыкальные инструменты" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "событие" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "офис" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "наградные медали" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "другие объекты" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "спорт" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "другие символы" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "игра" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "человек" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "искусства и ремесел" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "одежда" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "фантастика" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "звук" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "жесты" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "музыка" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "отдыхающий" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "музыкальные инструменты" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "роли и карьеры" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "легкая атлетика" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "символы людей" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "телефон" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "компьютер" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "здания" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "свет, пленка и видео" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "географические местоположения" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "книги и бумага" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "глобусы и карты" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "деньги" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "в других местах" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "почта" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "религиозные здания" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "письмо" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "цветы" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "офис" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "другие растения" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "замок" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "пунктуация" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "инструменты" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "религия" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "научное оборудование" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "медицина" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "тона кожи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "предметы домашнего обихода" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "погода" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "другие объекты" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "звук" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "транспортные знаки" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "спорт" -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "предупреждение" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "флаги подразделений" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "стрелки" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "время" -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "религия" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "инструменты" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "знаки зодиака" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "авиаперевозки" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "аудио- и видео символы" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "наземный транспорт" -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "пол" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "транспортные знаки" -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "математика" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "водный транспорт" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "пунктуация" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "предупреждение" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "валюта" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "письмо" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "другие символы" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "знаки зодиака" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "символы клавиатуры" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "региональный показатель %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "звездочка" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "числовой знак" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "цвет" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "алфавитные символы" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "темный тон кожи" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "формы и цвета" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "светлый тон кожи" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "другие флаги" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "средний тон кожи" -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "флаг страны" +#, fuzzy +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "средне-темный тон кожи" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "флаги подразделений" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "средне-светлый тон кожи" diff --git a/po/ru/shortcodes.po b/po/ru/shortcodes.po index 08d7cfc5..948dfcec 100644 --- a/po/ru/shortcodes.po +++ b/po/ru/shortcodes.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Artem \n" "Language-Team: Russian \n" "Language: ru\n" @@ -1205,6 +1205,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "брокколи" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1225,6 +1230,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3185,6 +3195,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "семья" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5505,6 +5535,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6555,6 +6595,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "молния" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7020,11 +7065,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7050,6 +7105,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7120,6 +7180,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7190,6 +7255,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7215,6 +7285,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8650,11 +8725,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8680,6 +8765,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8720,6 +8810,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8765,6 +8860,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8795,6 +8895,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8810,6 +8915,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "филиппины" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12300,11 +12410,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12330,6 +12450,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12400,6 +12525,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12470,6 +12600,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12500,6 +12635,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/sv/messages.po b/po/sv/messages.po index 5f14839c..a3a41bcf 100644 --- a/po/sv/messages.po +++ b/po/sv/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:43-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: sv\n" @@ -14,532 +14,594 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "regional indikator %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "färg" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "asterisk" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "aktiviteter" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "nummertecken" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "djur & natur" -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "ljus toning" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "komponenter" -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "medelljus toning" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "flaggor" -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "medium toning" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "mat & dryck" -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "medelmörk toning" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "objekt" -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "mörk toning" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "människor & kropp" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "smileys & emotion" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "människor & kropp" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "komponenter" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "symboler" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "djur & natur" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "resor & platser" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "mat & dryck" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "alfanumeriska symboler" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "resor & platser" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "amfibier" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "aktiviteter" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "fåglar" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "objekt" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "buggar" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "symboler" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "däggdjur" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "flaggor" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "marint liv" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "leende" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "reptiler" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "tillgiven" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "pilar" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "med tunga" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "konst & hantverk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "med händer" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "ljud - och bildsymboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "neutrala / skeptiska" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "tilldela medaljer" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "sömnig" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "kroppsdelar" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "dåligt" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "böcker & papper" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "med hattar" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "katt ansikten" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "med glasögon" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "kläder" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "berörda" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "dator" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "negativ" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "land flaggor" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "kostym & varelser" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "valutor" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "katt ansikten" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "porslin" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "apa ansikten" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "dryck" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "känslor" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "fingrar öppna" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "händelser & helgdagar" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "handtecken" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "tillgiven" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "fingret pekar" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "berörda" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "fingrar stängda" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "kostym & varelser" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "händer" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "med glasögon" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "hand rekvisita" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "med händer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "kroppsdelar" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "med hattar" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "personer" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "negativ" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "gester" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "neutrala / skeptiska" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "roller & karriärer" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "sömnig" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "fantasi" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "leende" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "friidrott" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "med tunga" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "vila" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "dåligt" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "familj" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "människor symboler" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "andra flaggor" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "hudtoner" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "asiatiska" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "hår stilar" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "frukt" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "däggdjur" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "skaldjur" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "fåglar" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "kokta / beredda" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "amfibier" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "godis" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "reptiler" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "grönsaker" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "marint liv" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "spel & hobbyer" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "buggar" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "könstecken" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "blommor" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "former & färger" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "andra växter" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "hår stilar" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "frukt" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "fingrar stängda" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "grönsaker" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "fingrar öppna" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "kokta / beredda" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "handtecken" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "asiatiska" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "hand rekvisita" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "skaldjur" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "fingret pekar" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "godis" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "händer" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "dryck" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "porslin" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "hotell" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "glober & kartor" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "husgeråd" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "geografiska platser" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "knappsatstecken" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "byggnader" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "ljus, film & video" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "religiösa byggnader" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "lås & nycklar" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "andra platser" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "post" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "marktransporter" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "matematik symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "vatten transport" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "medicinsk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "lufttransporter" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "pengar" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "hotell" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "apa ansikten" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "tid" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "musik" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "väder" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "musikinstrument" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "händelser & helgdagar" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "kontorsmateriel" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "tilldela medaljer" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "andra objekt" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "sporter" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "andra symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "spel & hobbyer" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "personer" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "konst & hantverk" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "kläder" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "fantasi" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "ljud" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "gester" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "musik" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "vila" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "musikinstrument" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "roller & karriärer" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "friidrott" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "människor symboler" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "telefon" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "dator" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "byggnader" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "ljus, film & video" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "geografiska platser" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "böcker & papper" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "glober & kartor" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "pengar" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "andra platser" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "post" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "religiösa byggnader" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "skriva" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "blommor" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "kontorsmateriel" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "andra växter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "lås & nycklar" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "skiljetecken" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "verktyg" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "religiösa symboler" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "vetenskap utrustning" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "medicinsk" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "hudtoner" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "husgeråd" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "väder" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "andra objekt" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "ljud" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "transportskyltar" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "sporter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "varningssymboler" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "flaggor för indelning" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "pilar" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "tid" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "religiösa symboler" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "verktyg" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "stjärntecken" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "lufttransporter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "ljud - och bildsymboler" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "marktransporter" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "könstecken" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "transportskyltar" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "matematik symboler" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "vatten transport" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "skiljetecken" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "varningssymboler" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "valutor" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "skriva" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "andra symboler" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "stjärntecken" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "knappsatstecken" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "regional indikator %s" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "alfanumeriska symboler" +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "asterisk" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "former & färger" +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "nummertecken" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "andra flaggor" +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "färg" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "land flaggor" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "mörk toning" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "flaggor för indelning" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "ljus toning" + +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "medium toning" + +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "medelmörk toning" + +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "medelljus toning" diff --git a/po/sv/shortcodes.po b/po/sv/shortcodes.po index fe46c3f5..c990ac1e 100644 --- a/po/sv/shortcodes.po +++ b/po/sv/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Luna Jernberg \n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1204,6 +1204,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "broccoli" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1224,6 +1229,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "brunt_hjärta" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3184,6 +3194,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "familj" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5504,6 +5534,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "kläckande_kyckling" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6554,6 +6594,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "blixt" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7019,11 +7064,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "man_i_manuell_rullstol" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "man_i_motoriserad_rullstol" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7049,6 +7104,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "man_knäfaller" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7119,6 +7179,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "man_springer" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7189,6 +7254,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "man_går" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7214,6 +7284,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "man_med_vit_käpp" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8649,11 +8724,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "person_i_manuell_rullstol" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "person_i_motoriserad_rullstol" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8679,6 +8764,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "person_knäböjande" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8719,6 +8809,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "person_springer" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8764,6 +8859,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "person_går" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8794,6 +8894,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "person_med_vit_käpp" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8809,6 +8914,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "filippinerna" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12299,11 +12409,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "kvinna_i_manuell_rullstol" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "kvinna_i_motoriserad_rullstol" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12329,6 +12449,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "kvinna_hjular" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12399,6 +12524,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "kvinna_springer" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12469,6 +12599,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "kvinna_går" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12499,6 +12634,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "kvinna_med_blindkäpp" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/th/messages.po b/po/th/messages.po index dd8e9488..78d4490c 100644 --- a/po/th/messages.po +++ b/po/th/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:43-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: th\n" @@ -14,582 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "ตัวบ่งชี้ภูมิภาคก %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "สี" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "ดอกจัน" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "กิจกรรม" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "เครื่องหมายตัวเลข" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "สัตว์ป่าและธรรมชาติ" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "โทนสีผิวอ่อน" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "คอม โพ เนนต์" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "โทนสีผิวสีอ่อนปานกลาง" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "ธง" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "โทนสีผิวปานกลาง" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "อาหารและเครื่องดื่ม" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "โทนสีผิวคล้ําปานกลาง" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "วัตถุ" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "โทนสีผิวคล้ํา" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "คนและร่างกาย" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "รอยยิ้มและอารมณ์" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "คนและร่างกาย" - -#, fuzzy -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "คอม โพ เนนต์" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "สัญลักษณ์" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "สัตว์ป่าและธรรมชาติ" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "สถานที่ท่องเที่ยว" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "อาหารและเครื่องดื่ม" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "สัญลักษณ์ตัวอักษรและตัวเลข" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "สถานที่ท่องเที่ยว" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "สะเทินน้ําสะเทินบก" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "กิจกรรม" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "นก" -#, fuzzy -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "วัตถุ" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "ข้อ บกพร่อง" -#, fuzzy -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "สัญลักษณ์" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "เลี้ยงลูกด้วยนม" -#, fuzzy -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "ธง" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "ชีวิตทางทะเล" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "รอย ยิ้ม" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "สัตว์เลื้อยคลาน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "รักใคร่" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "ลูกศร" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "ด้วยลิ้น" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "ศิลปะและงานฝีมือ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "ด้วยมือ" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "สัญลักษณ์เสียงและวิดีโอ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "เป็นกลาง / สงสัย" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "เหรียญรางวัล" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "ง่วง นอน" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "ส่วนต่างๆ ของร่างกาย" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "ไม่สบาย" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "หนังสือและกระดาษ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "กับหมวก" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "ใบหน้าแมว" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "กับแว่นตา" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "เสื้อ ผ้า" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "กังวล" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "คอมพิวเตอร์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "เนกาทีฟ" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "ธงชาติ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "เครื่องแต่งกายและสิ่งมีชีวิต" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "สกุล เงิน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "ใบหน้าแมว" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "เครื่องล้างจาน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "ใบหน้าลิง" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "เครื่อง ดื่ม" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "อารมณ์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "เปิดนิ้ว" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "กิจกรรมและวันหยุดนักขัตฤกษ์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "สัญญาณมือ" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "รักใคร่" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "การชี้นิ้ว" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "กังวล" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "ปิดนิ้วแล้ว" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "เครื่องแต่งกายและสิ่งมีชีวิต" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "มือ" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "กับแว่นตา" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "อุปกรณ์ประกอบฉากมือ" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "ด้วยมือ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "ส่วนต่างๆ ของร่างกาย" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "กับหมวก" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "คน" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "เนกาทีฟ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "รูป แบบ ลาย เส้น" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "เป็นกลาง / สงสัย" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "บทบาทและอาชีพ" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "ง่วง นอน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "แฟนตาซี" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "รอย ยิ้ม" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "กรีฑา" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "ด้วยลิ้น" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "พักผ่อน" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "ไม่สบาย" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "ครอบครัว" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "สัญลักษณ์บุคคล" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "ค่าสถานะอื่นๆ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "โทนสีผิว" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "เอเชีย" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "สไตล์ผม" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "ผลไม้" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "เลี้ยงลูกด้วยนม" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "อาหาร ทะเล" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "นก" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "สุก / เตรียม" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "สะเทินน้ําสะเทินบก" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "ขนมและลูกอม" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "สัตว์เลื้อยคลาน" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "ผัก" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "ชีวิตทางทะเล" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "เกมและงานอดิเรก" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "ข้อ บกพร่อง" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "สัญญาณทางเพศ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "ดอกไม้" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "รูปร่างและสี" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "พืชอื่น ๆ" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "สไตล์ผม" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "ผลไม้" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "ปิดนิ้วแล้ว" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "ผัก" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "เปิดนิ้ว" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "สุก / เตรียม" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "สัญญาณมือ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "เอเชีย" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "อุปกรณ์ประกอบฉากมือ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "อาหาร ทะเล" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "การชี้นิ้ว" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "ขนมและลูกอม" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "มือ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "เครื่อง ดื่ม" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "เครื่องล้างจาน" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "โรงแรม" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "ลูกโลกและแผนที่" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "ของใช้ในครัวเรือน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "ที่ตั้งทางภูมิศาสตร์" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "อักขระแป้นพิมพ์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "อาคาร" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "แสง, ภาพยนตร์และวิดีโอ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "อาคารทางศาสนา" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "ล็อคและกุญแจ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "สถานที่อื่น ๆ" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "จดหมาย" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "การขนส่งทางบก" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "สัญลักษณ์ทางคณิตศาสตร์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "การขนส่งทางน้ํา" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "แพทย์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "การขนส่งทางอากาศ" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "เงิน" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "โรงแรม" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "ใบหน้าลิง" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "เวลา" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "เพลง" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "สภาพ อากาศ" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "ดนตรี" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "กิจกรรมและวันหยุดนักขัตฤกษ์" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "เครื่องใช้สํานักงาน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "เหรียญรางวัล" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "วัตถุอื่นๆ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "กีฬา" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "สัญลักษณ์อื่นๆ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "เกมและงานอดิเรก" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "คน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "ศิลปะและงานฝีมือ" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "เสื้อ ผ้า" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "แฟนตาซี" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "เสียง" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "รูป แบบ ลาย เส้น" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "เพลง" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "พักผ่อน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "ดนตรี" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "บทบาทและอาชีพ" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "กรีฑา" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "สัญลักษณ์บุคคล" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "เบอร์โทร" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "คอมพิวเตอร์" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "อาคาร" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "แสง, ภาพยนตร์และวิดีโอ" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "ที่ตั้งทางภูมิศาสตร์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "หนังสือและกระดาษ" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "ลูกโลกและแผนที่" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "เงิน" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "สถานที่อื่น ๆ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "จดหมาย" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "อาคารทางศาสนา" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "เขียน" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "ดอกไม้" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "เครื่องใช้สํานักงาน" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "พืชอื่น ๆ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "ล็อคและกุญแจ" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "เครื่อง หมาย วรรค ตอน" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "เครื่องมือ" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "สัญลักษณ์ทางศาสนา" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "อุปกรณ์วิทยาศาสตร์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "แพทย์" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "โทนสีผิว" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "ของใช้ในครัวเรือน" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "สภาพ อากาศ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "วัตถุอื่นๆ" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "เสียง" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "สัญญาณการขนส่ง" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "กีฬา" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "สัญลักษณ์การเตือน" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "แฟล็กการแบ่งย่อย" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "ลูกศร" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "เวลา" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "สัญลักษณ์ทางศาสนา" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "เครื่องมือ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "ราศีกันย์" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "การขนส่งทางอากาศ" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "สัญลักษณ์เสียงและวิดีโอ" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "การขนส่งทางบก" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "สัญญาณทางเพศ" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "สัญญาณการขนส่ง" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "สัญลักษณ์ทางคณิตศาสตร์" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "การขนส่งทางน้ํา" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "เครื่อง หมาย วรรค ตอน" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "สัญลักษณ์การเตือน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "สกุล เงิน" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "เขียน" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "สัญลักษณ์อื่นๆ" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "ราศีกันย์" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "อักขระแป้นพิมพ์" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "ตัวบ่งชี้ภูมิภาคก %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "ดอกจัน" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "เครื่องหมายตัวเลข" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "สี" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "สัญลักษณ์ตัวอักษรและตัวเลข" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "โทนสีผิวคล้ํา" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "รูปร่างและสี" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "โทนสีผิวอ่อน" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "ค่าสถานะอื่นๆ" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "โทนสีผิวปานกลาง" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "ธงชาติ" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "โทนสีผิวคล้ําปานกลาง" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "แฟล็กการแบ่งย่อย" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "โทนสีผิวสีอ่อนปานกลาง" diff --git a/po/th/shortcodes.po b/po/th/shortcodes.po index bb70e6c2..c9234906 100644 --- a/po/th/shortcodes.po +++ b/po/th/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/uk/messages.po b/po/uk/messages.po index 4766dd98..375b2554 100644 --- a/po/uk/messages.po +++ b/po/uk/messages.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:44-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: \n" "Language: uk\n" @@ -14,544 +14,599 @@ msgstr "" "Plural-Forms: \n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "регіональний показник %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "колір" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "зірочка" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "діяльності" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "знак числа" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "тварини & природа" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "світлий тон шкіри" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "kомпоненти" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "помірно світлий тон шкіри" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "прапори" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "помірний тон шкіри" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "їжа та напої" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "помірно темний тон шкіри" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "об'єктів" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "темний тон шкіри" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "люди & тіло" -#, fuzzy -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "смайлики & емоції" -#, fuzzy -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "люди & тіло" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "kомпоненти" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "cимволи" -#, fuzzy -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "тварини & природа" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "подорожі та місця" -#, fuzzy -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "їжа та напої" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "буквено-цифрові символи" -#, fuzzy -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "подорожі та місця" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "aмфібії" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "діяльності" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "птахів" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "об'єктів" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "помилки" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "cимволи" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "cсавців" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "прапори" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "морське життя" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "посміхається" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "плазуни" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "ласкавий" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "стрілки" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "з язиком" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "мистецтво & ремесла" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "руками" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "аудіо та відео символи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "нейтральний / скептичний" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "нагородити медалями" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "cонний" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "частини тіла" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "нездужає" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "книги та папір" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "з капелюхами" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "кішка особи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "в окулярах" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "одяг" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "занепокоєні" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "комп'ютер" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "негативний" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "прапори країни" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "костюмовані & істоти" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "валюти" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "кішка особи" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "посуд" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "мавпа особи" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "питво" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "емоції" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "пальці відкриті" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "події та свята" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "знаки руки" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "ласкавий" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "вказівник пальця" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "занепокоєні" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "пальці закриті" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "костюмовані & істоти" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "pуки" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "в окулярах" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "реквізит ручний" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "руками" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "частини тіла" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "з капелюхами" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "люди" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "негативний" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "жести" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "нейтральний / скептичний" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "ролі та кар'єра" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "cонний" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "фантазія" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "посміхається" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "атлетика" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "з язиком" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "відпочиваючи" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "нездужає" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "сімейство" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "люди символи" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "інші прапорці" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "тони шкіри" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "aзіатських" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "зачіски" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "фрукти" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "cсавців" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "морепродукти" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "птахів" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "приготований / приготований" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "aмфібії" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "цукерки" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "плазуни" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "овощи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "морське життя" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "ігри та хобі" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "помилки" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "гендерні ознаки" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "квіти" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "фігури та кольори" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "інші рослини" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "зачіски" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "фрукти" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "пальці закриті" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "овощи" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "пальці відкриті" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "приготований / приготований" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "знаки руки" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "aзіатських" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "реквізит ручний" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "морепродукти" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "вказівник пальця" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "цукерки" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "pуки" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "питво" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "посуд" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "готель" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "глобуси & карти" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "предмети побуту" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "географічні розташування" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "символи клавіатури" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "будівель" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "світло, фільм & відео" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "культові споруди" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "блокування та ключі" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "в інших місцях" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "лист" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "наземні перевезення" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "математичні символи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "транспортування води" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "медичний" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "авіаперевезення" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "гроші" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "готель" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "мавпа особи" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "час" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "музики" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "погода" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "музичні інструменти" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "події та свята" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "офісне приладдя" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "нагородити медалями" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "інші об'єкти" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "спортивні змагання" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "інші символи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "ігри та хобі" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "люди" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "мистецтво & ремесла" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "одяг" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "фантазія" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "звук" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "жести" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "музики" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "відпочиваючи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "музичні інструменти" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "ролі та кар'єра" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "атлетика" + +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "люди символи" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "телефон" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "комп'ютер" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "будівель" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "світло, фільм & відео" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "географічні розташування" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "книги та папір" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "глобуси & карти" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "гроші" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "в інших місцях" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "лист" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "культові споруди" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "письмо" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "квіти" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "офісне приладдя" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "інші рослини" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "блокування та ключі" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "пунктуація" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "інструменти" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "релігійні символи" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "наукове обладнання" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "медичний" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "тони шкіри" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "предмети побуту" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "погода" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "інші об'єкти" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "звук" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "транспортні знаки" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "спортивні змагання" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "попереджувальні символи" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "прапори підрозділу" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "стрілки" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "час" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "релігійні символи" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "інструменти" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "знаки зодіаку" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "авіаперевезення" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "аудіо та відео символи" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "наземні перевезення" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "гендерні ознаки" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "транспортні знаки" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "математичні символи" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "транспортування води" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "пунктуація" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "попереджувальні символи" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "валюти" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "письмо" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "інші символи" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "знаки зодіаку" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "символи клавіатури" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "регіональний показник %s" + +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "зірочка" + +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "знак числа" + +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "колір" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "буквено-цифрові символи" +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "темний тон шкіри" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "фігури та кольори" +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "світлий тон шкіри" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "інші прапорці" +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "помірний тон шкіри" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "прапори країни" +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "помірно темний тон шкіри" #, fuzzy -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "прапори підрозділу" +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "помірно світлий тон шкіри" diff --git a/po/uk/shortcodes.po b/po/uk/shortcodes.po index f58f65f6..78a8cf37 100644 --- a/po/uk/shortcodes.po +++ b/po/uk/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/zh-hant/messages.po b/po/zh-hant/messages.po index a5898272..a0b6aea8 100644 --- a/po/zh-hant/messages.po +++ b/po/zh-hant/messages.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:48-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: Chinese (Traditional)\n" "Language: zh_Hant\n" @@ -15,484 +15,599 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "區域指標 %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "顏色" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "星號" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "个人活动" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "數字符號" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "野生动物" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "淺膚色" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "组件" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "中光膚色" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "旗帜" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "中等膚色" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "食物飲料" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "中深色膚色" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "物件" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "深色膚色" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "人体" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "笑脸" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "人体" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "组件" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "人的符号" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "野生动物" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "旅遊地點" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "食物飲料" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "字母数字" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "旅遊地點" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "两栖动物" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "个人活动" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "鳥類動物" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "物件" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "蟲類動物" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "人的符号" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "哺乳類動物" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "旗帜" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "水生動物" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "笑脸" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "爬蟲類動物" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "爱你哦" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "箭头" -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "吐舌" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "工艺品" -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "掩嘴笑" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "音频和视频符号" -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "怀疑" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "奖章" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "瞌睡" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "身体部位" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "生病" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "印书纸" -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "帽子" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "猫脸" -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "眼镜" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "服装" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "关心" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "计算机" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "沮丧" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "国家旗帜" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "衣服" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "货币" -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "猫脸" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "餐具" -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "猴子" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "飲品" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "情绪" -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "手伸开" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "事件" -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "手的手指部分" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "爱你哦" -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "一根手指" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "关心" -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "拳头" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "衣服" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "手" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "眼镜" -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "举手" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "掩嘴笑" -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "身体部位" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "帽子" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "人" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "沮丧" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "做手势" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "怀疑" -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "演员" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "瞌睡" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "有魅力的人" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "笑脸" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "競技" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "吐舌" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "休息" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "生病" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "家庭" -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "人符號" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "其他標誌" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "膚色" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "亞洲食物" -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "髮型" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "水果類食物" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "哺乳類動物" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "水產食物" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "鳥類動物" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "准备好的食物" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "两栖动物" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "甜食物" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "爬蟲類動物" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "蔬菜類食物" -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "水生動物" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "游戏" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "蟲類動物" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "性别" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "花卉植物" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "几何" -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "其他植物" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "髮型" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "水果類食物" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "拳头" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "蔬菜類食物" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "手伸开" -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "准备好的食物" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "手的手指部分" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "亞洲食物" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "举手" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "水產食物" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "一根手指" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "甜食物" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "手" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "飲品" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "餐具" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "旅馆" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "地球和地圖" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "一家人" -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "地理位置" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "键帽" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "地方建筑" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "轻视频" -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "宗教场所" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "锁" -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "其他地點" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "邮件" -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "陆运" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "数学" -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "水运" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "医疗的" -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "空运" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "钱" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "旅馆" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "猴子" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "时间" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "音乐" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "天气" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "乐器" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "事件" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "办公室" -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "奖章" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "其它物体" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "运动" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "其他符号" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "游戏" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "人" -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "工艺品" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "服装" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "有魅力的人" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "声音" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "做手势" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "音乐" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "休息" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "乐器" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "演员" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "競技" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "人符號" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "手机" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "计算机" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "地方建筑" -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "轻视频" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "地理位置" -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "印书纸" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "地球和地圖" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "钱" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "其他地點" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "邮件" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "宗教场所" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "文章" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "花卉植物" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "办公室" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "其他植物" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "锁" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "标点符号" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "工具" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "宗教" -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "科学" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "医疗的" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "膚色" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "一家人" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "天气" -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "其它物体" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "声音" -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "交通标志" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "运动" -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "警告" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "细分旗帜" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "箭头" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "时间" -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "宗教" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "工具" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "星座" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "空运" -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "音频和视频符号" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "陆运" -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "性别" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "交通标志" -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "数学" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "水运" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "标点符号" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "警告" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "货币" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "文章" -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "其他符号" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "星座" -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "键帽" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "區域指標 %s" -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "字母数字" +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "星號" -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "几何" +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "數字符號" -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "其他標誌" +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "顏色" -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "国家旗帜" +#, fuzzy +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "深色膚色" -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "细分旗帜" +#, fuzzy +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "淺膚色" + +#, fuzzy +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "中等膚色" + +#, fuzzy +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "中深色膚色" + +#, fuzzy +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "中光膚色" diff --git a/po/zh-hant/shortcodes.po b/po/zh-hant/shortcodes.po index f972ca16..14877389 100644 --- a/po/zh-hant/shortcodes.po +++ b/po/zh-hant/shortcodes.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: \n" "Language: \n" "Language-Team: \n" @@ -1203,6 +1203,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1223,6 +1228,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3183,6 +3193,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5503,6 +5533,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6553,6 +6593,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7018,11 +7063,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7048,6 +7103,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7118,6 +7178,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7188,6 +7253,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7213,6 +7283,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8648,11 +8723,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8678,6 +8763,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8718,6 +8808,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8763,6 +8858,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8793,6 +8893,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8808,6 +8913,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12298,11 +12408,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12328,6 +12448,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12398,6 +12523,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12468,6 +12598,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12498,6 +12633,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" diff --git a/po/zh/messages.po b/po/zh/messages.po index 5390a359..48d83032 100644 --- a/po/zh/messages.po +++ b/po/zh/messages.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 16:45-0700\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Miles Johnson\n" "Language-Team: Chinese (Simplified)\n" "Language: zh_CN\n" @@ -15,484 +15,599 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0\n" -#, javascript-format -msgctxt "" -"LABEL: Denotes a countries flag using alphabetical characters (usa = United " -"States)" -msgid "regional indicator %s" -msgstr "区域指标 %s" - -msgctxt "" -"LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "色调" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "星号" +# 6 +msgctxt "EMOJI GROUP: activities" +msgid "activities" +msgstr "个人活动" -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "井号" +# 3 +msgctxt "EMOJI GROUP: animals-nature" +msgid "animals-nature" +msgstr "野生动物" -#, fuzzy -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "浅肤色" +# 2 +msgctxt "EMOJI GROUP: component" +msgid "component" +msgstr "组件" -#, fuzzy -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "中光肤色" +# 9 +msgctxt "EMOJI GROUP: flags" +msgid "flags" +msgstr "旗帜" -#, fuzzy -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "中等肤色" +# 4 +msgctxt "EMOJI GROUP: food-drink" +msgid "food-drink" +msgstr "食物飲料" -#, fuzzy -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "中深色肤色" +# 7 +msgctxt "EMOJI GROUP: objects" +msgid "objects" +msgstr "物件" -#, fuzzy -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "深色肤色" +# 1 +msgctxt "EMOJI GROUP: people-body" +msgid "people-body" +msgstr "人体" -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" +# 0 +msgctxt "EMOJI GROUP: smileys-emotion" +msgid "smileys-emotion" msgstr "笑脸" -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "人体" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "组件" +# 8 +msgctxt "EMOJI GROUP: symbols" +msgid "symbols" +msgstr "人的符号" -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "野生动物" +# 5 +msgctxt "EMOJI GROUP: travel-places" +msgid "travel-places" +msgstr "旅遊地點" -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "食物飲料" +# 96 +msgctxt "EMOJI SUB-GROUP: alphanum" +msgid "alphanum" +msgstr "字母数字" -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "旅遊地點" +# 36 +msgctxt "EMOJI SUB-GROUP: animal-amphibian" +msgid "animal-amphibian" +msgstr "两栖动物" -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "个人活动" +# 35 +msgctxt "EMOJI SUB-GROUP: animal-bird" +msgid "animal-bird" +msgstr "鳥類動物" -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "物件" +# 39 +msgctxt "EMOJI SUB-GROUP: animal-bug" +msgid "animal-bug" +msgstr "蟲類動物" -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "人的符号" +# 34 +msgctxt "EMOJI SUB-GROUP: animal-mammal" +msgid "animal-mammal" +msgstr "哺乳類動物" -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "旗帜" +# 38 +msgctxt "EMOJI SUB-GROUP: animal-marine" +msgid "animal-marine" +msgstr "水生動物" -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "笑脸" +# 37 +msgctxt "EMOJI SUB-GROUP: animal-reptile" +msgid "animal-reptile" +msgstr "爬蟲類動物" -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "爱你哦" +# 86 +msgctxt "EMOJI SUB-GROUP: arrow" +msgid "arrow" +msgstr "箭头" -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "吐舌" +# 65 +msgctxt "EMOJI SUB-GROUP: arts-crafts" +msgid "arts-crafts" +msgstr "工艺品" -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "掩嘴笑" +# 89 +msgctxt "EMOJI SUB-GROUP: av-symbol" +msgid "av-symbol" +msgstr "音频和视频符号" -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "怀疑" +# 62 +msgctxt "EMOJI SUB-GROUP: award-medal" +msgid "award-medal" +msgstr "奖章" -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "瞌睡" +# 22 +msgctxt "EMOJI SUB-GROUP: body-parts" +msgid "body-parts" +msgstr "身体部位" -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "生病" +# 73 +msgctxt "EMOJI SUB-GROUP: book-paper" +msgid "book-paper" +msgstr "印书纸" -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "帽子" +# 12 +msgctxt "EMOJI SUB-GROUP: cat-face" +msgid "cat-face" +msgstr "猫脸" -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "眼镜" +# 66 +msgctxt "EMOJI SUB-GROUP: clothing" +msgid "clothing" +msgstr "服装" -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "关心" +# 71 +msgctxt "EMOJI SUB-GROUP: computer" +msgid "computer" +msgstr "计算机" -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "沮丧" +# 99 +msgctxt "EMOJI SUB-GROUP: country-flag" +msgid "country-flag" +msgstr "国家旗帜" -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "衣服" +# 93 +msgctxt "EMOJI SUB-GROUP: currency" +msgid "currency" +msgstr "货币" -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "猫脸" +# 49 +msgctxt "EMOJI SUB-GROUP: dishware" +msgid "dishware" +msgstr "餐具" -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "猴子" +# 48 +msgctxt "EMOJI SUB-GROUP: drink" +msgid "drink" +msgstr "飲品" -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" +# 15 +msgctxt "EMOJI SUB-GROUP: emotion" +msgid "emotion" msgstr "情绪" -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "手伸开" +# 61 +msgctxt "EMOJI SUB-GROUP: event" +msgid "event" +msgstr "事件" -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "手的手指部分" +# 1 +msgctxt "EMOJI SUB-GROUP: face-affection" +msgid "face-affection" +msgstr "爱你哦" -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "一根手指" +# 9 +msgctxt "EMOJI SUB-GROUP: face-concerned" +msgid "face-concerned" +msgstr "关心" -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "拳头" +# 11 +msgctxt "EMOJI SUB-GROUP: face-costume" +msgid "face-costume" +msgstr "衣服" -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "手" +# 8 +msgctxt "EMOJI SUB-GROUP: face-glasses" +msgid "face-glasses" +msgstr "眼镜" -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "举手" +# 3 +msgctxt "EMOJI SUB-GROUP: face-hand" +msgid "face-hand" +msgstr "掩嘴笑" -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "身体部位" +# 7 +msgctxt "EMOJI SUB-GROUP: face-hat" +msgid "face-hat" +msgstr "帽子" -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "人" +# 10 +msgctxt "EMOJI SUB-GROUP: face-negative" +msgid "face-negative" +msgstr "沮丧" -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "做手势" +# 4 +msgctxt "EMOJI SUB-GROUP: face-neutral-skeptical" +msgid "face-neutral-skeptical" +msgstr "怀疑" -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "演员" +# 5 +msgctxt "EMOJI SUB-GROUP: face-sleepy" +msgid "face-sleepy" +msgstr "瞌睡" -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "有魅力的人" +# 0 +msgctxt "EMOJI SUB-GROUP: face-smiling" +msgid "face-smiling" +msgstr "笑脸" -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "競技" +# 2 +msgctxt "EMOJI SUB-GROUP: face-tongue" +msgid "face-tongue" +msgstr "吐舌" -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "休息" +# 6 +msgctxt "EMOJI SUB-GROUP: face-unwell" +msgid "face-unwell" +msgstr "生病" -msgctxt "EMOJI SUB-GROUP: 29|family" +# 30 +msgctxt "EMOJI SUB-GROUP: family" msgid "family" msgstr "家庭" -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "人符號" +# 98 +msgctxt "EMOJI SUB-GROUP: flag" +msgid "flag" +msgstr "其他標誌" -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "膚色" +# 45 +msgctxt "EMOJI SUB-GROUP: food-asian" +msgid "food-asian" +msgstr "亞洲食物" -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "髮型" +# 42 +msgctxt "EMOJI SUB-GROUP: food-fruit" +msgid "food-fruit" +msgstr "水果類食物" -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "哺乳類動物" +# 46 +msgctxt "EMOJI SUB-GROUP: food-marine" +msgid "food-marine" +msgstr "水產食物" -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "鳥類動物" +# 44 +msgctxt "EMOJI SUB-GROUP: food-prepared" +msgid "food-prepared" +msgstr "准备好的食物" -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "两栖动物" +# 47 +msgctxt "EMOJI SUB-GROUP: food-sweet" +msgid "food-sweet" +msgstr "甜食物" -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "爬蟲類動物" +# 43 +msgctxt "EMOJI SUB-GROUP: food-vegetable" +msgid "food-vegetable" +msgstr "蔬菜類食物" -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "水生動物" +# 64 +msgctxt "EMOJI SUB-GROUP: game" +msgid "game" +msgstr "游戏" -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "蟲類動物" +# 90 +msgctxt "EMOJI SUB-GROUP: gender" +msgid "gender" +msgstr "性别" -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "花卉植物" +# 97 +msgctxt "EMOJI SUB-GROUP: geometric" +msgid "geometric" +msgstr "几何" -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "其他植物" +# 33 +msgctxt "EMOJI SUB-GROUP: hair-style" +msgid "hair-style" +msgstr "髮型" -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "水果類食物" +# 19 +msgctxt "EMOJI SUB-GROUP: hand-fingers-closed" +msgid "hand-fingers-closed" +msgstr "拳头" -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "蔬菜類食物" +# 16 +msgctxt "EMOJI SUB-GROUP: hand-fingers-open" +msgid "hand-fingers-open" +msgstr "手伸开" -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "准备好的食物" +# 17 +msgctxt "EMOJI SUB-GROUP: hand-fingers-partial" +msgid "hand-fingers-partial" +msgstr "手的手指部分" -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "亞洲食物" +# 21 +msgctxt "EMOJI SUB-GROUP: hand-prop" +msgid "hand-prop" +msgstr "举手" -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "水產食物" +# 18 +msgctxt "EMOJI SUB-GROUP: hand-single-finger" +msgid "hand-single-finger" +msgstr "一根手指" -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "甜食物" +# 20 +msgctxt "EMOJI SUB-GROUP: hands" +msgid "hands" +msgstr "手" -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "飲品" +# 14 +msgctxt "EMOJI SUB-GROUP: heart" +msgid "heart" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "餐具" +# 58 +msgctxt "EMOJI SUB-GROUP: hotel" +msgid "hotel" +msgstr "旅馆" -#, fuzzy -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "位置地图" +# 82 +msgctxt "EMOJI SUB-GROUP: household" +msgid "household" +msgstr "一家人" -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "地理位置" +# 95 +msgctxt "EMOJI SUB-GROUP: keycap" +msgid "keycap" +msgstr "键帽" -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "地方建筑" +# 72 +msgctxt "EMOJI SUB-GROUP: light-video" +msgid "light-video" +msgstr "轻视频" -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "宗教场所" +# 78 +msgctxt "EMOJI SUB-GROUP: lock" +msgid "lock" +msgstr "锁" -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "其他地點" +# 75 +msgctxt "EMOJI SUB-GROUP: mail" +msgid "mail" +msgstr "邮件" -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "陆运" +# 91 +msgctxt "EMOJI SUB-GROUP: math" +msgid "math" +msgstr "数学" -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "水运" +# 81 +msgctxt "EMOJI SUB-GROUP: medical" +msgid "medical" +msgstr "医疗的" -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "空运" +# 74 +msgctxt "EMOJI SUB-GROUP: money" +msgid "money" +msgstr "钱" -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "旅馆" +# 13 +msgctxt "EMOJI SUB-GROUP: monkey-face" +msgid "monkey-face" +msgstr "猴子" -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "时间" +# 68 +msgctxt "EMOJI SUB-GROUP: music" +msgid "music" +msgstr "音乐" -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "天气" +# 69 +msgctxt "EMOJI SUB-GROUP: musical-instrument" +msgid "musical-instrument" +msgstr "乐器" -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "事件" +# 77 +msgctxt "EMOJI SUB-GROUP: office" +msgid "office" +msgstr "办公室" -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "奖章" +# 83 +msgctxt "EMOJI SUB-GROUP: other-object" +msgid "other-object" +msgstr "其它物体" -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "运动" +# 94 +msgctxt "EMOJI SUB-GROUP: other-symbol" +msgid "other-symbol" +msgstr "其他符号" -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "游戏" +# 23 +msgctxt "EMOJI SUB-GROUP: person" +msgid "person" +msgstr "人" -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "工艺品" +# 27 +msgctxt "EMOJI SUB-GROUP: person-activity" +msgid "person-activity" +msgstr "" -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "服装" +# 26 +msgctxt "EMOJI SUB-GROUP: person-fantasy" +msgid "person-fantasy" +msgstr "有魅力的人" -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "声音" +# 24 +msgctxt "EMOJI SUB-GROUP: person-gesture" +msgid "person-gesture" +msgstr "做手势" -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "音乐" +# 29 +msgctxt "EMOJI SUB-GROUP: person-resting" +msgid "person-resting" +msgstr "休息" -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "乐器" +# 25 +msgctxt "EMOJI SUB-GROUP: person-role" +msgid "person-role" +msgstr "演员" + +# 28 +msgctxt "EMOJI SUB-GROUP: person-sport" +msgid "person-sport" +msgstr "競技" -msgctxt "EMOJI SUB-GROUP: 69|phone" +# 31 +msgctxt "EMOJI SUB-GROUP: person-symbol" +msgid "person-symbol" +msgstr "人符號" + +# 70 +msgctxt "EMOJI SUB-GROUP: phone" msgid "phone" msgstr "手机" -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "计算机" +# 52 +msgctxt "EMOJI SUB-GROUP: place-building" +msgid "place-building" +msgstr "地方建筑" -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "轻视频" +# 51 +msgctxt "EMOJI SUB-GROUP: place-geographic" +msgid "place-geographic" +msgstr "地理位置" -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "印书纸" +# 50 +msgctxt "EMOJI SUB-GROUP: place-map" +msgid "place-map" +msgstr "位置地图" -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "钱" +# 54 +msgctxt "EMOJI SUB-GROUP: place-other" +msgid "place-other" +msgstr "其他地點" -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "邮件" +# 53 +msgctxt "EMOJI SUB-GROUP: place-religious" +msgid "place-religious" +msgstr "宗教场所" -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "文章" +# 40 +msgctxt "EMOJI SUB-GROUP: plant-flower" +msgid "plant-flower" +msgstr "花卉植物" -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "办公室" +# 41 +msgctxt "EMOJI SUB-GROUP: plant-other" +msgid "plant-other" +msgstr "其他植物" -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "锁" +# 92 +msgctxt "EMOJI SUB-GROUP: punctuation" +msgid "punctuation" +msgstr "标点符号" -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "工具" +# 87 +msgctxt "EMOJI SUB-GROUP: religion" +msgid "religion" +msgstr "宗教" -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" +# 80 +msgctxt "EMOJI SUB-GROUP: science" +msgid "science" msgstr "科学" -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "医疗的" +# 32 +msgctxt "EMOJI SUB-GROUP: skin-tone" +msgid "skin-tone" +msgstr "膚色" -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "一家人" +# 60 +msgctxt "EMOJI SUB-GROUP: sky-weather" +msgid "sky-weather" +msgstr "天气" -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "其它物体" +# 67 +msgctxt "EMOJI SUB-GROUP: sound" +msgid "sound" +msgstr "声音" -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "交通标志" +# 63 +msgctxt "EMOJI SUB-GROUP: sport" +msgid "sport" +msgstr "运动" -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "警告" +# 100 +msgctxt "EMOJI SUB-GROUP: subdivision-flag" +msgid "subdivision-flag" +msgstr "细分旗帜" -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "箭头" +# 59 +msgctxt "EMOJI SUB-GROUP: time" +msgid "time" +msgstr "时间" -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "宗教" +# 79 +msgctxt "EMOJI SUB-GROUP: tool" +msgid "tool" +msgstr "工具" -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "星座" +# 57 +msgctxt "EMOJI SUB-GROUP: transport-air" +msgid "transport-air" +msgstr "空运" -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "音频和视频符号" +# 55 +msgctxt "EMOJI SUB-GROUP: transport-ground" +msgid "transport-ground" +msgstr "陆运" -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "性别" +# 84 +msgctxt "EMOJI SUB-GROUP: transport-sign" +msgid "transport-sign" +msgstr "交通标志" -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "数学" +# 56 +msgctxt "EMOJI SUB-GROUP: transport-water" +msgid "transport-water" +msgstr "水运" -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "标点符号" +# 85 +msgctxt "EMOJI SUB-GROUP: warning" +msgid "warning" +msgstr "警告" -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "货币" +# 76 +msgctxt "EMOJI SUB-GROUP: writing" +msgid "writing" +msgstr "文章" -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "其他符号" +# 88 +msgctxt "EMOJI SUB-GROUP: zodiac" +msgid "zodiac" +msgstr "星座" -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "键帽" +#, javascript-format +msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" +msgid "regional indicator %s" +msgstr "区域指标 %s" -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "字母数字" +msgctxt "LABEL: Name of the asterisk symbol (*)" +msgid "asterisk" +msgstr "星号" -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "几何" +msgctxt "LABEL: Name of the number sign/hash symbol (#)" +msgid "number sign" +msgstr "井号" -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "其他標誌" +msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" +msgid "tone" +msgstr "色调" -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "国家旗帜" +#, fuzzy +msgctxt "SKIN TONE: dark" +msgid "dark skin tone" +msgstr "深色肤色" -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "细分旗帜" +#, fuzzy +msgctxt "SKIN TONE: light" +msgid "light skin tone" +msgstr "浅肤色" + +#, fuzzy +msgctxt "SKIN TONE: medium" +msgid "medium skin tone" +msgstr "中等肤色" + +#, fuzzy +msgctxt "SKIN TONE: medium-dark" +msgid "medium-dark skin tone" +msgstr "中深色肤色" + +#, fuzzy +msgctxt "SKIN TONE: medium-light" +msgid "medium-light skin tone" +msgstr "中光肤色" diff --git a/po/zh/shortcodes.po b/po/zh/shortcodes.po index 11d4d2ce..0f609e84 100644 --- a/po/zh/shortcodes.po +++ b/po/zh/shortcodes.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-25 22:32+420\n" -"PO-Revision-Date: 2023-12-03 12:07+480\n" +"PO-Revision-Date: 2024-06-08 18:28+420\n" "Last-Translator: Filon Hon \n" "Language-Team: Chinese (Simplified) \n" "Language: zh\n" @@ -1205,6 +1205,11 @@ msgctxt "EMOJI: 🥦 broccoli" msgid "broccoli" msgstr "" +# 26D3-FE0F-200D-1F4A5 +msgctxt "EMOJI: ⛓️‍💥 broken chain" +msgid "broken_chain" +msgstr "" + # 1F494 msgctxt "EMOJI: 💔 broken heart" msgid "broken_heart" @@ -1225,6 +1230,11 @@ msgctxt "EMOJI: 🤎 brown heart" msgid "brown_heart" msgstr "" +# 1F344-200D-1F7EB +msgctxt "EMOJI: 🍄‍🟫 brown mushroom" +msgid "brown_mushroom" +msgstr "" + # 1F7EB msgctxt "EMOJI: 🟫 brown square" msgid "brown_square" @@ -3185,6 +3195,26 @@ msgctxt "EMOJI: 👪️ family" msgid "family" msgstr "" +# 1F9D1-200D-1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒 family: adult, adult, child" +msgid "family_aac" +msgstr "" + +# 1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧑‍🧒‍🧒 family: adult, adult, child, child" +msgid "family_aacc" +msgstr "" + +# 1F9D1-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒 family: adult, child" +msgid "family_ac" +msgstr "" + +# 1F9D1-200D-1F9D2-200D-1F9D2 +msgctxt "EMOJI: 🧑‍🧒‍🧒 family: adult, child, child" +msgid "family_acc" +msgstr "" + # 1F468-200D-1F466 msgctxt "EMOJI: 👨‍👦 family: man, boy" msgid "family_mb" @@ -5505,6 +5535,16 @@ msgctxt "EMOJI: 🐣 hatching chick" msgid "hatching_chick" msgstr "" +# 1F642-200D-2194-FE0F +msgctxt "EMOJI: 🙂‍↔️ head shaking horizontally" +msgid "head_shaking_horizontally" +msgstr "" + +# 1F642-200D-2195-FE0F +msgctxt "EMOJI: 🙂‍↕️ head shaking vertically" +msgid "head_shaking_vertically" +msgstr "" + # 1F3A7 msgctxt "EMOJI: 🎧️ headphone" msgid "headphones" @@ -6555,6 +6595,11 @@ msgctxt "EMOJI: 🌩️ cloud with lightning" msgid "lightning" msgstr "" +# 1F34B-200D-1F7E9 +msgctxt "EMOJI: 🍋‍🟩 lime" +msgid "lime" +msgstr "" + # 1F517 msgctxt "EMOJI: 🔗 link" msgid "link" @@ -7020,11 +7065,21 @@ msgctxt "EMOJI: 👨‍🦽 man in manual wheelchair" msgid "man_in_manual_wheelchair" msgstr "" +# 1F468-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦽‍➡️ man in manual wheelchair facing right" +msgid "man_in_manual_wheelchair_right" +msgstr "" + # 1F468-200D-1F9BC msgctxt "EMOJI: 👨‍🦼 man in motorized wheelchair" msgid "man_in_motorized_wheelchair" msgstr "" +# 1F468-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦼‍➡️ man in motorized wheelchair facing right" +msgid "man_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2642-FE0F msgctxt "EMOJI: 🧖‍♂️ man in steamy room" msgid "man_in_steamy_room" @@ -7050,6 +7105,11 @@ msgctxt "EMOJI: 🧎‍♂️ man kneeling" msgid "man_kneeling" msgstr "" +# 1F9CE-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♂️‍➡️ man kneeling facing right" +msgid "man_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2642-FE0F msgctxt "EMOJI: 🏋️‍♂️ man lifting weights" msgid "man_lifting_weights" @@ -7120,6 +7180,11 @@ msgctxt "EMOJI: 🏃‍♂️ man running" msgid "man_running" msgstr "" +# 1F3C3-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♂️‍➡️ man running facing right" +msgid "man_running_right" +msgstr "" + # 1F468-200D-1F52C msgctxt "EMOJI: 👨‍🔬 man scientist" msgid "man_scientist" @@ -7190,6 +7255,11 @@ msgctxt "EMOJI: 🚶‍♂️ man walking" msgid "man_walking" msgstr "" +# 1F6B6-200D-2642-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♂️‍➡️ man walking facing right" +msgid "man_walking_right" +msgstr "" + # 1F473-200D-2642-FE0F msgctxt "EMOJI: 👳‍♂️ man wearing turban" msgid "man_wearing_turban" @@ -7215,6 +7285,11 @@ msgctxt "EMOJI: 👨‍🦯 man with white cane" msgid "man_with_white_cane" msgstr "" +# 1F468-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👨‍🦯‍➡️ man with white cane facing right" +msgid "man_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2642-FE0F msgctxt "EMOJI: 🧟‍♂️ man zombie" msgid "man_zombie" @@ -8650,11 +8725,21 @@ msgctxt "EMOJI: 🧑‍🦽 person in manual wheelchair" msgid "person_in_manual_wheelchair" msgstr "" +# 1F9D1-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦽‍➡️ person in manual wheelchair facing right" +msgid "person_in_manual_wheelchair_right" +msgstr "" + # 1F9D1-200D-1F9BC msgctxt "EMOJI: 🧑‍🦼 person in motorized wheelchair" msgid "person_in_motorized_wheelchair" msgstr "" +# 1F9D1-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦼‍➡️ person in motorized wheelchair facing right" +msgid "person_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6 msgctxt "EMOJI: 🧖 person in steamy room" msgid "person_in_steamy_room" @@ -8680,6 +8765,11 @@ msgctxt "EMOJI: 🧎 person kneeling" msgid "person_kneeling" msgstr "" +# 1F9CE-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍➡️ person kneeling facing right" +msgid "person_kneeling_right" +msgstr "" + # 1F3CB msgctxt "EMOJI: 🏋️ person lifting weights" msgid "person_lifting_weights" @@ -8720,6 +8810,11 @@ msgctxt "EMOJI: 🏃 person running" msgid "person_running" msgstr "" +# 1F3C3-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍➡️ person running facing right" +msgid "person_running_right" +msgstr "" + # 1F937 msgctxt "EMOJI: 🤷 person shrugging" msgid "person_shrugging" @@ -8765,6 +8860,11 @@ msgctxt "EMOJI: 🚶 person walking" msgid "person_walking" msgstr "" +# 1F6B6-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍➡️ person walking facing right" +msgid "person_walking_right" +msgstr "" + # 1F473 msgctxt "EMOJI: 👳 person wearing turban" msgid "person_wearing_turban" @@ -8795,6 +8895,11 @@ msgctxt "EMOJI: 🧑‍🦯 person with white cane" msgid "person_with_white_cane" msgstr "" +# 1F9D1-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 🧑‍🦯‍➡️ person with white cane facing right" +msgid "person_with_white_cane_right" +msgstr "" + # 1F1F5-1F1EA msgctxt "EMOJI: 🇵🇪 flag: Peru" msgid "peru" @@ -8810,6 +8915,11 @@ msgctxt "EMOJI: 🇵🇭 flag: Philippines" msgid "philippines" msgstr "" +# 1F426-200D-1F525 +msgctxt "EMOJI: 🐦‍🔥 phoenix" +msgid "phoenix" +msgstr "" + # 26CF msgctxt "EMOJI: ⛏️ pick" msgid "pick" @@ -12300,11 +12410,21 @@ msgctxt "EMOJI: 👩‍🦽 woman in manual wheelchair" msgid "woman_in_manual_wheelchair" msgstr "" +# 1F469-200D-1F9BD-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦽‍➡️ woman in manual wheelchair facing right" +msgid "woman_in_manual_wheelchair_right" +msgstr "" + # 1F469-200D-1F9BC msgctxt "EMOJI: 👩‍🦼 woman in motorized wheelchair" msgid "woman_in_motorized_wheelchair" msgstr "" +# 1F469-200D-1F9BC-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦼‍➡️ woman in motorized wheelchair facing right" +msgid "woman_in_motorized_wheelchair_right" +msgstr "" + # 1F9D6-200D-2640-FE0F msgctxt "EMOJI: 🧖‍♀️ woman in steamy room" msgid "woman_in_steamy_room" @@ -12330,6 +12450,11 @@ msgctxt "EMOJI: 🧎‍♀️ woman kneeling" msgid "woman_kneeling" msgstr "" +# 1F9CE-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🧎‍♀️‍➡️ woman kneeling facing right" +msgid "woman_kneeling_right" +msgstr "" + # 1F3CB-FE0F-200D-2640-FE0F msgctxt "EMOJI: 🏋️‍♀️ woman lifting weights" msgid "woman_lifting_weights" @@ -12400,6 +12525,11 @@ msgctxt "EMOJI: 🏃‍♀️ woman running" msgid "woman_running" msgstr "" +# 1F3C3-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🏃‍♀️‍➡️ woman running facing right" +msgid "woman_running_right" +msgstr "" + # 1F469-200D-1F52C msgctxt "EMOJI: 👩‍🔬 woman scientist" msgid "woman_scientist" @@ -12470,6 +12600,11 @@ msgctxt "EMOJI: 🚶‍♀️ woman walking" msgid "woman_walking" msgstr "" +# 1F6B6-200D-2640-FE0F-200D-27A1-FE0F +msgctxt "EMOJI: 🚶‍♀️‍➡️ woman walking facing right" +msgid "woman_walking_right" +msgstr "" + # 1F473-200D-2640-FE0F msgctxt "EMOJI: 👳‍♀️ woman wearing turban" msgid "woman_wearing_turban" @@ -12500,6 +12635,11 @@ msgctxt "EMOJI: 👩‍🦯 woman with white cane" msgid "woman_with_white_cane" msgstr "" +# 1F469-200D-1F9AF-200D-27A1-FE0F +msgctxt "EMOJI: 👩‍🦯‍➡️ woman with white cane facing right" +msgid "woman_with_white_cane_right" +msgstr "" + # 1F9DF-200D-2640-FE0F msgctxt "EMOJI: 🧟‍♀️ woman zombie" msgid "woman_zombie" From 5f24b18e536142dc78d56499a08061bd100a84f4 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 18:31:18 -0700 Subject: [PATCH 5/9] Remove legacy map. --- .../src/generators/generatePoFiles.ts | 131 +----------------- 1 file changed, 3 insertions(+), 128 deletions(-) diff --git a/packages/generator/src/generators/generatePoFiles.ts b/packages/generator/src/generators/generatePoFiles.ts index 6d0ec325..0655104b 100644 --- a/packages/generator/src/generators/generatePoFiles.ts +++ b/packages/generator/src/generators/generatePoFiles.ts @@ -67,28 +67,15 @@ export async function generatePoFiles(): Promise { }); }); + // Ensure groups and sub-groups are in sync Object.entries(groupHierarchy.groups).forEach(([order, key]) => { - let msgstr = ''; - - if (LEGACY_REMAP[key]) { - msgstr = poMessages.getItem(LEGACY_REMAP[key]).msgstr; - poMessages.removeItem(LEGACY_REMAP[key]); - } - - poMessages.addItem(key, msgstr, `EMOJI GROUP: ${key}`, { + poMessages.addItem(key, '', `EMOJI GROUP: ${key}`, { comment: order, }); }); Object.entries(groupHierarchy.subgroups).forEach(([order, key]) => { - let msgstr = ''; - - if (LEGACY_REMAP[key]) { - msgstr = poMessages.getItem(LEGACY_REMAP[key]).msgstr; - poMessages.removeItem(LEGACY_REMAP[key]); - } - - poMessages.addItem(key, msgstr, `EMOJI SUB-GROUP: ${key}`, { + poMessages.addItem(key, '', `EMOJI SUB-GROUP: ${key}`, { comment: order, }); }); @@ -97,115 +84,3 @@ export async function generatePoFiles(): Promise { }), ); } - -const LEGACY_REMAP: Record = { - 'smileys-emotion': 'smileys & emotion', - 'people-body': 'people & body', - component: 'components', - 'animals-nature': 'animals & nature', - 'food-drink': 'food & drink', - 'travel-places': 'travel & places', - activities: 'activities', - objects: 'objects', - symbols: 'symbols', - flags: 'flags', - 'face-smiling': 'smiling', - 'face-affection': 'affectionate', - 'face-tongue': 'with tongue', - 'face-hand': 'with hands', - 'face-neutral-skeptical': 'neutral / skeptical', - 'face-sleepy': 'sleepy', - 'face-unwell': 'unwell', - 'face-hat': 'with hats', - 'face-glasses': 'with glasses', - 'face-concerned': 'concerned', - 'face-negative': 'negative', - 'face-costume': 'costumed & creatures', - 'cat-face': 'cat faces', - 'monkey-face': 'monkey faces', - emotion: 'emotions', - 'hand-fingers-open': 'fingers open', - 'hand-fingers-partial': 'hand signs', - 'hand-single-finger': 'finger pointing', - 'hand-fingers-closed': 'fingers closed', - hands: 'hands', - 'hand-prop': 'hand props', - 'body-parts': 'body parts', - person: 'people', - 'person-gesture': 'gestures', - 'person-role': 'roles & careers', - 'person-fantasy': 'fantasy', - 'person-sport': 'athletics', - 'person-resting': 'resting', - family: 'family', - 'person-symbol': 'people symbols', - 'skin-tone': 'skin tones', - 'hair-style': 'hair styles', - 'animal-mammal': 'mammals', - 'animal-bird': 'birds', - 'animal-amphibian': 'amphibians', - 'animal-reptile': 'reptiles', - 'animal-marine': 'marine life', - 'animal-bug': 'bugs', - 'plant-flower': 'flowers', - 'plant-other': 'other plants', - 'food-fruit': 'fruit', - 'food-vegetable': 'vegetables', - 'food-prepared': 'cooked / prepared', - 'food-asian': 'asian', - 'food-marine': 'seafood', - 'food-sweet': 'sweets & candy', - drink: 'drink', - dishware: 'dishware', - 'place-map': 'globes & maps', - 'place-geographic': 'geographic locations', - 'place-building': 'buildings', - 'place-religious': 'religious buildings', - 'place-other': 'other places', - 'transport-ground': 'ground transportation', - 'transport-water': 'water transportation', - 'transport-air': 'air transportation', - hotel: 'hotel', - time: 'time', - 'sky-weather': 'weather', - event: 'events & holidays', - 'award-medal': 'award medals', - sport: 'sports', - game: 'games & hobbies', - 'arts-crafts': 'arts & crafts', - clothing: 'clothing', - sound: 'sound', - music: 'music', - 'musical-instrument': 'musical instruments', - phone: 'phone', - computer: 'computer', - 'light-video': 'light, film & video', - 'book-paper': 'books & paper', - money: 'money', - mail: 'mail', - writing: 'writing', - office: 'office supplies', - lock: 'lock & keys', - tool: 'tools', - science: 'science equipment', - medical: 'medical', - household: 'household items', - 'other-object': 'other objects', - 'transport-sign': 'transport signs', - warning: 'warning symbols', - arrow: 'arrows', - religion: 'religious symbols', - zodiac: 'zodiac signs', - 'av-symbol': 'audio & video symbols', - gender: 'gender signs', - math: 'math symbols', - punctuation: 'punctuation', - currency: 'currencies', - 'other-symbol': 'other symbols', - keycap: 'keypad characters', - alphanum: 'alphanumeric symbols', - geometric: 'shapes & colors', - flag: 'other flags', - 'country-flag': 'country flags', - 'subdivision-flag': 'subdivision flags', -}; From f6b7fad20d6165e09dfe70baab8e4a08ccb8ccd2 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 18:42:37 -0700 Subject: [PATCH 6/9] Add missing strings. --- po/bn/messages.po | 4 ++-- po/da/messages.po | 4 ++-- po/de/messages.po | 4 ++-- po/en-gb/messages.po | 4 ++-- po/en/messages.po | 4 ++-- po/es-mx/messages.po | 4 ++-- po/es/messages.po | 4 ++-- po/et/messages.po | 4 ++-- po/fi/messages.po | 4 ++-- po/fr/messages.po | 4 ++-- po/hi/messages.po | 4 ++-- po/hu/messages.po | 4 ++-- po/it/messages.po | 4 ++-- po/ja/messages.po | 4 ++-- po/ko/messages.po | 4 ++-- po/lt/messages.po | 4 ++-- po/ms/messages.po | 4 ++-- po/nb/messages.po | 4 ++-- po/nl/messages.po | 4 ++-- po/pl/messages.po | 4 ++-- po/pt/messages.po | 4 ++-- po/ru/messages.po | 4 ++-- po/sv/messages.po | 4 ++-- po/th/messages.po | 4 ++-- po/uk/messages.po | 4 ++-- po/zh-hant/messages.po | 4 ++-- po/zh/messages.po | 4 ++-- 27 files changed, 54 insertions(+), 54 deletions(-) diff --git a/po/bn/messages.po b/po/bn/messages.po index a9521129..0349cd73 100644 --- a/po/bn/messages.po +++ b/po/bn/messages.po @@ -327,7 +327,7 @@ msgstr "হাত" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "হৃদয়" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "মানুষ" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "কার্যক্রম" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/da/messages.po b/po/da/messages.po index 212fdc78..76ff84d7 100644 --- a/po/da/messages.po +++ b/po/da/messages.po @@ -327,7 +327,7 @@ msgstr "hands" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "hjerter" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "personer" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "oplevelser" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/de/messages.po b/po/de/messages.po index dcc805c4..abc17c99 100644 --- a/po/de/messages.po +++ b/po/de/messages.po @@ -327,7 +327,7 @@ msgstr "Hände" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "Herzen" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "Personen" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "Aktivitäten" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/en-gb/messages.po b/po/en-gb/messages.po index 7a1faf13..504facd8 100644 --- a/po/en-gb/messages.po +++ b/po/en-gb/messages.po @@ -327,7 +327,7 @@ msgstr "hands" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "hearts" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "people" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "activities" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/en/messages.po b/po/en/messages.po index b9ce7ef3..9c5f622b 100644 --- a/po/en/messages.po +++ b/po/en/messages.po @@ -327,7 +327,7 @@ msgstr "hands" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "hearts" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "people" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "activities" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/es-mx/messages.po b/po/es-mx/messages.po index 7b9d771d..891697a4 100644 --- a/po/es-mx/messages.po +++ b/po/es-mx/messages.po @@ -327,7 +327,7 @@ msgstr "manos" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "corazones" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "personas" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "actividades" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/es/messages.po b/po/es/messages.po index 9318adce..c63556bd 100644 --- a/po/es/messages.po +++ b/po/es/messages.po @@ -327,7 +327,7 @@ msgstr "manos" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "corazones" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "personas" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "actividades" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/et/messages.po b/po/et/messages.po index f6332c74..6da81b61 100644 --- a/po/et/messages.po +++ b/po/et/messages.po @@ -327,7 +327,7 @@ msgstr "käed" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "südamed" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "inimesed" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "tegevuse" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/fi/messages.po b/po/fi/messages.po index 46dbb385..c15a3a69 100644 --- a/po/fi/messages.po +++ b/po/fi/messages.po @@ -327,7 +327,7 @@ msgstr "käsissä" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "sydämet" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "henkilöt" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "aktiviteetit" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/fr/messages.po b/po/fr/messages.po index 2fe0b0e5..0ce00748 100644 --- a/po/fr/messages.po +++ b/po/fr/messages.po @@ -329,7 +329,7 @@ msgstr "mains" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "cœurs" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -414,7 +414,7 @@ msgstr "personnes" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "activités" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/hi/messages.po b/po/hi/messages.po index ee9988f8..327b9eba 100644 --- a/po/hi/messages.po +++ b/po/hi/messages.po @@ -327,7 +327,7 @@ msgstr "हाथ" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "दिल" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "लोग" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "गतिविधियाँ" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/hu/messages.po b/po/hu/messages.po index 1d5d978b..b07083a9 100644 --- a/po/hu/messages.po +++ b/po/hu/messages.po @@ -327,7 +327,7 @@ msgstr "kezét" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "szívek" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "emberek" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "tevékenységek" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/it/messages.po b/po/it/messages.po index df2cffd3..409c1945 100644 --- a/po/it/messages.po +++ b/po/it/messages.po @@ -327,7 +327,7 @@ msgstr "mani" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "cuori" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "persone" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "attività" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/ja/messages.po b/po/ja/messages.po index 01b2adc8..6611e910 100644 --- a/po/ja/messages.po +++ b/po/ja/messages.po @@ -328,7 +328,7 @@ msgstr "手" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "ハート" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -413,7 +413,7 @@ msgstr "人" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "有効化" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/ko/messages.po b/po/ko/messages.po index 8714d139..04fa3e1a 100644 --- a/po/ko/messages.po +++ b/po/ko/messages.po @@ -327,7 +327,7 @@ msgstr "손" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "마음" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "사람들" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "액티비티" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/lt/messages.po b/po/lt/messages.po index f496c936..478db278 100644 --- a/po/lt/messages.po +++ b/po/lt/messages.po @@ -327,7 +327,7 @@ msgstr "rankos" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "širdyse" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "žmonių" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "veikla" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/ms/messages.po b/po/ms/messages.po index 64042547..daebf721 100644 --- a/po/ms/messages.po +++ b/po/ms/messages.po @@ -327,7 +327,7 @@ msgstr "tangan" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "hati" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "orang" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "aktiviti" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/nb/messages.po b/po/nb/messages.po index 55ee742b..c8771c1e 100644 --- a/po/nb/messages.po +++ b/po/nb/messages.po @@ -327,7 +327,7 @@ msgstr "hender" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "hjerter" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "personer" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "aktiviteter" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/nl/messages.po b/po/nl/messages.po index 353befa0..979f9b10 100644 --- a/po/nl/messages.po +++ b/po/nl/messages.po @@ -327,7 +327,7 @@ msgstr "handen" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "harten" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "personen" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "activiteiten" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/pl/messages.po b/po/pl/messages.po index 359266d9..eb77a28f 100644 --- a/po/pl/messages.po +++ b/po/pl/messages.po @@ -327,7 +327,7 @@ msgstr "ręce" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "kiery" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "ludzie" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "aktywność" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/pt/messages.po b/po/pt/messages.po index 21f2766b..68cea36e 100644 --- a/po/pt/messages.po +++ b/po/pt/messages.po @@ -327,7 +327,7 @@ msgstr "mãos" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "corações" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "pessoas" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "atividades" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/ru/messages.po b/po/ru/messages.po index aaf9f4cc..a81fc3d3 100644 --- a/po/ru/messages.po +++ b/po/ru/messages.po @@ -328,7 +328,7 @@ msgstr "руки" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "сердца" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -413,7 +413,7 @@ msgstr "человек" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "варианты досуга" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/sv/messages.po b/po/sv/messages.po index a3a41bcf..cbe68323 100644 --- a/po/sv/messages.po +++ b/po/sv/messages.po @@ -327,7 +327,7 @@ msgstr "händer" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "hjärtan" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "personer" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "aktiviteter" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/th/messages.po b/po/th/messages.po index 78d4490c..684e3a07 100644 --- a/po/th/messages.po +++ b/po/th/messages.po @@ -327,7 +327,7 @@ msgstr "มือ" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "หัวใจ" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "คน" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "กิจกรรม" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/uk/messages.po b/po/uk/messages.po index 375b2554..a525401a 100644 --- a/po/uk/messages.po +++ b/po/uk/messages.po @@ -327,7 +327,7 @@ msgstr "pуки" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "серця" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -412,7 +412,7 @@ msgstr "люди" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "діяльності" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/zh-hant/messages.po b/po/zh-hant/messages.po index a0b6aea8..a1ffab6e 100644 --- a/po/zh-hant/messages.po +++ b/po/zh-hant/messages.po @@ -328,7 +328,7 @@ msgstr "手" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "心" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -413,7 +413,7 @@ msgstr "人" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "个人活动" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" diff --git a/po/zh/messages.po b/po/zh/messages.po index 48d83032..9e663d99 100644 --- a/po/zh/messages.po +++ b/po/zh/messages.po @@ -328,7 +328,7 @@ msgstr "手" # 14 msgctxt "EMOJI SUB-GROUP: heart" msgid "heart" -msgstr "" +msgstr "心" # 58 msgctxt "EMOJI SUB-GROUP: hotel" @@ -413,7 +413,7 @@ msgstr "人" # 27 msgctxt "EMOJI SUB-GROUP: person-activity" msgid "person-activity" -msgstr "" +msgstr "个人活动" # 26 msgctxt "EMOJI SUB-GROUP: person-fantasy" From dda1a0bc76068082e224bc42c847cee935592386 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 18:43:12 -0700 Subject: [PATCH 7/9] Delete pot. --- .../generator/src/loaders/loadPotMessages.ts | 11 - po/messages.pot | 489 ------------------ 2 files changed, 500 deletions(-) delete mode 100644 packages/generator/src/loaders/loadPotMessages.ts delete mode 100644 po/messages.pot diff --git a/packages/generator/src/loaders/loadPotMessages.ts b/packages/generator/src/loaders/loadPotMessages.ts deleted file mode 100644 index 1163c60c..00000000 --- a/packages/generator/src/loaders/loadPotMessages.ts +++ /dev/null @@ -1,11 +0,0 @@ -import fs from 'node:fs'; -import path from 'node:path'; -import PO from 'pofile'; -import { POManager } from '../parsers/POManager'; - -export async function loadPotMessages(): Promise { - const poPath = path.resolve(process.cwd(), 'po/messages.pot'); - const po = PO.parse(await fs.promises.readFile(poPath, 'utf8')); - - return new POManager(poPath, po); -} diff --git a/po/messages.pot b/po/messages.pot deleted file mode 100644 index 9d494407..00000000 --- a/po/messages.pot +++ /dev/null @@ -1,489 +0,0 @@ -# English -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Emojibase\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-17 14:53-0700\n" -"PO-Revision-Date: 2021-09-17 15:38+480\n" -"Last-Translator: \n" -"Language: en\n" -"Language-Team: \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: \n" -"MIME-Version: 1.0\n" -"X-Generator: Poedit 3.0\n" - -#, javascript-format -msgctxt "LABEL: Denotes a countries flag using alphabetical characters (usa = United States)" -msgid "regional indicator %s" -msgstr "" - -msgctxt "LABEL: Very short word for skin tone and/or color (max 1 word if possible)" -msgid "tone" -msgstr "" - -msgctxt "LABEL: Name of the asterisk symbol (*)" -msgid "asterisk" -msgstr "" - -msgctxt "LABEL: Name of the number sign/hash symbol (#)" -msgid "number sign" -msgstr "" - -msgctxt "SKIN TONE: light" -msgid "light skin tone" -msgstr "" - -msgctxt "SKIN TONE: medium-light" -msgid "medium-light skin tone" -msgstr "" - -msgctxt "SKIN TONE: medium" -msgid "medium skin tone" -msgstr "" - -msgctxt "SKIN TONE: medium-dark" -msgid "medium-dark skin tone" -msgstr "" - -msgctxt "SKIN TONE: dark" -msgid "dark skin tone" -msgstr "" - -msgctxt "EMOJI GROUP: 0|smileys-emotion" -msgid "smileys & emotion" -msgstr "" - -msgctxt "EMOJI GROUP: 1|people-body" -msgid "people & body" -msgstr "" - -msgctxt "EMOJI GROUP: 2|component" -msgid "components" -msgstr "" - -msgctxt "EMOJI GROUP: 3|animals-nature" -msgid "animals & nature" -msgstr "" - -msgctxt "EMOJI GROUP: 4|food-drink" -msgid "food & drink" -msgstr "" - -msgctxt "EMOJI GROUP: 5|travel-places" -msgid "travel & places" -msgstr "" - -msgctxt "EMOJI GROUP: 6|activities, EMOJI SUB-GROUP: 26|person-activity" -msgid "activities" -msgstr "" - -msgctxt "EMOJI GROUP: 7|objects" -msgid "objects" -msgstr "" - -msgctxt "EMOJI GROUP: 8|symbols" -msgid "symbols" -msgstr "" - -msgctxt "EMOJI GROUP: 9|flags" -msgid "flags" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 0|face-smiling" -msgid "smiling" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 1|face-affection" -msgid "affectionate" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 2|face-tongue" -msgid "with tongue" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 3|face-hand" -msgid "with hands" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 4|face-neutral-skeptical" -msgid "neutral / skeptical" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 5|face-sleepy" -msgid "sleepy" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 6|face-unwell" -msgid "unwell" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 7|face-hat" -msgid "with hats" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 8|face-glasses" -msgid "with glasses" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 9|face-concerned" -msgid "concerned" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 10|face-negative" -msgid "negative" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 11|face-costume" -msgid "costumed & creatures" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 12|cat-face" -msgid "cat faces" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 13|monkey-face" -msgid "monkey faces" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 14|emotion" -msgid "emotions" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 15|hand-fingers-open" -msgid "fingers open" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 16|hand-fingers-partial" -msgid "hand signs" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 17|hand-single-finger" -msgid "finger pointing" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 18|hand-fingers-closed" -msgid "fingers closed" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 19|hands" -msgid "hands" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 20|hand-prop" -msgid "hand props" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 21|body-parts" -msgid "body parts" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 22|person" -msgid "people" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 23|person-gesture" -msgid "gestures" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 24|person-role" -msgid "roles & careers" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 25|person-fantasy" -msgid "fantasy" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 27|person-sport" -msgid "athletics" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 28|person-resting" -msgid "resting" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 29|family" -msgid "family" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 30|person-symbol" -msgid "people symbols" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 31|skin-tone" -msgid "skin tones" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 32|hair-style" -msgid "hair styles" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 33|animal-mammal" -msgid "mammals" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 34|animal-bird" -msgid "birds" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 35|animal-amphibian" -msgid "amphibians" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 36|animal-reptile" -msgid "reptiles" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 37|animal-marine" -msgid "marine life" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 38|animal-bug" -msgid "bugs" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 39|plant-flower" -msgid "flowers" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 40|plant-other" -msgid "other plants" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 41|food-fruit" -msgid "fruit" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 42|food-vegetable" -msgid "vegetables" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 43|food-prepared" -msgid "cooked / prepared" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 44|food-asian" -msgid "asian" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 45|food-marine" -msgid "seafood" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 46|food-sweet" -msgid "sweets & candy" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 47|drink" -msgid "drink" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 48|dishware" -msgid "dishware" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 49|place-map" -msgid "globes & maps" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 50|place-geographic" -msgid "geographic locations" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 51|place-building" -msgid "buildings" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 52|place-religious" -msgid "religious buildings" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 53|place-other" -msgid "other places" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 54|transport-ground" -msgid "ground transportation" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 55|transport-water" -msgid "water transportation" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 56|transport-air" -msgid "air transportation" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 57|hotel" -msgid "hotel" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 58|time" -msgid "time" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 59|sky-weather" -msgid "weather" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 60|event" -msgid "events & holidays" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 61|award-medal" -msgid "award medals" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 62|sport" -msgid "sports" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 63|game" -msgid "games & hobbies" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 64|arts-crafts" -msgid "arts & crafts" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 65|clothing" -msgid "clothing" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 66|sound" -msgid "sound" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 67|music" -msgid "music" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 68|musical-instrument" -msgid "musical instruments" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 69|phone" -msgid "phone" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 70|computer" -msgid "computer" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 71|light-video" -msgid "light, film & video" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 72|book-paper" -msgid "books & paper" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 73|money" -msgid "money" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 74|mail" -msgid "mail" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 75|writing" -msgid "writing" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 76|office" -msgid "office supplies" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 77|lock" -msgid "lock & keys" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 78|tool" -msgid "tools" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 79|science" -msgid "science equipment" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 80|medical" -msgid "medical" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 81|household" -msgid "household items" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 82|other-object" -msgid "other objects" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 83|transport-sign" -msgid "transport signs" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 84|warning" -msgid "warning symbols" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 85|arrow" -msgid "arrows" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 86|religion" -msgid "religious symbols" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 87|zodiac" -msgid "zodiac signs" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 88|av-symbol" -msgid "audio & video symbols" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 89|gender" -msgid "gender signs" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 90|math" -msgid "math symbols" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 91|punctuation" -msgid "punctuation" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 92|currency" -msgid "currencies" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 93|other-symbol" -msgid "other symbols" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 94|keycap" -msgid "keypad characters" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 95|alphanum" -msgid "alphanumeric symbols" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 96|geometric" -msgid "shapes & colors" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 97|flag" -msgid "other flags" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 98|country-flag" -msgid "country flags" -msgstr "" - -msgctxt "EMOJI SUB-GROUP: 99|subdivision-flag" -msgid "subdivision flags" -msgstr "" From 95b6dab39dcb43c3258da2ad2942a747601f4365 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 19:01:03 -0700 Subject: [PATCH 8/9] Fix gen. --- packages/data/en/shortcodes/github.raw.json | 58 +++++++++++++++ packages/data/en/shortcodes/iamcal.raw.json | 28 +++++++ .../generator/src/generators/generateData.ts | 73 +++++++++---------- 3 files changed, 119 insertions(+), 40 deletions(-) diff --git a/packages/data/en/shortcodes/github.raw.json b/packages/data/en/shortcodes/github.raw.json index 581b27e7..8331c075 100644 --- a/packages/data/en/shortcodes/github.raw.json +++ b/packages/data/en/shortcodes/github.raw.json @@ -196,6 +196,7 @@ "1F6C1": "bathtub", "1F50B": "battery", "1F3D6": "beach_umbrella", + "1FAD8": "beans", "1F43B": "bear", "1F9D4": "bearded_person", "1F9AB": "beaver", @@ -228,6 +229,8 @@ "1F426": "bird", "1F382": "birthday", "1F9AC": "bison", + "1FAE6": "biting_lip", + "1F426-200D-2B1B": "black_bird", "1F408-200D-2B1B": "black_cat", "26AB": "black_circle", "1F3F4": "black_flag", @@ -307,6 +310,7 @@ "1F7EB": "brown_square", "1F1E7-1F1F3": "brunei", "1F9CB": "bubble_tea", + "1FAE7": "bubbles", "1FAA3": "bucket", "1F41B": "bug", "1F3D7": "building_construction", @@ -468,6 +472,7 @@ "police_officer" ], "00A9": "copyright", + "1FAB8": "coral", "1F33D": "corn", "1F1E8-1F1F7": "costa_rica", "1F1E8-1F1EE": "cote_divoire", @@ -496,6 +501,7 @@ "1F91E": "crossed_fingers", "1F38C": "crossed_flags", "1F451": "crown", + "1FA7C": "crutch", "1F622": "cry", "1F63F": "crying_cat_face", "1F52E": "crystal_ball", @@ -567,7 +573,9 @@ ], "1F1E9-1F1F2": "dominica", "1F1E9-1F1F4": "dominican_republic", + "1FACF": "donkey", "1F6AA": "door", + "1FAE5": "dotted_line_face", "1F369": "doughnut", "1F54A": "dove", "1F409": "dragon", @@ -605,6 +613,7 @@ "1F9DD": "elf", "1F9DD-200D-2642-FE0F": "elf_man", "1F9DD-200D-2640-FE0F": "elf_woman", + "1FAB9": "empty_nest", "1F51A": "end", "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F": "england", "1F4E9": "envelope_with_arrow", @@ -628,8 +637,12 @@ "1F453": "eyeglasses", "1F440": "eyes", "1F62E-200D-1F4A8": "face_exhaling", + "1F979": "face_holding_back_tears", "1F636-200D-1F32B-FE0F": "face_in_clouds", + "1FAE4": "face_with_diagonal_mouth", "1F915": "face_with_head_bandage", + "1FAE2": "face_with_open_eyes_and_hand_over_mouth", + "1FAE3": "face_with_peeking_eye", "1F635-200D-1F4AB": "face_with_spiral_eyes", "1F912": "face_with_thermometer", "1F926": "facepalm", @@ -721,11 +734,13 @@ "1F4BE": "floppy_disk", "1F3B4": "flower_playing_cards", "1F633": "flushed", + "1FA88": "flute", "1FAB0": "fly", "1F94F": "flying_disc", "1F6F8": "flying_saucer", "1F32B": "fog", "1F301": "foggy", + "1FAAD": "folding_hand_fan", "1FAD5": "fondue", "1F9B6": "foot", "1F3C8": "football", @@ -778,6 +793,7 @@ "1F1EC-1F1EE": "gibraltar", "1F381": "gift", "1F49D": "gift_heart", + "1FADA": "ginger_root", "1F992": "giraffe", "1F467": "girl", "1F310": "globe_with_meridians", @@ -789,6 +805,7 @@ "1F3CC": "golfing", "1F3CC-FE0F-200D-2642-FE0F": "golfing_man", "1F3CC-FE0F-200D-2640-FE0F": "golfing_woman", + "1FABF": "goose", "1F98D": "gorilla", "1F347": "grapes", "1F1EC-1F1F7": "greece", @@ -800,6 +817,7 @@ "1F7E9": "green_square", "1F1EC-1F1F1": "greenland", "1F1EC-1F1E9": "grenada", + "1FA76": "grey_heart", "1F62C": "grimacing", "1F601": "grin", "1F600": "grinning", @@ -816,6 +834,7 @@ "1F3B8": "guitar", "1F52B": "gun", "1F1EC-1F1FE": "guyana", + "1FAAE": "hair_pick", "1F487": "haircut", "1F487-200D-2642-FE0F": "haircut_man", "1F487-200D-2640-FE0F": "haircut_woman", @@ -823,12 +842,14 @@ "1F354": "hamburger", "1F528": "hammer", "1F6E0": "hammer_and_wrench", + "1FAAC": "hamsa", "1F439": "hamster", "270B": [ "hand", "raised_hand" ], "1F92D": "hand_over_mouth", + "1FAF0": "hand_with_index_finger_and_thumb_crossed", "1F45C": "handbag", "1F93E": "handball_person", "1F91D": "handshake", @@ -848,10 +869,12 @@ "1F49F": "heart_decoration", "1F60D": "heart_eyes", "1F63B": "heart_eyes_cat", + "1FAF6": "heart_hands", "2764-FE0F-200D-1F525": "heart_on_fire", "1F493": "heartbeat", "1F497": "heartpulse", "1F4B2": "heavy_dollar_sign", + "1F7F0": "heavy_equals_sign", "1F994": "hedgehog", "1F681": "helicopter", "1F33F": "herb", @@ -886,6 +909,7 @@ "1F1ED-1F1FA": "hungary", "1F62F": "hushed", "1F6D6": "hut", + "1FABB": "hyacinth", "1F368": "ice_cream", "1F9CA": "ice_cube", "1F3D2": "ice_hockey", @@ -893,10 +917,12 @@ "1F366": "icecream", "1F1EE-1F1F8": "iceland", "1F194": "id", + "1FAAA": "identification_card", "1F250": "ideograph_advantage", "1F47F": "imp", "1F4E5": "inbox_tray", "1F4E8": "incoming_envelope", + "1FAF5": "index_pointing_at_the_viewer", "1F1EE-1F1F3": "india", "1F1EE-1F1E9": "indonesia", "267E": "infinity", @@ -922,7 +948,9 @@ "1F3EF": "japanese_castle", "1F47A": "japanese_goblin", "1F479": "japanese_ogre", + "1FAD9": "jar", "1F456": "jeans", + "1FABC": "jellyfish", "1F1EF-1F1EA": "jersey", "1F9E9": "jigsaw", "1F1EF-1F1F4": "jordan", @@ -938,6 +966,7 @@ "1F1F0-1F1EA": "kenya", "1F511": "key", "1F51F": "keycap_ten", + "1FAAF": "khanda", "1F6F4": "kick_scooter", "1F458": "kimono", "1F1F0-1F1EE": "kiribati", @@ -983,6 +1012,8 @@ "1F6C5": "left_luggage", "1F5E8": "left_speech_bubble", "21A9": "leftwards_arrow_with_hook", + "1FAF2": "leftwards_hand", + "1FAF7": "leftwards_pushing_hand", "1F9B5": "leg", "1F34B": "lemon", "264C": "leo", @@ -993,6 +1024,7 @@ "264E": "libra", "1F1F1-1F1FE": "libya", "1F1F1-1F1EE": "liechtenstein", + "1FA75": "light_blue_heart", "1F688": "light_rail", "1F517": "link", "1F981": "lion", @@ -1008,6 +1040,7 @@ "1FA98": "long_drum", "27BF": "loop", "1F9F4": "lotion_bottle", + "1FAB7": "lotus", "1F9D8": "lotus_position", "1F9D8-200D-2642-FE0F": "lotus_position_man", "1F9D8-200D-2640-FE0F": "lotus_position_woman", @@ -1016,6 +1049,7 @@ "1F3E9": "love_hotel", "1F48C": "love_letter", "1F91F": "love_you_gesture", + "1FAAB": "low_battery", "1F505": "low_brightness", "1F9F3": "luggage", "1FAC1": "lungs", @@ -1090,6 +1124,7 @@ "1F570": "mantelpiece_clock", "1F9BD": "manual_wheelchair", "1F341": "maple_leaf", + "1FA87": "maracas", "1F1F2-1F1ED": "marshall_islands", "1F94B": "martial_arts_uniform", "1F1F2-1F1F6": "martinique", @@ -1109,6 +1144,7 @@ "1F3C5": "medal_sports", "1F4E3": "mega", "1F348": "melon", + "1FAE0": "melting_face", "1F4DD": [ "memo", "pencil" @@ -1133,6 +1169,7 @@ "1F690": "minibus", "1F4BD": "minidisc", "1FA9E": "mirror", + "1FAA9": "mirror_ball", "1F4F4": "mobile_phone_off", "1F1F2-1F1E9": "moldova", "1F1F2-1F1E8": "monaco", @@ -1151,6 +1188,7 @@ "waxing_gibbous_moon" ], "1F96E": "moon_cake", + "1FACE": "moose", "1F1F2-1F1E6": "morocco", "1F393": "mortar_board", "1F54C": "mosque", @@ -1194,6 +1232,7 @@ "274E": "negative_squared_cross_mark", "1F1F3-1F1F5": "nepal", "1F913": "nerd_face", + "1FABA": "nest_with_eggs", "1FA86": "nesting_dolls", "1F1F3-1F1F1": "netherlands", "1F610": "neutral_face", @@ -1290,7 +1329,9 @@ "1F1F5-1F1F0": "pakistan", "1F1F5-1F1FC": "palau", "1F1F5-1F1F8": "palestinian_territories", + "1FAF3": "palm_down_hand", "1F334": "palm_tree", + "1FAF4": "palm_up_hand", "1F932": "palms_up_together", "1F1F5-1F1E6": "panama", "1F95E": "pancakes", @@ -1309,6 +1350,7 @@ "1F6F3": "passenger_ship", "1F6C2": "passport_control", "23F8": "pause_button", + "1FADB": "pea_pod", "262E": "peace_symbol", "1F351": "peach", "1F99A": "peacock", @@ -1331,6 +1373,7 @@ "1F935": "person_in_tuxedo", "1F9D1-200D-1F9B0": "person_red_hair", "1F9D1-200D-1F9B3": "person_white_hair", + "1FAC5": "person_with_crown", "1F9D1-200D-1F9AF": "person_with_probing_cane", "1F473": "person_with_turban", "1F470": "person_with_veil", @@ -1354,6 +1397,7 @@ "1F90F": "pinching_hand", "1F34D": "pineapple", "1F3D3": "ping_pong", + "1FA77": "pink_heart", "1F3F4-200D-2620-FE0F": "pirate_flag", "1F1F5-1F1F3": "pitcairn_islands", "1F355": "pizza", @@ -1361,6 +1405,7 @@ "1F6D0": "place_of_worship", "1F37D": "plate_with_cutlery", "23EF": "play_or_pause_button", + "1F6DD": "playground_slide", "1F97A": "pleading_face", "1FAA0": "plunger", "1F447": "point_down", @@ -1385,6 +1430,7 @@ "1F45D": "pouch", "1F357": "poultry_leg", "1F4B7": "pound", + "1FAD7": "pouring_liquid", "1F621": [ "pout", "rage" @@ -1395,6 +1441,8 @@ "1F64E-200D-2640-FE0F": "pouting_woman", "1F64F": "pray", "1F4FF": "prayer_beads", + "1FAC3": "pregnant_man", + "1FAC4": "pregnant_person", "1F930": "pregnant_woman", "1F968": "pretzel", "23EE": "previous_track_button", @@ -1458,7 +1506,10 @@ "1F358": "rice_cracker", "1F391": "rice_scene", "1F5EF": "right_anger_bubble", + "1FAF1": "rightwards_hand", + "1FAF8": "rightwards_pushing_hand", "1F48D": "ring", + "1F6DF": "ring_buoy", "1FA90": "ringed_planet", "1F916": "robot", "1FAA8": "rock", @@ -1492,6 +1543,7 @@ "1F9BA": "safety_vest", "1F376": "sake", "1F9C2": "salt", + "1FAE1": "saluting_face", "1F1FC-1F1F8": "samoa", "1F1F8-1F1F2": "san_marino", "1F461": "sandal", @@ -1536,6 +1588,7 @@ "0037-FE0F-20E3": "seven", "1FAA1": "sewing_needle", "1F1F8-1F1E8": "seychelles", + "1FAE8": "shaking_face", "1F958": "shallow_pan_of_food", "1F988": "shark", "1F367": "shaved_ice", @@ -1759,6 +1812,7 @@ "1F1F9-1F1F9": "trinidad_tobago", "1F1F9-1F1E6": "tristan_da_cunha", "1F624": "triumph", + "1F9CC": "troll", "1F68E": "trolleybus", "1F3C6": "trophy", "1F379": "tropical_drink", @@ -1850,6 +1904,7 @@ "1F1EA-1F1ED": "western_sahara", "1F433": "whale", "1F40B": "whale2", + "1F6DE": "wheel", "267F": "wheelchair", "26AA": "white_circle", "1F3F3": "white_flag", @@ -1867,7 +1922,9 @@ "1F32C": "wind_face", "1FA9F": "window", "1F377": "wine_glass", + "1FABD": "wing", "1F609": "wink", + "1F6DC": "wireless", "1F43A": "wolf", "1F469": "woman", "1F469-200D-1F3A8": "woman_artist", @@ -1913,6 +1970,7 @@ "1F93C": "wrestling", "270D": "writing_hand", "274C": "x", + "1FA7B": "x_ray", "1F9F6": "yarn", "1F971": "yawning_face", "1F7E1": "yellow_circle", diff --git a/packages/data/en/shortcodes/iamcal.raw.json b/packages/data/en/shortcodes/iamcal.raw.json index a1a3d0e6..50d6d938 100644 --- a/packages/data/en/shortcodes/iamcal.raw.json +++ b/packages/data/en/shortcodes/iamcal.raw.json @@ -499,6 +499,7 @@ "1F341": "maple_leaf", "1F342": "fallen_leaf", "1F343": "leaves", + "1F344-200D-1F7EB": "brown_mushroom", "1F344": "mushroom", "1F345": "tomato", "1F346": "eggplant", @@ -506,6 +507,7 @@ "1F348": "melon", "1F349": "watermelon", "1F34A": "tangerine", + "1F34B-200D-1F7E9": "lime", "1F34B": "lemon", "1F34C": "banana", "1F34D": "pineapple", @@ -625,7 +627,10 @@ "1F3C1": "checkered_flag", "1F3C2": "snowboarder", "1F3C3-200D-2640-FE0F": "woman-running", + "1F3C3-200D-2640-FE0F-200D-27A1-FE0F": "woman_running_facing_right", "1F3C3-200D-2642-FE0F": "man-running", + "1F3C3-200D-2642-FE0F-200D-27A1-FE0F": "man_running_facing_right", + "1F3C3-200D-27A1-FE0F": "person_running_facing_right", "1F3C3": [ "runner", "running" @@ -750,6 +755,7 @@ "1F423": "hatching_chick", "1F424": "baby_chick", "1F425": "hatched_chick", + "1F426-200D-1F525": "phoenix", "1F426-200D-2B1B": "black_bird", "1F426": "bird", "1F427": "penguin", @@ -869,12 +875,15 @@ "1F468-200D-1F52C": "male-scientist", "1F468-200D-1F680": "male-astronaut", "1F468-200D-1F692": "male-firefighter", + "1F468-200D-1F9AF-200D-27A1-FE0F": "man_with_white_cane_facing_right", "1F468-200D-1F9AF": "man_with_probing_cane", "1F468-200D-1F9B0": "red_haired_man", "1F468-200D-1F9B1": "curly_haired_man", "1F468-200D-1F9B2": "bald_man", "1F468-200D-1F9B3": "white_haired_man", + "1F468-200D-1F9BC-200D-27A1-FE0F": "man_in_motorized_wheelchair_facing_right", "1F468-200D-1F9BC": "man_in_motorized_wheelchair", + "1F468-200D-1F9BD-200D-27A1-FE0F": "man_in_manual_wheelchair_facing_right", "1F468-200D-1F9BD": "man_in_manual_wheelchair", "1F468-200D-2695-FE0F": "male-doctor", "1F468-200D-2696-FE0F": "male-judge", @@ -906,12 +915,15 @@ "1F469-200D-1F52C": "female-scientist", "1F469-200D-1F680": "female-astronaut", "1F469-200D-1F692": "female-firefighter", + "1F469-200D-1F9AF-200D-27A1-FE0F": "woman_with_white_cane_facing_right", "1F469-200D-1F9AF": "woman_with_probing_cane", "1F469-200D-1F9B0": "red_haired_woman", "1F469-200D-1F9B1": "curly_haired_woman", "1F469-200D-1F9B2": "bald_woman", "1F469-200D-1F9B3": "white_haired_woman", + "1F469-200D-1F9BC-200D-27A1-FE0F": "woman_in_motorized_wheelchair_facing_right", "1F469-200D-1F9BC": "woman_in_motorized_wheelchair", + "1F469-200D-1F9BD-200D-27A1-FE0F": "woman_in_manual_wheelchair_facing_right", "1F469-200D-1F9BD": "woman_in_manual_wheelchair", "1F469-200D-2695-FE0F": "female-doctor", "1F469-200D-2696-FE0F": "female-judge", @@ -1335,6 +1347,8 @@ "1F63F": "crying_cat_face", "1F640": "scream_cat", "1F641": "slightly_frowning_face", + "1F642-200D-2194-FE0F": "head_shaking_horizontally", + "1F642-200D-2195-FE0F": "head_shaking_vertically", "1F642": "slightly_smiling_face", "1F643": "upside_down_face", "1F644": "face_with_rolling_eyes", @@ -1425,7 +1439,10 @@ "1F6B5-200D-2642-FE0F": "man-mountain-biking", "1F6B5": "mountain_bicyclist", "1F6B6-200D-2640-FE0F": "woman-walking", + "1F6B6-200D-2640-FE0F-200D-27A1-FE0F": "woman_walking_facing_right", "1F6B6-200D-2642-FE0F": "man-walking", + "1F6B6-200D-2642-FE0F-200D-27A1-FE0F": "man_walking_facing_right", + "1F6B6-200D-27A1-FE0F": "person_walking_facing_right", "1F6B6": "walking", "1F6B7": "no_pedestrians", "1F6B8": "children_crossing", @@ -1734,7 +1751,10 @@ "1F9CD-200D-2642-FE0F": "man_standing", "1F9CD": "standing_person", "1F9CE-200D-2640-FE0F": "woman_kneeling", + "1F9CE-200D-2640-FE0F-200D-27A1-FE0F": "woman_kneeling_facing_right", "1F9CE-200D-2642-FE0F": "man_kneeling", + "1F9CE-200D-2642-FE0F-200D-27A1-FE0F": "man_kneeling_facing_right", + "1F9CE-200D-27A1-FE0F": "person_kneeling_facing_right", "1F9CE": "kneeling_person", "1F9CF-200D-2640-FE0F": "deaf_woman", "1F9CF-200D-2642-FE0F": "deaf_man", @@ -1756,13 +1776,20 @@ "1F9D1-200D-1F680": "astronaut", "1F9D1-200D-1F692": "firefighter", "1F9D1-200D-1F91D-200D-1F9D1": "people_holding_hands", + "1F9D1-200D-1F9AF-200D-27A1-FE0F": "person_with_white_cane_facing_right", "1F9D1-200D-1F9AF": "person_with_probing_cane", "1F9D1-200D-1F9B0": "red_haired_person", "1F9D1-200D-1F9B1": "curly_haired_person", "1F9D1-200D-1F9B2": "bald_person", "1F9D1-200D-1F9B3": "white_haired_person", + "1F9D1-200D-1F9BC-200D-27A1-FE0F": "person_in_motorized_wheelchair_facing_right", "1F9D1-200D-1F9BC": "person_in_motorized_wheelchair", + "1F9D1-200D-1F9BD-200D-27A1-FE0F": "person_in_manual_wheelchair_facing_right", "1F9D1-200D-1F9BD": "person_in_manual_wheelchair", + "1F9D1-200D-1F9D1-200D-1F9D2": "family_adult_adult_child", + "1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2": "family_adult_adult_child_child", + "1F9D1-200D-1F9D2-200D-1F9D2": "family_adult_child_child", + "1F9D1-200D-1F9D2": "family_adult_child", "1F9D1-200D-2695-FE0F": "health_worker", "1F9D1-200D-2696-FE0F": "judge", "1F9D1-200D-2708-FE0F": "pilot", @@ -2007,6 +2034,7 @@ "26CE": "ophiuchus", "26CF": "pick", "26D1": "helmet_with_white_cross", + "26D3-FE0F-200D-1F4A5": "broken_chain", "26D3": "chains", "26D4": "no_entry", "26E9": "shinto_shrine", diff --git a/packages/generator/src/generators/generateData.ts b/packages/generator/src/generators/generateData.ts index 8c7198d4..c4d9f181 100644 --- a/packages/generator/src/generators/generateData.ts +++ b/packages/generator/src/generators/generateData.ts @@ -149,47 +149,40 @@ async function generateMessages(locale: Locale): Promise { const skinTones: SkinToneMessage[] = []; data.po.items.forEach((item) => { - String(item.msgctxt) - .replace(/\n+/, ' ') - .split(',') - .map((ctx) => ctx.trim()) - .forEach((ctx) => { - const [type, meta] = ctx.split(':'); - - switch (type) { - case 'EMOJI GROUP': - case 'EMOJI SUB-GROUP': { - const [order, key] = meta.split('|'); - const message = { - key: key.trim(), - message: String(item.msgstr), - order: Number(order.trim()), - }; - - if (!message.message) { - message.message = String(englishData.itemsById[item.msgid].msgstr); - } - - if (type === 'EMOJI SUB-GROUP') { - subgroups.push(message as SubgroupMessage); - } else { - groups.push(message as GroupMessage); - } - break; - } - - case 'SKIN TONE': - skinTones.push({ - key: meta.trim(), - message: String(item.msgstr), - } as SkinToneMessage); - - break; - - default: - break; + const [type, key] = item.msgctxt.split(':'); + + switch (type) { + case 'EMOJI GROUP': + case 'EMOJI SUB-GROUP': { + const message = { + key: item.msgid, + message: String(item.msgstr), + order: Number(item.comments[0].trim()), + }; + + if (!message.message) { + message.message = String(englishData.itemsById[item.msgid].msgstr); } - }); + + if (type === 'EMOJI SUB-GROUP') { + subgroups.push(message as SubgroupMessage); + } else { + groups.push(message as GroupMessage); + } + break; + } + + case 'SKIN TONE': + skinTones.push({ + key: key.trim(), + message: String(item.msgstr), + } as SkinToneMessage); + + break; + + default: + break; + } }); if (groups.length === 0) { From c743549633a85f83774dd617290cda3f3bcbb0e3 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 8 Jun 2024 19:01:53 -0700 Subject: [PATCH 9/9] Update messages. --- packages/data/bn/messages.raw.json | 189 ++++++++++++------------ packages/data/da/messages.raw.json | 189 ++++++++++++------------ packages/data/de/messages.raw.json | 189 ++++++++++++------------ packages/data/en-gb/messages.raw.json | 189 ++++++++++++------------ packages/data/en/messages.raw.json | 189 ++++++++++++------------ packages/data/es-mx/messages.raw.json | 189 ++++++++++++------------ packages/data/es/messages.raw.json | 189 ++++++++++++------------ packages/data/et/messages.raw.json | 189 ++++++++++++------------ packages/data/fi/messages.raw.json | 189 ++++++++++++------------ packages/data/fr/messages.raw.json | 189 ++++++++++++------------ packages/data/hi/messages.raw.json | 189 ++++++++++++------------ packages/data/hu/messages.raw.json | 189 ++++++++++++------------ packages/data/it/messages.raw.json | 189 ++++++++++++------------ packages/data/ja/messages.raw.json | 189 ++++++++++++------------ packages/data/ko/messages.raw.json | 189 ++++++++++++------------ packages/data/lt/messages.raw.json | 189 ++++++++++++------------ packages/data/ms/messages.raw.json | 189 ++++++++++++------------ packages/data/nb/messages.raw.json | 189 ++++++++++++------------ packages/data/nl/messages.raw.json | 189 ++++++++++++------------ packages/data/pl/messages.raw.json | 189 ++++++++++++------------ packages/data/pt/messages.raw.json | 189 ++++++++++++------------ packages/data/ru/messages.raw.json | 189 ++++++++++++------------ packages/data/sv/messages.raw.json | 189 ++++++++++++------------ packages/data/th/messages.raw.json | 189 ++++++++++++------------ packages/data/uk/messages.raw.json | 189 ++++++++++++------------ packages/data/zh-hant/messages.raw.json | 189 ++++++++++++------------ packages/data/zh/messages.raw.json | 189 ++++++++++++------------ packages/test-utils/test-messages.json | 2 +- website/docs/datasets.mdx | 58 ++++---- 29 files changed, 2649 insertions(+), 2514 deletions(-) diff --git a/packages/data/bn/messages.raw.json b/packages/data/bn/messages.raw.json index b9ccfc1a..29291fee 100644 --- a/packages/data/bn/messages.raw.json +++ b/packages/data/bn/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "হালকা ত্বকের স্বর" + "key": "dark", + "message": "গাঢ় ত্বক টোন" }, { - "key": "medium-light", - "message": "মাঝারি-হালকা ত্বকের স্বর" + "key": "light", + "message": "হালকা ত্বকের স্বর" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "মাঝারি-গাঢ় ত্বকের স্বর" }, { - "key": "dark", - "message": "গাঢ় ত্বক টোন" + "key": "medium-light", + "message": "মাঝারি-হালকা ত্বকের স্বর" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "বানরের মুখ", "order": 13 }, + { + "key": "heart", + "message": "হৃদয়", + "order": 14 + }, { "key": "emotion", "message": "আবেগ", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "আঙ্গুল খোলা", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "হাতের চিহ্ন", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "আঙুল নির্দেশ করে", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "আঙ্গুল বন্ধ", - "order": 18 + "order": 19 }, { "key": "hands", "message": "হাত", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "হাত প্রপস", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "শরীরের অংশ", - "order": 21 + "order": 22 }, { "key": "person", "message": "মানুষ", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "অঙ্গভঙ্গি", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "ভূমিকা এবং কর্মজীবন", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "ফ্যান্টাসি", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "কার্যক্রম", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "অ্যাথলেটিক্স", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "বিশ্রাম", - "order": 28 + "order": 29 }, { "key": "family", "message": "পরিবার", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "মানুষের প্রতীক", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "ত্বক টোন", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "চুলের শৈলী", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "স্তন্যপায়ী প্রাণী", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "পাখি", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "উভচর", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "সরীসৃপ", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "নাবিক জীবন", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "বাগ", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "ফুল", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "অন্যান্য গাছপালা", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "ফল", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "সবজি", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "রান্না করা / প্রস্তুত", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "এশিয়ান", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "সীফুড", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "মিষ্টি এবং মিছরি", - "order": 46 + "order": 47 }, { "key": "drink", "message": "পান করা", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "থালা বাসন", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "গ্লোব এবং মানচিত্র", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "ভৌগলিক অবস্থান", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "ভবন", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "ধর্মীয় ভবন", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "অন্যান্য জায়গা", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "ভূমি স্থানান্তর", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "জল পরিবহন", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "বিমান পরিবহন", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "হোটেল", - "order": 57 + "order": 58 }, { "key": "time", "message": "সময়", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "আবহাওয়া", - "order": 59 + "order": 60 }, { "key": "event", "message": "ঘটনা এবং ছুটির দিন", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "পুরস্কার পদক", - "order": 61 + "order": 62 }, { "key": "sport", "message": "খেলাধুলা", - "order": 62 + "order": 63 }, { "key": "game", "message": "গেম এবং শখ", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "চারু এবং কারু", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "পোশাক", - "order": 65 + "order": 66 }, { "key": "sound", "message": "শব্দ", - "order": 66 + "order": 67 }, { "key": "music", "message": "সঙ্গীত", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "বাদ্যযন্ত্র", - "order": 68 + "order": 69 }, { "key": "phone", "message": "ফোন", - "order": 69 + "order": 70 }, { "key": "computer", "message": "কম্পিউটার", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "আলো, ফিল্ম এবং ভিডিও", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "বই এবং কাগজ", - "order": 72 + "order": 73 }, { "key": "money", "message": "টাকা", - "order": 73 + "order": 74 }, { "key": "mail", "message": "মেইল", - "order": 74 + "order": 75 }, { "key": "writing", "message": "লেখা", - "order": 75 + "order": 76 }, { "key": "office", "message": "অফিসে ব্যবহারকৃত জিনিসপত্র", - "order": 76 + "order": 77 }, { "key": "lock", "message": "তালা এবং চাবি", - "order": 77 + "order": 78 }, { "key": "tool", "message": "টুলস", - "order": 78 + "order": 79 }, { "key": "science", "message": "বিজ্ঞান সরঞ্জাম", - "order": 79 + "order": 80 }, { "key": "medical", "message": "চিকিৎসা", - "order": 80 + "order": 81 }, { "key": "household", "message": "গৃহস্থালী জিনিস", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "অন্যান্য বস্তু", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "পরিবহন লক্ষণ", - "order": 83 + "order": 84 }, { "key": "warning", "message": "সতর্কতা চিহ্ন", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "তীর", - "order": 85 + "order": 86 }, { "key": "religion", "message": "ধর্মীয় প্রতীক", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "রাশিচক্র চিহ্ন", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "অডিও এবং ভিডিও প্রতীক", - "order": 88 + "order": 89 }, { "key": "gender", "message": "লিঙ্গ লক্ষণ", - "order": 89 + "order": 90 }, { "key": "math", "message": "গণিত প্রতীক", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "বিরাম চিহ্ন", - "order": 91 + "order": 92 }, { "key": "currency", "message": "মুদ্রা", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "অন্যান্য চিহ্ন", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "কীপ্যাড অক্ষর", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "আলফানিউমেরিক চিহ্ন", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "আকার এবং রং", - "order": 96 + "order": 97 }, { "key": "flag", "message": "অন্যান্য পতাকা", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "দেশের পতাকা", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "মহকুমা পতাকা", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/da/messages.raw.json b/packages/data/da/messages.raw.json index 46dabb75..5b43df53 100644 --- a/packages/data/da/messages.raw.json +++ b/packages/data/da/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "lys teint" + "key": "dark", + "message": "mørk teint" }, { - "key": "medium-light", - "message": "medium-lys teint" + "key": "light", + "message": "lys teint" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "medium-mørk teint" }, { - "key": "dark", - "message": "mørk teint" + "key": "medium-light", + "message": "medium-lys teint" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "abe ansigter", "order": 13 }, + { + "key": "heart", + "message": "hjerter", + "order": 14 + }, { "key": "emotion", "message": "følelser", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "åbne fingre", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "håndtegn", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "finger, der peger", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "lukkede fingre", - "order": 18 + "order": 19 }, { "key": "hands", "message": "hands", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "hånd rekvisitter", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "kropsdele", - "order": 21 + "order": 22 }, { "key": "person", "message": "personer", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "bevægelser", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roller & karriere", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasi", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "oplevelser", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "atletik", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "hviler", - "order": 28 + "order": 29 }, { "key": "family", "message": "familie", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "personer symboler", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "hudfarver", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "frisurer", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "pattedyr", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "fugle", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "padder", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "krybdyr", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "livet", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "bugs", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "blomster", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "andre planter", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "frugt", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "grøntsager", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "kogte / tilberedte", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiatiske", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "skaldyr", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "slik & slik", - "order": 46 + "order": 47 }, { "key": "drink", "message": "drikke", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "service", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "glober & kort", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geografiske placeringer", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "bygninger", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religiøse bygninger", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "andre steder", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "landtransport", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "vand transport", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "lufttransport", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "tid", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "vejr", - "order": 59 + "order": 60 }, { "key": "event", "message": "arrangementer & helligdage", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "tildele medaljer", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sportsgrene", - "order": 62 + "order": 63 }, { "key": "game", "message": "spil & hobbyer", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "kunst & kunsthåndværk", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "tøj", - "order": 65 + "order": 66 }, { "key": "sound", "message": "lyd", - "order": 66 + "order": 67 }, { "key": "music", "message": "musik", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "musikinstrumenter", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "lys, film & video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "bøger & papir", - "order": 72 + "order": 73 }, { "key": "money", "message": "mønt", - "order": 73 + "order": 74 }, { "key": "mail", "message": "post", - "order": 74 + "order": 75 }, { "key": "writing", "message": "skrive", - "order": 75 + "order": 76 }, { "key": "office", "message": "kontorartikler", - "order": 76 + "order": 77 }, { "key": "lock", "message": "lås & nøgler", - "order": 77 + "order": 78 }, { "key": "tool", "message": "værktøj", - "order": 78 + "order": 79 }, { "key": "science", "message": "videnskabeligt udstyr", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medicinsk", - "order": 80 + "order": 81 }, { "key": "household", "message": "husholdningsartikler", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "andre objekter", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transportskilte", - "order": 83 + "order": 84 }, { "key": "warning", "message": "advarselssymboler", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "pile", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religiøse symboler", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "stjernetegn tegn", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "lyd & video symboler", - "order": 88 + "order": 89 }, { "key": "gender", "message": "kønstegn", - "order": 89 + "order": 90 }, { "key": "math", "message": "matematiske symboler", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "tegnsætning", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valutaer", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "andre symboler", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "tastaturtegn", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alfanumeriske symboler", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "former & farver", - "order": 96 + "order": 97 }, { "key": "flag", "message": "andre flag", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "landeflag", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "underinddelingsflag", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/de/messages.raw.json b/packages/data/de/messages.raw.json index ad9a1b94..5b73b1f2 100644 --- a/packages/data/de/messages.raw.json +++ b/packages/data/de/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "heller Hautton" + "key": "dark", + "message": "dunkler Hautton" }, { - "key": "medium-light", - "message": "mittelheller Hautton" + "key": "light", + "message": "heller Hautton" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "mitteldunkrer Hautton" }, { - "key": "dark", - "message": "dunkler Hautton" + "key": "medium-light", + "message": "mittelheller Hautton" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "Affengesichter", "order": 13 }, + { + "key": "heart", + "message": "Herzen", + "order": 14 + }, { "key": "emotion", "message": "Emotionen", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "Finger offen", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "Handzeichen", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "Fingerzeige", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "Finger geschlossen", - "order": 18 + "order": 19 }, { "key": "hands", "message": "Hände", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "Handrequisiten", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "Körperteile", - "order": 21 + "order": 22 }, { "key": "person", "message": "Personen", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "Gesten", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "Rollen & Karrieren", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "Fantasie", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "Aktivitäten", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "Leichtathletik", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "Ruhe", - "order": 28 + "order": 29 }, { "key": "family", "message": "Familie", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "Personensymbole", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "Hauttöne", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "Frisuren", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "Säugetiere", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "Vögel", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "Amphibien", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "Reptilien", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "Meereslebewesen", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "Fehler", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "Blumen", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "andere Pflanzen", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "Frucht", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "Gemüse", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "gekocht / zubereitet", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "Asiatisch", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "Meeresfrüchte", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "Süßigkeiten & Süßigkeiten", - "order": 46 + "order": 47 }, { "key": "drink", "message": "Trinken", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "Geschirr", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "Globen & Karten", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geographische Standorte", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "Gebäude", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religiöse Gebäude", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "andere Orte", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "Bodentransport", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "Wassertransport", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "Lufttransport", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "Unterkunft", - "order": 57 + "order": 58 }, { "key": "time", "message": "Zeit", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "Wetter", - "order": 59 + "order": 60 }, { "key": "event", "message": "Veranstaltungen & Feiertage", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "Auszeichnung enden", - "order": 61 + "order": 62 }, { "key": "sport", "message": "Sportarten", - "order": 62 + "order": 63 }, { "key": "game", "message": "Spiele & Hobbys", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "Kunsthandwerk", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "Kleidung", - "order": 65 + "order": 66 }, { "key": "sound", "message": "Klang", - "order": 66 + "order": 67 }, { "key": "music", "message": "Musik", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "Musikinstrumente", - "order": 68 + "order": 69 }, { "key": "phone", "message": "Telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "Computer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "Licht, Film & Video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "Bücher & Papier", - "order": 72 + "order": 73 }, { "key": "money", "message": "Geld", - "order": 73 + "order": 74 }, { "key": "mail", "message": "Mail", - "order": 74 + "order": 75 }, { "key": "writing", "message": "Schreiben", - "order": 75 + "order": 76 }, { "key": "office", "message": "Bürobedarfe", - "order": 76 + "order": 77 }, { "key": "lock", "message": "Schloss & Schlüssel", - "order": 77 + "order": 78 }, { "key": "tool", "message": "Werkzeuge", - "order": 78 + "order": 79 }, { "key": "science", "message": "wissenschaftliche Ausrüstung", - "order": 79 + "order": 80 }, { "key": "medical", "message": "Medizinisch", - "order": 80 + "order": 81 }, { "key": "household", "message": "Haushaltsgegenstände", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "andere Objekte", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "Verkehrszeichen", - "order": 83 + "order": 84 }, { "key": "warning", "message": "Warnsymbole", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "Pfeile", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religiöse Symbole", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "Tierkreiszeichen", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "Audio- & Videosymbole", - "order": 88 + "order": 89 }, { "key": "gender", "message": "Geschlechtszeichen", - "order": 89 + "order": 90 }, { "key": "math", "message": "mathematische Symbole", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "Satzzeichen", - "order": 91 + "order": 92 }, { "key": "currency", "message": "Währungen", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "andere Symbole", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "Tastaturzeichen", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alphanumerische Symbole", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "Formen & Farben", - "order": 96 + "order": 97 }, { "key": "flag", "message": "andere Flaggen", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "Länderflaggen", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "Unterteilungsflags", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/en-gb/messages.raw.json b/packages/data/en-gb/messages.raw.json index 7913739c..fd307bf0 100644 --- a/packages/data/en-gb/messages.raw.json +++ b/packages/data/en-gb/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "light skin tone" + "key": "dark", + "message": "dark skin tone" }, { - "key": "medium-light", - "message": "medium-light skin tone" + "key": "light", + "message": "light skin tone" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "medium-dark skin tone" }, { - "key": "dark", - "message": "dark skin tone" + "key": "medium-light", + "message": "medium-light skin tone" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "monkey faces", "order": 13 }, + { + "key": "heart", + "message": "hearts", + "order": 14 + }, { "key": "emotion", "message": "emotions", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "fingers open", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "hand signs", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "finger pointing", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "fingers closed", - "order": 18 + "order": 19 }, { "key": "hands", "message": "hands", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "hand props", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "body parts", - "order": 21 + "order": 22 }, { "key": "person", "message": "people", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gestures", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roles & careers", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasy", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "activities", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "athletics", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "resting", - "order": 28 + "order": 29 }, { "key": "family", "message": "family", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "people symbols", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "skin tones", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "hair styles", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mammals", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "birds", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "amphibians", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptiles", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "marine life", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "bugs", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "flowers", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "other plants", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "fruit", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "vegetables", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "cooked / prepared", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asian", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "seafood", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "sweets & candy", - "order": 46 + "order": 47 }, { "key": "drink", "message": "drink", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "dishware", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globes & maps", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geographic locations", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "administrators", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religious buildings", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "other places", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "ground transportation", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "water transportation", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "air transportation", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "time", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "weather", - "order": 59 + "order": 60 }, { "key": "event", "message": "events & holidays", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "award medals", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sports", - "order": 62 + "order": 63 }, { "key": "game", "message": "games & hobbies", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "arts & crafts", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "clothing", - "order": 65 + "order": 66 }, { "key": "sound", "message": "sound", - "order": 66 + "order": 67 }, { "key": "music", "message": "music", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "musical instruments", - "order": 68 + "order": 69 }, { "key": "phone", "message": "phone", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "light, film & video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "books & paper", - "order": 72 + "order": 73 }, { "key": "money", "message": "money", - "order": 73 + "order": 74 }, { "key": "mail", "message": "mail", - "order": 74 + "order": 75 }, { "key": "writing", "message": "writing", - "order": 75 + "order": 76 }, { "key": "office", "message": "office supplies", - "order": 76 + "order": 77 }, { "key": "lock", "message": "lock & keys", - "order": 77 + "order": 78 }, { "key": "tool", "message": "tools", - "order": 78 + "order": 79 }, { "key": "science", "message": "science equipment", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medical", - "order": 80 + "order": 81 }, { "key": "household", "message": "household items", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "other objects", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transport signs", - "order": 83 + "order": 84 }, { "key": "warning", "message": "warning symbols", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "arrows", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religious symbols", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "zodiac signs", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "audio & video symbols", - "order": 88 + "order": 89 }, { "key": "gender", "message": "gender signs", - "order": 89 + "order": 90 }, { "key": "math", "message": "math symbols", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "punctuation", - "order": 91 + "order": 92 }, { "key": "currency", "message": "currencies", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "other symbols", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "keypad characters", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alphanumeric symbols", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "shapes & colors", - "order": 96 + "order": 97 }, { "key": "flag", "message": "other flags", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "country flags", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "subdivision flags", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/en/messages.raw.json b/packages/data/en/messages.raw.json index fe3a5fe7..75333c11 100644 --- a/packages/data/en/messages.raw.json +++ b/packages/data/en/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "light skin tone" + "key": "dark", + "message": "dark skin tone" }, { - "key": "medium-light", - "message": "medium-light skin tone" + "key": "light", + "message": "light skin tone" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "medium-dark skin tone" }, { - "key": "dark", - "message": "dark skin tone" + "key": "medium-light", + "message": "medium-light skin tone" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "monkey faces", "order": 13 }, + { + "key": "heart", + "message": "hearts", + "order": 14 + }, { "key": "emotion", "message": "emotions", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "fingers open", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "hand signs", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "finger pointing", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "fingers closed", - "order": 18 + "order": 19 }, { "key": "hands", "message": "hands", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "hand props", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "body parts", - "order": 21 + "order": 22 }, { "key": "person", "message": "people", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gestures", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roles & careers", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasy", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "activities", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "athletics", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "resting", - "order": 28 + "order": 29 }, { "key": "family", "message": "family", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "people symbols", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "skin tones", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "hair styles", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mammals", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "birds", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "amphibians", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptiles", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "marine life", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "bugs", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "flowers", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "other plants", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "fruit", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "vegetables", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "cooked / prepared", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asian", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "seafood", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "sweets & candy", - "order": 46 + "order": 47 }, { "key": "drink", "message": "drink", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "dishware", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globes & maps", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geographic locations", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "buildings", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religious buildings", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "other places", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "ground transportation", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "water transportation", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "air transportation", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "time", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "weather", - "order": 59 + "order": 60 }, { "key": "event", "message": "events & holidays", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "award medals", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sports", - "order": 62 + "order": 63 }, { "key": "game", "message": "games & hobbies", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "arts & crafts", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "clothing", - "order": 65 + "order": 66 }, { "key": "sound", "message": "sound", - "order": 66 + "order": 67 }, { "key": "music", "message": "music", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "musical instruments", - "order": 68 + "order": 69 }, { "key": "phone", "message": "phone", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "light, film & video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "books & paper", - "order": 72 + "order": 73 }, { "key": "money", "message": "money", - "order": 73 + "order": 74 }, { "key": "mail", "message": "mail", - "order": 74 + "order": 75 }, { "key": "writing", "message": "writing", - "order": 75 + "order": 76 }, { "key": "office", "message": "office supplies", - "order": 76 + "order": 77 }, { "key": "lock", "message": "lock & keys", - "order": 77 + "order": 78 }, { "key": "tool", "message": "tools", - "order": 78 + "order": 79 }, { "key": "science", "message": "science equipment", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medical", - "order": 80 + "order": 81 }, { "key": "household", "message": "household items", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "other objects", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transport signs", - "order": 83 + "order": 84 }, { "key": "warning", "message": "warning symbols", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "arrows", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religious symbols", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "zodiac signs", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "audio & video symbols", - "order": 88 + "order": 89 }, { "key": "gender", "message": "gender signs", - "order": 89 + "order": 90 }, { "key": "math", "message": "math symbols", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "punctuation", - "order": 91 + "order": 92 }, { "key": "currency", "message": "currencies", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "other symbols", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "keypad characters", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alphanumeric symbols", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "shapes & colors", - "order": 96 + "order": 97 }, { "key": "flag", "message": "other flags", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "country flags", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "subdivision flags", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/es-mx/messages.raw.json b/packages/data/es-mx/messages.raw.json index c72ca059..12a20a71 100644 --- a/packages/data/es-mx/messages.raw.json +++ b/packages/data/es-mx/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "tono de piel claro" + "key": "dark", + "message": "tono de piel oscuro" }, { - "key": "medium-light", - "message": "tono de piel medio claro" + "key": "light", + "message": "tono de piel claro" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "tono de piel medio-oscuro" }, { - "key": "dark", - "message": "tono de piel oscuro" + "key": "medium-light", + "message": "tono de piel medio claro" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "caras de mono", "order": 13 }, + { + "key": "heart", + "message": "corazones", + "order": 14 + }, { "key": "emotion", "message": "emociones", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "dedos abiertos", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "signos de mano", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "señalando con el dedo", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "dedos cerrados", - "order": 18 + "order": 19 }, { "key": "hands", "message": "manos", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "apoyos de mano", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "partes del cuerpo", - "order": 21 + "order": 22 }, { "key": "person", "message": "personas", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gestos", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roles y carreras", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasía", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "actividades", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "atletismo", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "descansando", - "order": 28 + "order": 29 }, { "key": "family", "message": "familia", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "símbolos de la gente", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "tonos de piel", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "estilos de cabello", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mamíferos", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "aves", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "anfibios", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptiles", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "vida marina", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "insectos", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "flores", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "otras plantas", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "fruta", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "verduras y hortalizas", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "cocido / preparado", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiático", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "mariscos", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "dulces y dulces", - "order": 46 + "order": 47 }, { "key": "drink", "message": "bebida", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "vajilla", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globos y mapas", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "ubicaciones geográficas", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "edificios", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "edificios religiosos", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "otros lugares", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "transporte terrestre", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "transporte de agua", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "transporte aéreo", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "hora", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "clima", - "order": 59 + "order": 60 }, { "key": "event", "message": "eventos y días festivos", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "medallas de premio", - "order": 61 + "order": 62 }, { "key": "sport", "message": "deportes", - "order": 62 + "order": 63 }, { "key": "game", "message": "juegos y pasatiempos", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "artes y oficios", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "ropa", - "order": 65 + "order": 66 }, { "key": "sound", "message": "sonido", - "order": 66 + "order": 67 }, { "key": "music", "message": "música", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "instrumentos musicales", - "order": 68 + "order": 69 }, { "key": "phone", "message": "teléfono", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computadora", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "luz, película y vídeo", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "libros & papel", - "order": 72 + "order": 73 }, { "key": "money", "message": "dinero", - "order": 73 + "order": 74 }, { "key": "mail", "message": "correo", - "order": 74 + "order": 75 }, { "key": "writing", "message": "escrito", - "order": 75 + "order": 76 }, { "key": "office", "message": "suministros de oficina", - "order": 76 + "order": 77 }, { "key": "lock", "message": "bloquear y llaves", - "order": 77 + "order": 78 }, { "key": "tool", "message": "herramientas", - "order": 78 + "order": 79 }, { "key": "science", "message": "equipos de ciencia", - "order": 79 + "order": 80 }, { "key": "medical", "message": "médico", - "order": 80 + "order": 81 }, { "key": "household", "message": "artículos del hogar", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "otros objetos", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "señales de transporte", - "order": 83 + "order": 84 }, { "key": "warning", "message": "símbolos de advertencia", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "flechas", - "order": 85 + "order": 86 }, { "key": "religion", "message": "símbolos religiosos", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "signos del zodiaco", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "símbolos de audio y vídeo", - "order": 88 + "order": 89 }, { "key": "gender", "message": "signos de género", - "order": 89 + "order": 90 }, { "key": "math", "message": "símbolos matemáticos", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "puntuación", - "order": 91 + "order": 92 }, { "key": "currency", "message": "monedas", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "otros símbolos", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "caracteres del teclado", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "símbolos alfanuméricos", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "formas y colores", - "order": 96 + "order": 97 }, { "key": "flag", "message": "otras banderas", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "banderas del país", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "banderas de subdivisión", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/es/messages.raw.json b/packages/data/es/messages.raw.json index 7e9752df..02ade479 100644 --- a/packages/data/es/messages.raw.json +++ b/packages/data/es/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "tono de piel claro" + "key": "dark", + "message": "tono de piel oscuro" }, { - "key": "medium-light", - "message": "tono de piel medio claro" + "key": "light", + "message": "tono de piel claro" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "tono de piel medio-oscuro" }, { - "key": "dark", - "message": "tono de piel oscuro" + "key": "medium-light", + "message": "tono de piel medio claro" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "caras de mono", "order": 13 }, + { + "key": "heart", + "message": "corazones", + "order": 14 + }, { "key": "emotion", "message": "emociones", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "dedos abiertos", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "signos de mano", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "señalando con el dedo", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "dedos cerrados", - "order": 18 + "order": 19 }, { "key": "hands", "message": "manos", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "apoyos de mano", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "partes del cuerpo", - "order": 21 + "order": 22 }, { "key": "person", "message": "personas", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gestos", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roles y carreras", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasía", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "actividades", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "atletismo", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "descansando", - "order": 28 + "order": 29 }, { "key": "family", "message": "familia", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "símbolos de la gente", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "tonos de piel", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "estilos de cabello", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mamíferos", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "aves", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "anfibios", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptiles", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "vida marina", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "insectos", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "flores", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "otras plantas", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "fruta", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "verduras y hortalizas", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "cocido / preparado", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiático", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "mariscos", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "dulces y dulces", - "order": 46 + "order": 47 }, { "key": "drink", "message": "bebida", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "vajilla", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globos y mapas", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "ubicaciones geográficas", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "edificios", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "edificios religiosos", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "otros lugares", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "transporte terrestre", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "transporte de agua", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "transporte aéreo", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "hora", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "clima", - "order": 59 + "order": 60 }, { "key": "event", "message": "eventos y días festivos", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "medallas de premio", - "order": 61 + "order": 62 }, { "key": "sport", "message": "deportes", - "order": 62 + "order": 63 }, { "key": "game", "message": "juegos y pasatiempos", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "artes y oficios", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "ropa", - "order": 65 + "order": 66 }, { "key": "sound", "message": "sonido", - "order": 66 + "order": 67 }, { "key": "music", "message": "música", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "instrumentos musicales", - "order": 68 + "order": 69 }, { "key": "phone", "message": "teléfono", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computadora", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "luz, película y vídeo", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "libros & papel", - "order": 72 + "order": 73 }, { "key": "money", "message": "dinero", - "order": 73 + "order": 74 }, { "key": "mail", "message": "correo", - "order": 74 + "order": 75 }, { "key": "writing", "message": "escrito", - "order": 75 + "order": 76 }, { "key": "office", "message": "suministros de oficina", - "order": 76 + "order": 77 }, { "key": "lock", "message": "bloquear y llaves", - "order": 77 + "order": 78 }, { "key": "tool", "message": "herramientas", - "order": 78 + "order": 79 }, { "key": "science", "message": "equipos de ciencia", - "order": 79 + "order": 80 }, { "key": "medical", "message": "médico", - "order": 80 + "order": 81 }, { "key": "household", "message": "artículos del hogar", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "otros objetos", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "señales de transporte", - "order": 83 + "order": 84 }, { "key": "warning", "message": "símbolos de advertencia", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "flechas", - "order": 85 + "order": 86 }, { "key": "religion", "message": "símbolos religiosos", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "signos del zodiaco", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "símbolos de audio y vídeo", - "order": 88 + "order": 89 }, { "key": "gender", "message": "signos de género", - "order": 89 + "order": 90 }, { "key": "math", "message": "símbolos matemáticos", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "puntuación", - "order": 91 + "order": 92 }, { "key": "currency", "message": "monedas", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "otros símbolos", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "caracteres del teclado", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "símbolos alfanuméricos", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "formas y colores", - "order": 96 + "order": 97 }, { "key": "flag", "message": "otras banderas", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "banderas del país", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "banderas de subdivisión", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/et/messages.raw.json b/packages/data/et/messages.raw.json index a50e7e25..2299bfee 100644 --- a/packages/data/et/messages.raw.json +++ b/packages/data/et/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "kerge nahatoon" + "key": "dark", + "message": "tume nahatoon" }, { - "key": "medium-light", - "message": "keskmise valgusega nahatoon" + "key": "light", + "message": "kerge nahatoon" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "keskmine-tume nahatoon" }, { - "key": "dark", - "message": "tume nahatoon" + "key": "medium-light", + "message": "keskmise valgusega nahatoon" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "ahv nägu", "order": 13 }, + { + "key": "heart", + "message": "südamed", + "order": 14 + }, { "key": "emotion", "message": "emotsioone", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "sõrmed avatud", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "käe märgid", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "näpuga osutamine", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "sõrmed suletud", - "order": 18 + "order": 19 }, { "key": "hands", "message": "käed", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "käsi rekvisiidid", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "kehaosad", - "order": 21 + "order": 22 }, { "key": "person", "message": "inimesed", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "žestid", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "rollid ja karjäär", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantaasia", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "tegevuse", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "kergejõustik", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "puhkavad", - "order": 28 + "order": 29 }, { "key": "family", "message": "perekond", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "inimeste sümbolid", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "naha toonid", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "juuste stiilid", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "imetajad", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "linnud", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "kahepaiksed", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "roomajad", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "mereelustikule", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "vigu", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "lilled", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "muud taimed", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "puu", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "köögiviljad", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "keedetud / valmis", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "aasia", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "mereannid", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "maiustused ja kommid", - "order": 46 + "order": 47 }, { "key": "drink", "message": "juua", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "nõud", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "gloobused ja kaardid", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geograafilised asukohad", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "hooned", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religioossed hooned", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "teistes kohtades", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "maatransport", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "veetransport", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "õhutransport", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotellis", - "order": 57 + "order": 58 }, { "key": "time", "message": "aeg", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "weather", - "order": 59 + "order": 60 }, { "key": "event", "message": "üritused ja pühad", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "auhinna medalid", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sport", - "order": 62 + "order": 63 }, { "key": "game", "message": "mängud ja hobid", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "kunst ja käsitöö", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "riided", - "order": 65 + "order": 66 }, { "key": "sound", "message": "heli", - "order": 66 + "order": 67 }, { "key": "music", "message": "muusika", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "muusikariistad", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "arvuti", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "valgus, film ja video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "raamatud ja paber", - "order": 72 + "order": 73 }, { "key": "money", "message": "raha", - "order": 73 + "order": 74 }, { "key": "mail", "message": "mail", - "order": 74 + "order": 75 }, { "key": "writing", "message": "kirjalikult", - "order": 75 + "order": 76 }, { "key": "office", "message": "kontoritarbed", - "order": 76 + "order": 77 }, { "key": "lock", "message": "lukustamine ja klahvid", - "order": 77 + "order": 78 }, { "key": "tool", "message": "tööriistad", - "order": 78 + "order": 79 }, { "key": "science", "message": "teadusseadmed", - "order": 79 + "order": 80 }, { "key": "medical", "message": "meditsiini", - "order": 80 + "order": 81 }, { "key": "household", "message": "kodutarbed", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "muud objektid", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transpordi märgid", - "order": 83 + "order": 84 }, { "key": "warning", "message": "hoiatussümbolid", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "nooled", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religioossed sümbolid", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "sodiaagimärgid", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "heli- ja videosümbolid", - "order": 88 + "order": 89 }, { "key": "gender", "message": "sootunnused", - "order": 89 + "order": 90 }, { "key": "math", "message": "matemaatika sümbolid", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "kirjavahemärgid", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valuutade", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "muud sümbolid", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "klahvistiku märgid", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "tähtnumbrilised sümbolid", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "kujundid ja värvid", - "order": 96 + "order": 97 }, { "key": "flag", "message": "muud lipud", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "riigi lipud", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "alarajooni lipud", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/fi/messages.raw.json b/packages/data/fi/messages.raw.json index 4ed2f2b2..c5d79a77 100644 --- a/packages/data/fi/messages.raw.json +++ b/packages/data/fi/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "vaalea ihon sävy" + "key": "dark", + "message": "tumma ihon sävy" }, { - "key": "medium-light", - "message": "keskikevyt ihon sävy" + "key": "light", + "message": "vaalea ihon sävy" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "keski-tumma ihon sävy" }, { - "key": "dark", - "message": "tumma ihon sävy" + "key": "medium-light", + "message": "keskikevyt ihon sävy" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "apinan kasvot", "order": 13 }, + { + "key": "heart", + "message": "sydämet", + "order": 14 + }, { "key": "emotion", "message": "tunteita", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "sormet auki", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "käsimerkit", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "sormella osoittaminen", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "sormet kiinni", - "order": 18 + "order": 19 }, { "key": "hands", "message": "käsissä", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "käsi rekvisiitta", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "ruumiinosat", - "order": 21 + "order": 22 }, { "key": "person", "message": "henkilöt", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "eleitä", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roolit & urat", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasia", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "aktiviteetit", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "yleisurheilu", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "lepo", - "order": 28 + "order": 29 }, { "key": "family", "message": "perhe", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "ihmiset-symbolit", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "ihon sävyt", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "hiustyylit", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "nisäkkäät", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "linnut", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "sammakkoeläimet", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "matelijat", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "meren eliöstö", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "vikoja", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "kukkia", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "muut kasvit", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "hedelmät", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "vihannekset", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "keitetyt / valmistetut", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "aasian", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "meren antimet", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "makeiset & karkit", - "order": 46 + "order": 47 }, { "key": "drink", "message": "juoma", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "astiat", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "maapallot & kartat", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "maantieteelliset sijainnit", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "rakennukset", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "uskonnolliset rakennukset", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "muut paikat", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "maakuljetukset", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "veden kuljetus", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "ilmakuljetukset", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotelli", - "order": 57 + "order": 58 }, { "key": "time", "message": "aika", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "sää", - "order": 59 + "order": 60 }, { "key": "event", "message": "tapahtumat & lomat", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "mitalien myöntäminen", - "order": 61 + "order": 62 }, { "key": "sport", "message": "urheilu", - "order": 62 + "order": 63 }, { "key": "game", "message": "pelit & harrastukset", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "taide & käsityöt", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "vaatteet", - "order": 65 + "order": 66 }, { "key": "sound", "message": "ääni", - "order": 66 + "order": 67 }, { "key": "music", "message": "musiikki", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "soittimet", - "order": 68 + "order": 69 }, { "key": "phone", "message": "puhelin", - "order": 69 + "order": 70 }, { "key": "computer", "message": "tietokone", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "valo, elokuva & video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "kirjat & paperi", - "order": 72 + "order": 73 }, { "key": "money", "message": "rahaa", - "order": 73 + "order": 74 }, { "key": "mail", "message": "sähköposti", - "order": 74 + "order": 75 }, { "key": "writing", "message": "kirjoitetaan", - "order": 75 + "order": 76 }, { "key": "office", "message": "toimistotarvikkeet", - "order": 76 + "order": 77 }, { "key": "lock", "message": "lukko & avaimet", - "order": 77 + "order": 78 }, { "key": "tool", "message": "työkalut", - "order": 78 + "order": 79 }, { "key": "science", "message": "tiedelaitteet", - "order": 79 + "order": 80 }, { "key": "medical", "message": "lääketieteen", - "order": 80 + "order": 81 }, { "key": "household", "message": "taloustavarat", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "muut objektit", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "liikennemerkit", - "order": 83 + "order": 84 }, { "key": "warning", "message": "varoitussymbolit", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "nuolet", - "order": 85 + "order": 86 }, { "key": "religion", "message": "uskonnolliset symbolit", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "horoskooppi", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "ääni- ja videosymbolit", - "order": 88 + "order": 89 }, { "key": "gender", "message": "sukupuolimerkit", - "order": 89 + "order": 90 }, { "key": "math", "message": "matematiikan symbolit", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "välimerkit", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valuutat", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "muut symbolit", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "näppäimistön merkit", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "aakkosnumeeriset symbolit", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "muodot ja värit", - "order": 96 + "order": 97 }, { "key": "flag", "message": "muut liput", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "maaliput", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "osa-alueliput", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/fr/messages.raw.json b/packages/data/fr/messages.raw.json index 47b63e2e..263fff8c 100644 --- a/packages/data/fr/messages.raw.json +++ b/packages/data/fr/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "teint clair" + "key": "dark", + "message": "teint foncé" }, { - "key": "medium-light", - "message": "teint moyen-clair" + "key": "light", + "message": "teint clair" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "teint foncé moyen-foncé" }, { - "key": "dark", - "message": "teint foncé" + "key": "medium-light", + "message": "teint moyen-clair" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "visages de singe", "order": 13 }, + { + "key": "heart", + "message": "cœurs", + "order": 14 + }, { "key": "emotion", "message": "émotions", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "doigts ouverts", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "signes de la main", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "pointage du doigt", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "doigts fermés", - "order": 18 + "order": 19 }, { "key": "hands", "message": "mains", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "accessoires à main", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "parties du corps", - "order": 21 + "order": 22 }, { "key": "person", "message": "personnes", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gestes", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "rôles et carrières", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantaisie", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "activités", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "athlétisme", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "repos", - "order": 28 + "order": 29 }, { "key": "family", "message": "famille", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "symboles de personnes", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "tons de peau", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "styles de cheveux", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mammifères", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "oiseaux", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "amphibiens", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptiles", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "vie marine", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "insectes", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "fleurs", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "d’autres plantes", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "fruit", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "légumes", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "cuit / préparé", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiatique", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "fruit de mer", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "bonbons", - "order": 46 + "order": 47 }, { "key": "drink", "message": "boisson", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "vaisselle", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globes et cartes", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "emplacements géographiques", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "bâtiments", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "édifices religieux", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "d’autres endroits", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "transport terrestre", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "transport par eau", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "transport aérien", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hôtel", - "order": 57 + "order": 58 }, { "key": "time", "message": "temps", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "meteo", - "order": 59 + "order": 60 }, { "key": "event", "message": "événements et jours fériés", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "médailles de prix", - "order": 61 + "order": 62 }, { "key": "sport", "message": "des sports", - "order": 62 + "order": 63 }, { "key": "game", "message": "jeux et passe-temps", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "arts et métiers", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "vêtements", - "order": 65 + "order": 66 }, { "key": "sound", "message": "bruit", - "order": 66 + "order": 67 }, { "key": "music", "message": "musique", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "instruments de musique", - "order": 68 + "order": 69 }, { "key": "phone", "message": "téléphone", - "order": 69 + "order": 70 }, { "key": "computer", "message": "ordinateur", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "lumière, film et vidéo", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "livres et papier", - "order": 72 + "order": 73 }, { "key": "money", "message": "argent", - "order": 73 + "order": 74 }, { "key": "mail", "message": "courrier", - "order": 74 + "order": 75 }, { "key": "writing", "message": "écrit", - "order": 75 + "order": 76 }, { "key": "office", "message": "fournitures de bureau", - "order": 76 + "order": 77 }, { "key": "lock", "message": "serrure & clés", - "order": 77 + "order": 78 }, { "key": "tool", "message": "outils", - "order": 78 + "order": 79 }, { "key": "science", "message": "équipement scientifique", - "order": 79 + "order": 80 }, { "key": "medical", "message": "médical", - "order": 80 + "order": 81 }, { "key": "household", "message": "articles ménagers", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "d’autres objets", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "panneaux de transport", - "order": 83 + "order": 84 }, { "key": "warning", "message": "symboles d’avertissement", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "flèches", - "order": 85 + "order": 86 }, { "key": "religion", "message": "symboles religieux", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "signes du zodiaque", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "symboles audio et vidéo", - "order": 88 + "order": 89 }, { "key": "gender", "message": "signes de genre", - "order": 89 + "order": 90 }, { "key": "math", "message": "symboles mathématiques", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "ponctuation", - "order": 91 + "order": 92 }, { "key": "currency", "message": "devises", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "d’autres symboles", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "caractères de clavier", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "symboles alphanumériques", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "formes et couleurs", - "order": 96 + "order": 97 }, { "key": "flag", "message": "autres drapeaux", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "drapeaux de pays", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "drapeaux de lotissement", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/hi/messages.raw.json b/packages/data/hi/messages.raw.json index c4060b52..eaa4169c 100644 --- a/packages/data/hi/messages.raw.json +++ b/packages/data/hi/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "हल्की त्वचा का रंग" + "key": "dark", + "message": "गहरे रंग की त्वचा" }, { - "key": "medium-light", - "message": "मध्यम-हल्की त्वचा का रंग" + "key": "light", + "message": "हल्की त्वचा का रंग" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "मध्यम-गहरा त्वचा टोन" }, { - "key": "dark", - "message": "गहरे रंग की त्वचा" + "key": "medium-light", + "message": "मध्यम-हल्की त्वचा का रंग" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "बंदर के चेहरे", "order": 13 }, + { + "key": "heart", + "message": "दिल", + "order": 14 + }, { "key": "emotion", "message": "भावनाएँ", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "उँगलियाँ खुलीं", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "हाथ के संकेत", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "उंगली उठाना", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "उँगलियाँ बंद", - "order": 18 + "order": 19 }, { "key": "hands", "message": "हाथ", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "हाथ सहारा", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "शरीर के अंग", - "order": 21 + "order": 22 }, { "key": "person", "message": "लोग", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "इशारों", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "भूमिकाएँ और करियर", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "कल्पना", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "गतिविधियाँ", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "व्यायाम", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "आराम", - "order": 28 + "order": 29 }, { "key": "family", "message": "परिवार", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "लोक प्रतीक", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "त्वचा का रंग", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "बाल शैलियाँ", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "स्तनधारियों", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "पक्षियों", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "उभयचर", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "सरीसृप", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "समुद्री जीवन", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "कीड़े", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "पुष्प", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "अन्य पौधे", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "फल", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "सब्ज़ियाँ", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "पका हुआ/तैयार", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "एशियाई", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "समुद्री भोजन", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "मिठाई और कैंडी", - "order": 46 + "order": 47 }, { "key": "drink", "message": "पीना", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "डिशवेयर", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "ग्लोब और मानचित्र", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "भौगोलिक स्थान", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "इमारतों", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "धार्मिक इमारतें", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "अन्य जगहें", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "भूमि परिवहन", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "जल परिवहन", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "वायु परिवहन", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "होटल", - "order": 57 + "order": 58 }, { "key": "time", "message": "समय", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "मौसम", - "order": 59 + "order": 60 }, { "key": "event", "message": "घटनाएँ एवं छुट्टियाँ", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "पुरस्कार पदक", - "order": 61 + "order": 62 }, { "key": "sport", "message": "खेल", - "order": 62 + "order": 63 }, { "key": "game", "message": "खेल और शौक", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "कला और शिल्प", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "कपड़े", - "order": 65 + "order": 66 }, { "key": "sound", "message": "आवाज़", - "order": 66 + "order": 67 }, { "key": "music", "message": "संगीत", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "संगीत वाद्ययंत्र", - "order": 68 + "order": 69 }, { "key": "phone", "message": "फ़ोन", - "order": 69 + "order": 70 }, { "key": "computer", "message": "कंप्यूटर", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "प्रकाश, फिल्म और वीडियो", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "किताबें और कागज", - "order": 72 + "order": 73 }, { "key": "money", "message": "धन", - "order": 73 + "order": 74 }, { "key": "mail", "message": "मेल", - "order": 74 + "order": 75 }, { "key": "writing", "message": "लिखना", - "order": 75 + "order": 76 }, { "key": "office", "message": "कार्यालय की आपूर्ति", - "order": 76 + "order": 77 }, { "key": "lock", "message": "ताला और चाभियाँ", - "order": 77 + "order": 78 }, { "key": "tool", "message": "औजार", - "order": 78 + "order": 79 }, { "key": "science", "message": "विज्ञान उपकरण", - "order": 79 + "order": 80 }, { "key": "medical", "message": "चिकित्सा", - "order": 80 + "order": 81 }, { "key": "household", "message": "घरेलू सामान", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "अन्य वस्तुएं", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "परिवहन संकेत", - "order": 83 + "order": 84 }, { "key": "warning", "message": "चेतावनी प्रतीक", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "तीर", - "order": 85 + "order": 86 }, { "key": "religion", "message": "धार्मिक प्रतीक", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "राशि चक्र के संकेत", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "ऑडियो और वीडियो प्रतीक", - "order": 88 + "order": 89 }, { "key": "gender", "message": "लिंग चिह्न", - "order": 89 + "order": 90 }, { "key": "math", "message": "गणित के प्रतीक", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "विराम चिह्न", - "order": 91 + "order": 92 }, { "key": "currency", "message": "मुद्राओं", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "अन्य प्रतीक", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "कीपैड अक्षर", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "अल्फ़ान्यूमेरिक प्रतीक", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "आकार और रंग", - "order": 96 + "order": 97 }, { "key": "flag", "message": "अन्य झंडे", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "देश के झंडे", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "उपखंड झंडे", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/hu/messages.raw.json b/packages/data/hu/messages.raw.json index 3613c584..a5a52806 100644 --- a/packages/data/hu/messages.raw.json +++ b/packages/data/hu/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "könnyű bőrszín" + "key": "dark", + "message": "sötét bőrszín" }, { - "key": "medium-light", - "message": "közepesen világos bőrszín" + "key": "light", + "message": "könnyű bőrszín" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "közepesen sötét bőrszín" }, { - "key": "dark", - "message": "sötét bőrszín" + "key": "medium-light", + "message": "közepesen világos bőrszín" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "majom arcok", "order": 13 }, + { + "key": "heart", + "message": "szívek", + "order": 14 + }, { "key": "emotion", "message": "érzelmek", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "ujjak nyitva", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "kéz jelek", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "ujjmutatás", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "ujjak zárva", - "order": 18 + "order": 19 }, { "key": "hands", "message": "kezét", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "kézi kellékek", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "testrészek", - "order": 21 + "order": 22 }, { "key": "person", "message": "emberek", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gesztusok", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "szerepek és karrierek", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantázia", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "tevékenységek", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "atlétika", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "pihenő", - "order": 28 + "order": 29 }, { "key": "family", "message": "család", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "személyek szimbólumai", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "bőrtónusok", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "hajstílusok", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "emlősök", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "madarak", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "kétéltűek", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "hüllők", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "tengeri élet", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "hibákat", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "virágok", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "egyéb növények", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "gyümölcs", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "zöldségek", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "főtt / elkészített", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "ázsiai", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "tengeri élelmiszer", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "édességek és édességek", - "order": 46 + "order": 47 }, { "key": "drink", "message": "ital", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "edények", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "földgömbök és térképek", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "földrajzi helyek", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "épületek", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "vallási épületek", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "más helyeken", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "földi szállítás", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "vízi szállítás", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "légi közlekedés", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "szálloda", - "order": 57 + "order": 58 }, { "key": "time", "message": "idő", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "időjárás", - "order": 59 + "order": 60 }, { "key": "event", "message": "események és ünnepek", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "érmek odaítélése", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sport", - "order": 62 + "order": 63 }, { "key": "game", "message": "játékok és hobbik", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "művészetek és kézművesség", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "ruházat", - "order": 65 + "order": 66 }, { "key": "sound", "message": "hang", - "order": 66 + "order": 67 }, { "key": "music", "message": "zenei", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "hangszerek", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "számítógépes", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "fény, film & videó", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "könyvek és papír", - "order": 72 + "order": 73 }, { "key": "money", "message": "pénzt", - "order": 73 + "order": 74 }, { "key": "mail", "message": "posta", - "order": 74 + "order": 75 }, { "key": "writing", "message": "írás", - "order": 75 + "order": 76 }, { "key": "office", "message": "irodaszerek", - "order": 76 + "order": 77 }, { "key": "lock", "message": "zárolás és billentyűk", - "order": 77 + "order": 78 }, { "key": "tool", "message": "eszközök", - "order": 78 + "order": 79 }, { "key": "science", "message": "tudományos berendezések", - "order": 79 + "order": 80 }, { "key": "medical", "message": "orvosi", - "order": 80 + "order": 81 }, { "key": "household", "message": "háztartási cikkek", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "egyéb objektumok", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "közlekedési táblák", - "order": 83 + "order": 84 }, { "key": "warning", "message": "figyelmeztető szimbólumok", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "nyilak", - "order": 85 + "order": 86 }, { "key": "religion", "message": "vallási szimbólumok", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "állatöv idomár jelek", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "audio & video szimbólumok", - "order": 88 + "order": 89 }, { "key": "gender", "message": "nemi jelek", - "order": 89 + "order": 90 }, { "key": "math", "message": "matematikai szimbólumok", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "Írásjelek", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valuták", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "egyéb szimbólumok", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "billentyűzet karakterek", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alfanumerikus szimbólumok", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "alakzatok és színek", - "order": 96 + "order": 97 }, { "key": "flag", "message": "egyéb zászlók", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "ország zászlók", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "felosztási jelzők", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/it/messages.raw.json b/packages/data/it/messages.raw.json index 02b48fd7..e18810cc 100644 --- a/packages/data/it/messages.raw.json +++ b/packages/data/it/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "tono della pelle chiaro" + "key": "dark", + "message": "tono della pelle scuro" }, { - "key": "medium-light", - "message": "tono della pelle medio-chiaro" + "key": "light", + "message": "tono della pelle chiaro" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "tono della pelle medio-scuro" }, { - "key": "dark", - "message": "tono della pelle scuro" + "key": "medium-light", + "message": "tono della pelle medio-chiaro" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "volti di scimmia", "order": 13 }, + { + "key": "heart", + "message": "cuori", + "order": 14 + }, { "key": "emotion", "message": "emozioni", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "dita aperte", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "segni a mano", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "puntamento del dito", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "dita chiuse", - "order": 18 + "order": 19 }, { "key": "hands", "message": "mani", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "puntelli a mano", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "parti del corpo", - "order": 21 + "order": 22 }, { "key": "person", "message": "persone", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gesti", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "ruoli e carriere", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasia", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "attività", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "atletica", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "riposo", - "order": 28 + "order": 29 }, { "key": "family", "message": "famiglia", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "persone simboli", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "toni della pelle", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "stili di capelli", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mammiferi", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "uccelli", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "anfibi", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "rettili", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "vita marina", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "insetti", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "fiori", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "altre piante", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "frutta", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "verdure", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "cotto / preparato", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiatico", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "pesce", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "dolci e caramelle", - "order": 46 + "order": 47 }, { "key": "drink", "message": "bere", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "stoviglie", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globi e mappe", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "posizioni geografiche", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "edifici", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "edifici religiosi", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "altri luoghi", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "trasporto via terra", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "trasporto dell'acqua", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "trasporto aereo", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "albergo", - "order": 57 + "order": 58 }, { "key": "time", "message": "ora", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "del tempo", - "order": 59 + "order": 60 }, { "key": "event", "message": "eventi & vacanze", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "medaglie premio", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sport", - "order": 62 + "order": 63 }, { "key": "game", "message": "giochi & hobby", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "arti & mestieri", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "abbigliamento", - "order": 65 + "order": 66 }, { "key": "sound", "message": "suono", - "order": 66 + "order": 67 }, { "key": "music", "message": "musica", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "strumenti musicali", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefono", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "luce, film e video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "libri e carta", - "order": 72 + "order": 73 }, { "key": "money", "message": "soldi", - "order": 73 + "order": 74 }, { "key": "mail", "message": "posta", - "order": 74 + "order": 75 }, { "key": "writing", "message": "scrittura", - "order": 75 + "order": 76 }, { "key": "office", "message": "forniture per ufficio", - "order": 76 + "order": 77 }, { "key": "lock", "message": "blocco e chiavi", - "order": 77 + "order": 78 }, { "key": "tool", "message": "strumenti", - "order": 78 + "order": 79 }, { "key": "science", "message": "attrezzature scientifiche", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medicale", - "order": 80 + "order": 81 }, { "key": "household", "message": "articoli", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "altri oggetti", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "segnali di trasporto", - "order": 83 + "order": 84 }, { "key": "warning", "message": "simboli di avviso", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "frecce", - "order": 85 + "order": 86 }, { "key": "religion", "message": "simboli religiosi", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "segni zodiacali", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "simboli audio e video", - "order": 88 + "order": 89 }, { "key": "gender", "message": "segni di genere", - "order": 89 + "order": 90 }, { "key": "math", "message": "simboli matematici", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "punteggiatura", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valute", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "altri simboli", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "caratteri della tastiera", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "simboli alfanumerici", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "forme e colori", - "order": 96 + "order": 97 }, { "key": "flag", "message": "altre bandiere", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "bandiere di campagna", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "bandiere di suddivisione", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/ja/messages.raw.json b/packages/data/ja/messages.raw.json index 3d247e83..79393e0c 100644 --- a/packages/data/ja/messages.raw.json +++ b/packages/data/ja/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "明るい肌のトーン" + "key": "dark", + "message": "暗い肌のトーン" }, { - "key": "medium-light", - "message": "中光肌調" + "key": "light", + "message": "明るい肌のトーン" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "中暗い肌のトーン" }, { - "key": "dark", - "message": "暗い肌のトーン" + "key": "medium-light", + "message": "中光肌調" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "猿の顔", "order": 13 }, + { + "key": "heart", + "message": "ハート", + "order": 14 + }, { "key": "emotion", "message": "感情", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "指が開いている", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "手の看板", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "指差し", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "指が閉じた", - "order": 18 + "order": 19 }, { "key": "hands", "message": "手", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "手の小道具", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "身体部分", - "order": 21 + "order": 22 }, { "key": "person", "message": "人", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "ジェスチャー", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "役割とキャリア", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "ファンタジー", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "有効化", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "陸上 競技", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "休憩", - "order": 28 + "order": 29 }, { "key": "family", "message": "家族", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "人々のシンボル", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "スキントーン", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "ヘアスタイル", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "哺乳 類", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "鳥", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "両生 類", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "爬虫類", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "海洋生物", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "バグ", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "花", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "その他の植物", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "フルーツ", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "野菜", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "調理済み / 準備済み", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "アジア", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "シーフード", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "お菓子とお菓子", - "order": 46 + "order": 47 }, { "key": "drink", "message": "飲む", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "食器", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "地球儀と地図", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "地理的な場所", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "建物", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "宗教的な建物", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "その他の場所", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "地上輸送", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "水輸送", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "航空輸送", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "ホテル", - "order": 57 + "order": 58 }, { "key": "time", "message": "時間", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "天気", - "order": 59 + "order": 60 }, { "key": "event", "message": "イベントと休日", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "メダルを授与する", - "order": 61 + "order": 62 }, { "key": "sport", "message": "スポーツ", - "order": 62 + "order": 63 }, { "key": "game", "message": "ゲームと趣味", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "芸術・工芸", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "服", - "order": 65 + "order": 66 }, { "key": "sound", "message": "音", - "order": 66 + "order": 67 }, { "key": "music", "message": "ミュージック", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "楽器", - "order": 68 + "order": 69 }, { "key": "phone", "message": "電話番号", - "order": 69 + "order": 70 }, { "key": "computer", "message": "コンピュータ", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "光、フィルム、ビデオ", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "本と紙", - "order": 72 + "order": 73 }, { "key": "money", "message": "資金", - "order": 73 + "order": 74 }, { "key": "mail", "message": "郵便", - "order": 74 + "order": 75 }, { "key": "writing", "message": "書き込み", - "order": 75 + "order": 76 }, { "key": "office", "message": "事務用品", - "order": 76 + "order": 77 }, { "key": "lock", "message": "ロックとキー", - "order": 77 + "order": 78 }, { "key": "tool", "message": "ツール", - "order": 78 + "order": 79 }, { "key": "science", "message": "科学機器", - "order": 79 + "order": 80 }, { "key": "medical", "message": "メディカル", - "order": 80 + "order": 81 }, { "key": "household", "message": "家庭用品", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "その他のオブジェクト", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "輸送標識", - "order": 83 + "order": 84 }, { "key": "warning", "message": "警告記号", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "矢印", - "order": 85 + "order": 86 }, { "key": "religion", "message": "宗教的シンボル", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "干支", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "オーディオとビデオのシンボル", - "order": 88 + "order": 89 }, { "key": "gender", "message": "ジェンダーサイン", - "order": 89 + "order": 90 }, { "key": "math", "message": "数学記号", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "句読点", - "order": 91 + "order": 92 }, { "key": "currency", "message": "通貨", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "その他の記号", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "キーパッド文字", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "英数字記号", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "図形と色", - "order": 96 + "order": 97 }, { "key": "flag", "message": "その他のフラグ", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "国旗", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "サブディビジョン フラグ", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/ko/messages.raw.json b/packages/data/ko/messages.raw.json index c386953f..3fec1489 100644 --- a/packages/data/ko/messages.raw.json +++ b/packages/data/ko/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "밝은 피부 톤" + "key": "dark", + "message": "어두운 피부 톤" }, { - "key": "medium-light", - "message": "중간 빛 피부 톤" + "key": "light", + "message": "밝은 피부 톤" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "미디엄 다크 스킨 톤" }, { - "key": "dark", - "message": "어두운 피부 톤" + "key": "medium-light", + "message": "중간 빛 피부 톤" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "원숭이 얼굴", "order": 13 }, + { + "key": "heart", + "message": "마음", + "order": 14 + }, { "key": "emotion", "message": "감정", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "손가락 열기", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "손 표지판", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "손가락 포인팅", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "손가락 닫기", - "order": 18 + "order": 19 }, { "key": "hands", "message": "손", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "손 소품", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "신체 부위", - "order": 21 + "order": 22 }, { "key": "person", "message": "사람들", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "제스처", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "역할 및 경력", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "판타지", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "액티비티", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "육상", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "휴식", - "order": 28 + "order": 29 }, { "key": "family", "message": "가족", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "사람 기호", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "피부 톤", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "헤어 스타일", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "포유류", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "조류", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "양서류", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "파충류", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "해양 생물", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "버그", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "꽃", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "기타 식물", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "과일", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "야채", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "조리 / 준비", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "아시아", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "해산물", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "과자 및 사탕", - "order": 46 + "order": 47 }, { "key": "drink", "message": "음료", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "식기", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "글로브 와지도", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "지리적 위치", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "건물", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "종교 건물", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "기타 장소", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "지상 교통", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "물 운송", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "항공 운송", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "호텔", - "order": 57 + "order": 58 }, { "key": "time", "message": "시간", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "날씨", - "order": 59 + "order": 60 }, { "key": "event", "message": "이벤트 및 공휴일", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "수상 메달", - "order": 61 + "order": 62 }, { "key": "sport", "message": "스포츠", - "order": 62 + "order": 63 }, { "key": "game", "message": "게임 및 취미", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "예술과 공예품", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "의류", - "order": 65 + "order": 66 }, { "key": "sound", "message": "소리", - "order": 66 + "order": 67 }, { "key": "music", "message": "음악", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "악기", - "order": 68 + "order": 69 }, { "key": "phone", "message": "전화", - "order": 69 + "order": 70 }, { "key": "computer", "message": "컴퓨터", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "빛, 영화 및 비디오", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "책과 종이", - "order": 72 + "order": 73 }, { "key": "money", "message": "돈을", - "order": 73 + "order": 74 }, { "key": "mail", "message": "메일", - "order": 74 + "order": 75 }, { "key": "writing", "message": "쓰기", - "order": 75 + "order": 76 }, { "key": "office", "message": "사무용품", - "order": 76 + "order": 77 }, { "key": "lock", "message": "잠금 및 키", - "order": 77 + "order": 78 }, { "key": "tool", "message": "도구", - "order": 78 + "order": 79 }, { "key": "science", "message": "과학 장비", - "order": 79 + "order": 80 }, { "key": "medical", "message": "의료", - "order": 80 + "order": 81 }, { "key": "household", "message": "가정용품", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "기타 개체", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "교통 표지판", - "order": 83 + "order": 84 }, { "key": "warning", "message": "경고 기호", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "화살", - "order": 85 + "order": 86 }, { "key": "religion", "message": "종교적 상징", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "조디악 징후", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "오디오 및 비디오 기호", - "order": 88 + "order": 89 }, { "key": "gender", "message": "성별 징후", - "order": 89 + "order": 90 }, { "key": "math", "message": "수학 기호", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "문장 부호", - "order": 91 + "order": 92 }, { "key": "currency", "message": "통화", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "기타 기호", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "키패드 문자", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "거형 기호", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "모양 및 색상", - "order": 96 + "order": 97 }, { "key": "flag", "message": "기타 플래그", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "국가 플래그", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "세분화 플래그", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/lt/messages.raw.json b/packages/data/lt/messages.raw.json index c9a1806c..6ee552ad 100644 --- a/packages/data/lt/messages.raw.json +++ b/packages/data/lt/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "lengvas odos tonas" + "key": "dark", + "message": "tamsios odos tonas" }, { - "key": "medium-light", - "message": "vidutinio apšvietimo odos tonas" + "key": "light", + "message": "lengvas odos tonas" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "vidutinio tamsumo odos tonas" }, { - "key": "dark", - "message": "tamsios odos tonas" + "key": "medium-light", + "message": "vidutinio apšvietimo odos tonas" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "beždžionės veidai", "order": 13 }, + { + "key": "heart", + "message": "širdyse", + "order": 14 + }, { "key": "emotion", "message": "emocijas", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "pirštai atidaryti", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "rankų ženklai", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "pirštu nukreiptas", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "uždaryti pirštai", - "order": 18 + "order": 19 }, { "key": "hands", "message": "rankos", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "rankiniai rekvizitai", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "kūno dalys", - "order": 21 + "order": 22 }, { "key": "person", "message": "žmonių", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gestai", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "vaidmenys ir karjera", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantazija", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "veikla", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "lengvosios atletikos", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "poilsio", - "order": 28 + "order": 29 }, { "key": "family", "message": "šeima", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "žmonių simboliai", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "odos tonai", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "plaukų stiliai", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "žinduoliai", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "paukščių", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "varliagyvių", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "ropliai", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "jūrų gyvybė", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "klaidas", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "gėlės", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "kiti augalai", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "vaisių", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "daržovių", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "virti / paruošti", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "azijos", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "jūros gėrybių", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "saldainiai ir saldainiai", - "order": 46 + "order": 47 }, { "key": "drink", "message": "gėrimas", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "indų indai", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "gaubliai ir žemėlapiai", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geografinės vietovės", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "pastatų", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religiniai pastatai", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "kitos vietos", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "antžeminis transportas", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "vandens transportavimas", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "oro transportas", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "viešbutis", - "order": 57 + "order": 58 }, { "key": "time", "message": "laikas", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "oras", - "order": 59 + "order": 60 }, { "key": "event", "message": "renginiai ir šventės", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "apdovanojimų medaliai", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sportas", - "order": 62 + "order": 63 }, { "key": "game", "message": "žaidimai ir pomėgiai", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "menas ir amatai", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "drabužių", - "order": 65 + "order": 66 }, { "key": "sound", "message": "garso", - "order": 66 + "order": 67 }, { "key": "music", "message": "muzikos", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "muzikos instrumentai", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefono", - "order": 69 + "order": 70 }, { "key": "computer", "message": "kompiuterio", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "šviesa, filmas ir video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "knygos ir popierius", - "order": 72 + "order": 73 }, { "key": "money", "message": "pinigų", - "order": 73 + "order": 74 }, { "key": "mail", "message": "pašto", - "order": 74 + "order": 75 }, { "key": "writing", "message": "raštu", - "order": 75 + "order": 76 }, { "key": "office", "message": "biuro reikmenys", - "order": 76 + "order": 77 }, { "key": "lock", "message": "užraktas ir klavišai", - "order": 77 + "order": 78 }, { "key": "tool", "message": "įrankiai", - "order": 78 + "order": 79 }, { "key": "science", "message": "mokslo įranga", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medicinos", - "order": 80 + "order": 81 }, { "key": "household", "message": "namų apyvokos daiktai", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "kiti objektai", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transportavimo ženklai", - "order": 83 + "order": 84 }, { "key": "warning", "message": "įspėjamieji simboliai", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "rodykles", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religiniai simboliai", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "zodiako ženklai", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "garso ir vaizdo simboliai", - "order": 88 + "order": 89 }, { "key": "gender", "message": "lyčių ženklai", - "order": 89 + "order": 90 }, { "key": "math", "message": "matematiniai simboliai", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "skyrybos", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valiutomis", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "kiti simboliai", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "klaviatūros simboliai", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "raidiniai ir skaitiniai simboliai", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "figūros ir spalvos", - "order": 96 + "order": 97 }, { "key": "flag", "message": "kitos vėliavėlės", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "šalių vėliavos", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "poskyrio vėliavėlės", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/ms/messages.raw.json b/packages/data/ms/messages.raw.json index 4f535e26..81080945 100644 --- a/packages/data/ms/messages.raw.json +++ b/packages/data/ms/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "nada kulit cahaya" + "key": "dark", + "message": "nada kulit gelap" }, { - "key": "medium-light", - "message": "nada kulit ringan" + "key": "light", + "message": "nada kulit cahaya" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "nada kulit sederhana-gelap" }, { - "key": "dark", - "message": "nada kulit gelap" + "key": "medium-light", + "message": "nada kulit ringan" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "wajah monyet", "order": 13 }, + { + "key": "heart", + "message": "hati", + "order": 14 + }, { "key": "emotion", "message": "emosi", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "jari terbuka", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "tanda tangan", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "menuding jari", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "jari ditutup", - "order": 18 + "order": 19 }, { "key": "hands", "message": "tangan", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "prop tangan", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "bahagian badan", - "order": 21 + "order": 22 }, { "key": "person", "message": "orang", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gerak isyarat", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "peranan & kerjaya", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasi", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "aktiviti", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "olahraga", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "berehat", - "order": 28 + "order": 29 }, { "key": "family", "message": "keluarga", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "simbol orang", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "nada kulit", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "gaya rambut", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mamalia", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "burung", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "amfbia", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptilia", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "hidupan laut", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "pepijat", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "bunga", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "tumbuh-tumbuhan lain", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "buah", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "sayur", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "dimasak / disediakan", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asia", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "makanan laut", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "gula-gula", - "order": 46 + "order": 47 }, { "key": "drink", "message": "minuman", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "perisian basuh", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "glob & peta", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "lokasi geografi", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "bangunan", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "bangunan agama", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "tempat-tempat lain", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "pengangkutan darat", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "pengangkutan air", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "pengangkutan udara", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "masa", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "cuaca", - "order": 59 + "order": 60 }, { "key": "event", "message": "acara & cuti", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "pingat anugerah", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sukan", - "order": 62 + "order": 63 }, { "key": "game", "message": "permainan & hobi", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "seni & kraf", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "pakaian", - "order": 65 + "order": 66 }, { "key": "sound", "message": "bunyi", - "order": 66 + "order": 67 }, { "key": "music", "message": "muzik", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "alat muzik", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "komputer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "cahaya, filem & video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "buku & kertas", - "order": 72 + "order": 73 }, { "key": "money", "message": "wang", - "order": 73 + "order": 74 }, { "key": "mail", "message": "mel", - "order": 74 + "order": 75 }, { "key": "writing", "message": "secara bertulis", - "order": 75 + "order": 76 }, { "key": "office", "message": "bekalan pejabat", - "order": 76 + "order": 77 }, { "key": "lock", "message": "kunci & kekunci", - "order": 77 + "order": 78 }, { "key": "tool", "message": "alat", - "order": 78 + "order": 79 }, { "key": "science", "message": "peralatan sains", - "order": 79 + "order": 80 }, { "key": "medical", "message": "perubatan", - "order": 80 + "order": 81 }, { "key": "household", "message": "barangan isi rumah", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "objek lain", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "tanda-tanda pengangkutan", - "order": 83 + "order": 84 }, { "key": "warning", "message": "simbol amaran", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "anak panah", - "order": 85 + "order": 86 }, { "key": "religion", "message": "simbol agama", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "tanda-tanda zodiak", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "simbol audio & video", - "order": 88 + "order": 89 }, { "key": "gender", "message": "tanda-tanda jantina", - "order": 89 + "order": 90 }, { "key": "math", "message": "simbol matematik", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "tanda baca", - "order": 91 + "order": 92 }, { "key": "currency", "message": "mata wang", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "simbol lain", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "aksara pad kekunci", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "simbol abjad", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "bentuk & warna", - "order": 96 + "order": 97 }, { "key": "flag", "message": "bendera lain", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "bendera negara", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "bendera pembahagian", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/nb/messages.raw.json b/packages/data/nb/messages.raw.json index a948fa29..529bec35 100644 --- a/packages/data/nb/messages.raw.json +++ b/packages/data/nb/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "lys hudtone" + "key": "dark", + "message": "mørk hudtone" }, { - "key": "medium-light", - "message": "middels lett hudtone" + "key": "light", + "message": "lys hudtone" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "middels mørk hudtone" }, { - "key": "dark", - "message": "mørk hudtone" + "key": "medium-light", + "message": "middels lett hudtone" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "ape ansikter", "order": 13 }, + { + "key": "heart", + "message": "hjerter", + "order": 14 + }, { "key": "emotion", "message": "følelser", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "fingrene åpne", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "hånd tegn", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "finger peker", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "fingrene lukket", - "order": 18 + "order": 19 }, { "key": "hands", "message": "hender", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "hånd rekvisitter", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "kroppsdeler", - "order": 21 + "order": 22 }, { "key": "person", "message": "personer", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "bevegelser", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roller og karrierer", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasi", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "aktiviteter", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "friidrett", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "hvile", - "order": 28 + "order": 29 }, { "key": "family", "message": "familie", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "folk symboler", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "hudtoner", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "hår stiler", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "pattedyr", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "fugler", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "amfibier", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptiler", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "marint liv", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "feil", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "blomster", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "andre planter", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "frukt", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "grønnsaker", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "kokt / forberedt", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiatiske", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "sjømat", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "søtsaker og godteri", - "order": 46 + "order": 47 }, { "key": "drink", "message": "drikke", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "servise", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globes og kart", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geografiske steder", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "bygninger", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religiøse bygninger", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "andre steder", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "bakketransport", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "transport av vann", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "lufttransport", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotell", - "order": 57 + "order": 58 }, { "key": "time", "message": "tid", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "vær", - "order": 59 + "order": 60 }, { "key": "event", "message": "arrangementer og helligdager", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "tildele medaljer", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sports", - "order": 62 + "order": 63 }, { "key": "game", "message": "spill og hobbyer", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "kunst og håndverk", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "klær", - "order": 65 + "order": 66 }, { "key": "sound", "message": "lyd", - "order": 66 + "order": 67 }, { "key": "music", "message": "musikk", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "musikkinstrumenter", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "datamaskin", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "lys, film og video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "bøker og papir", - "order": 72 + "order": 73 }, { "key": "money", "message": "penger", - "order": 73 + "order": 74 }, { "key": "mail", "message": "post", - "order": 74 + "order": 75 }, { "key": "writing", "message": "skriver", - "order": 75 + "order": 76 }, { "key": "office", "message": "kontorrekvisita", - "order": 76 + "order": 77 }, { "key": "lock", "message": "lås og taster", - "order": 77 + "order": 78 }, { "key": "tool", "message": "verktøy", - "order": 78 + "order": 79 }, { "key": "science", "message": "vitenskap utstyr", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medisinsk", - "order": 80 + "order": 81 }, { "key": "household", "message": "husholdningsartikler", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "andre objekter", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transportskilt", - "order": 83 + "order": 84 }, { "key": "warning", "message": "advarsel symboler", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "piler", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religiøse symboler", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "dyrekretsen tegn", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "lyd- og videosymboler", - "order": 88 + "order": 89 }, { "key": "gender", "message": "kjønnstegn", - "order": 89 + "order": 90 }, { "key": "math", "message": "matematiske symboler", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "tegnsetting", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valutaer", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "andre symboler", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "tastatur tegn", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alfanumeriske symboler", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "former og farger", - "order": 96 + "order": 97 }, { "key": "flag", "message": "andre flagg", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "land flagg", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "underinndeling flagg", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/nl/messages.raw.json b/packages/data/nl/messages.raw.json index 96fd796e..ae6e3324 100644 --- a/packages/data/nl/messages.raw.json +++ b/packages/data/nl/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "lichte huidskleur" + "key": "dark", + "message": "donkere huidskleur" }, { - "key": "medium-light", - "message": "medium-lichte huidskleur" + "key": "light", + "message": "lichte huidskleur" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "medium-donkere huidskleur" }, { - "key": "dark", - "message": "donkere huidskleur" + "key": "medium-light", + "message": "medium-lichte huidskleur" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "apengezichten", "order": 13 }, + { + "key": "heart", + "message": "harten", + "order": 14 + }, { "key": "emotion", "message": "emoties", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "vingers open", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "handtekens", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "vinger wijzen", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "vingers gesloten", - "order": 18 + "order": 19 }, { "key": "hands", "message": "handen", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "handrekwisieten", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "lichaamsdelen", - "order": 21 + "order": 22 }, { "key": "person", "message": "personen", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gebaren", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "rollen & carrières", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasie", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "activiteiten", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "atletiek", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "rust", - "order": 28 + "order": 29 }, { "key": "family", "message": "familie", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "symbolen voor personen", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "huidtinten", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "haarstijlen", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "zoogdieren", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "vogels", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "amfibieën", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptielen", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "zeeleven", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "bugs", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "bloemen", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "andere planten", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "fruit", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "groenten", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "gekookt / bereid", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "aziatische", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "zeevruchten", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "snoep", - "order": 46 + "order": 47 }, { "key": "drink", "message": "drankje", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "vaatwerk", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globes & kaarten", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geografische locaties", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "gebouwen", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religieuze gebouwen", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "andere plaatsen", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "grondtransport", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "vervoer over water", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "luchtvervoer", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "tijd", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "weer", - "order": 59 + "order": 60 }, { "key": "event", "message": "evenementen & feestdagen", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "toekenning medailles", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sport", - "order": 62 + "order": 63 }, { "key": "game", "message": "spellen", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "kunst & ambachten", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "kleding", - "order": 65 + "order": 66 }, { "key": "sound", "message": "geluid", - "order": 66 + "order": 67 }, { "key": "music", "message": "muziek", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "muziekinstrumenten", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefoon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "licht, film & video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "boeken & papier", - "order": 72 + "order": 73 }, { "key": "money", "message": "geld", - "order": 73 + "order": 74 }, { "key": "mail", "message": "mail", - "order": 74 + "order": 75 }, { "key": "writing", "message": "schrijven", - "order": 75 + "order": 76 }, { "key": "office", "message": "kantoorbenodigdheden", - "order": 76 + "order": 77 }, { "key": "lock", "message": "slot & toetsen", - "order": 77 + "order": 78 }, { "key": "tool", "message": "hulpmiddelen", - "order": 78 + "order": 79 }, { "key": "science", "message": "wetenschapsapparatuur", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medische", - "order": 80 + "order": 81 }, { "key": "household", "message": "huishoudelijke artikelen", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "andere objecten", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transportborden", - "order": 83 + "order": 84 }, { "key": "warning", "message": "waarschuwingssymbolen", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "pijlen", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religieuze symbolen", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "sterrenbeelden", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "audio & video symbolen", - "order": 88 + "order": 89 }, { "key": "gender", "message": "gendertekens", - "order": 89 + "order": 90 }, { "key": "math", "message": "wiskundige symbolen", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "interpunctie", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valuta", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "andere symbolen", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "toetsen aan toetsen", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alfanumerieke symbolen", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "vormen & kleuren", - "order": 96 + "order": 97 }, { "key": "flag", "message": "andere vlaggen", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "landvlaggen", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "onderverdelingsvlaggen", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/pl/messages.raw.json b/packages/data/pl/messages.raw.json index e727052f..e5b4784a 100644 --- a/packages/data/pl/messages.raw.json +++ b/packages/data/pl/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "jasny koloryt skóry" + "key": "dark", + "message": "ciemny odcień skóry" }, { - "key": "medium-light", - "message": "średnio jasny koloryt skóry" + "key": "light", + "message": "jasny koloryt skóry" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "średnio-ciemny odcień skóry" }, { - "key": "dark", - "message": "ciemny odcień skóry" + "key": "medium-light", + "message": "średnio jasny koloryt skóry" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "małpa twarze", "order": 13 }, + { + "key": "heart", + "message": "kiery", + "order": 14 + }, { "key": "emotion", "message": "emocje", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "palce otwarte", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "znaki dłoni", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "wskazywanie palcem", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "palce zamknięte", - "order": 18 + "order": 19 }, { "key": "hands", "message": "ręce", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "podpory ręczne", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "części ciała", - "order": 21 + "order": 22 }, { "key": "person", "message": "ludzie", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gesty", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "role & kariera", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantazja", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "aktywność", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "lekkoatletyka", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "odpoczynku", - "order": 28 + "order": 29 }, { "key": "family", "message": "rodzina", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "symbole osób", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "odcienie skóry", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "fryzury", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "ssaków", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "ptaki", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "płazy", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "gady", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "życie morskie", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "błędów", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "kwiaty", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "inne rośliny", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "owoców", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "warzywa", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "gotowane / przygotowane", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "azjatyckie", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "owoce morza", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "słodycze & cukierki", - "order": 46 + "order": 47 }, { "key": "drink", "message": "pić", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "naczynia", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globusy & mapy", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "lokalizacje geograficzne", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "budynków", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "budynki sakrne", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "inne miejsca", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "transport naziemny", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "transport wodny", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "transport lotniczy", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "czas", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "pogoda", - "order": 59 + "order": 60 }, { "key": "event", "message": "wydarzenia & święta", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "medale nagród", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sportowe", - "order": 62 + "order": 63 }, { "key": "game", "message": "gry & hobby", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "sztuka & rzemiosło", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "odzież", - "order": 65 + "order": 66 }, { "key": "sound", "message": "dźwięk", - "order": 66 + "order": 67 }, { "key": "music", "message": "muzyka", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "instrumenty muzyczne", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "komputer", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "światło, film & wideo", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "książki & papier", - "order": 72 + "order": 73 }, { "key": "money", "message": "pieniądze", - "order": 73 + "order": 74 }, { "key": "mail", "message": "poczta", - "order": 74 + "order": 75 }, { "key": "writing", "message": "pisania", - "order": 75 + "order": 76 }, { "key": "office", "message": "materiały biurowe", - "order": 76 + "order": 77 }, { "key": "lock", "message": "blokada & klawisze", - "order": 77 + "order": 78 }, { "key": "tool", "message": "przybory", - "order": 78 + "order": 79 }, { "key": "science", "message": "sprzęt naukowy", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medycznych", - "order": 80 + "order": 81 }, { "key": "household", "message": "artykuły gospodarstwa domowego", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "inne obiekty", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "znaki transportowe", - "order": 83 + "order": 84 }, { "key": "warning", "message": "symbole ostrzegawcze", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "strzałki", - "order": 85 + "order": 86 }, { "key": "religion", "message": "symbole religijne", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "zodiaku", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "symbole audio i wideo", - "order": 88 + "order": 89 }, { "key": "gender", "message": "objawy płci", - "order": 89 + "order": 90 }, { "key": "math", "message": "symbole matematyczne", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "interpunkcja", - "order": 91 + "order": 92 }, { "key": "currency", "message": "walut", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "inne symbole", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "znaki klawiatury", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "symbole alfanumeryczne", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "kształty & kolory", - "order": 96 + "order": 97 }, { "key": "flag", "message": "inne flagi", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "flagi kraju", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "flagi podpodziału", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/pt/messages.raw.json b/packages/data/pt/messages.raw.json index 85aecd3d..d27e0177 100644 --- a/packages/data/pt/messages.raw.json +++ b/packages/data/pt/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "tom de pele clara" + "key": "dark", + "message": "tom de pele escura" }, { - "key": "medium-light", - "message": "tom de pele de luz média" + "key": "light", + "message": "tom de pele clara" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "tom de pele média-escura" }, { - "key": "dark", - "message": "tom de pele escura" + "key": "medium-light", + "message": "tom de pele de luz média" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "rostos macaco", "order": 13 }, + { + "key": "heart", + "message": "corações", + "order": 14 + }, { "key": "emotion", "message": "emoções", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "dedos abertos", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "sinais de mão", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "apontar o dedo", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "dedos fechados", - "order": 18 + "order": 19 }, { "key": "hands", "message": "mãos", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "adereços de mão", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "partes do corpo", - "order": 21 + "order": 22 }, { "key": "person", "message": "pessoas", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gestos", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "papéis e carreiras", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasia", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "atividades", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "atletismo", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "descansando", - "order": 28 + "order": 29 }, { "key": "family", "message": "família", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "símbolos de pessoas", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "tons de pele", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "estilos de cabelo", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mamíferos", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "aves", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "anfíbios", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "répteis", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "vida marinha", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "insetos", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "flores", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "outras plantas", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "fruta", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "vegetais", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "cozido / preparado", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiático", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "marisco", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "doces e doces", - "order": 46 + "order": 47 }, { "key": "drink", "message": "bebida", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "loiça", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "globos e mapas", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "localizações geográficas", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "edifícios", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "edifícios religiosos", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "outros lugares", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "transporte terrestre", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "transporte aquático", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "transporte aéreo", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotel", - "order": 57 + "order": 58 }, { "key": "time", "message": "hora", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "clima", - "order": 59 + "order": 60 }, { "key": "event", "message": "eventos e feriados", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "medalhas de prêmio", - "order": 61 + "order": 62 }, { "key": "sport", "message": "desporto", - "order": 62 + "order": 63 }, { "key": "game", "message": "jogos e hobbies", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "artesanato", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "roupa", - "order": 65 + "order": 66 }, { "key": "sound", "message": "som", - "order": 66 + "order": 67 }, { "key": "music", "message": "música", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "instrumentos musicais", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefone", - "order": 69 + "order": 70 }, { "key": "computer", "message": "computador", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "luz, filme e vídeo", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "livros e papel", - "order": 72 + "order": 73 }, { "key": "money", "message": "total de dinheiro gasto", - "order": 73 + "order": 74 }, { "key": "mail", "message": "correio", - "order": 74 + "order": 75 }, { "key": "writing", "message": "escrever", - "order": 75 + "order": 76 }, { "key": "office", "message": "materiais de escritório", - "order": 76 + "order": 77 }, { "key": "lock", "message": "bloqueio e chaves", - "order": 77 + "order": 78 }, { "key": "tool", "message": "ferramentas", - "order": 78 + "order": 79 }, { "key": "science", "message": "equipamento científico", - "order": 79 + "order": 80 }, { "key": "medical", "message": "médico", - "order": 80 + "order": 81 }, { "key": "household", "message": "utensílios domésticos", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "outros objetos", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "sinais de transporte", - "order": 83 + "order": 84 }, { "key": "warning", "message": "símbolos de aviso", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "setas", - "order": 85 + "order": 86 }, { "key": "religion", "message": "símbolos religiosos", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "signos do zodíaco", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "símbolos de áudio e vídeo", - "order": 88 + "order": 89 }, { "key": "gender", "message": "sinais de gênero", - "order": 89 + "order": 90 }, { "key": "math", "message": "símbolos matemáticos", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "pontuação", - "order": 91 + "order": 92 }, { "key": "currency", "message": "moedas", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "outros símbolos", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "caracteres teclado", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "símbolos alfanuméricos", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "formas e cores", - "order": 96 + "order": 97 }, { "key": "flag", "message": "outras bandeiras", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "bandeiras do país", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "bandeiras de subdivisão", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/ru/messages.raw.json b/packages/data/ru/messages.raw.json index 51e8f62d..695b4d7c 100644 --- a/packages/data/ru/messages.raw.json +++ b/packages/data/ru/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "светлый тон кожи" + "key": "dark", + "message": "темный тон кожи" }, { - "key": "medium-light", - "message": "средне-светлый тон кожи" + "key": "light", + "message": "светлый тон кожи" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "средне-темный тон кожи" }, { - "key": "dark", - "message": "темный тон кожи" + "key": "medium-light", + "message": "средне-светлый тон кожи" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "обезьяна лица", "order": 13 }, + { + "key": "heart", + "message": "сердца", + "order": 14 + }, { "key": "emotion", "message": "эмоция", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "пальцы открыты", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "ручные знаки", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "пальцем указывая", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "пальцы закрыты", - "order": 18 + "order": 19 }, { "key": "hands", "message": "руки", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "ручные реквизиты", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "части тела", - "order": 21 + "order": 22 }, { "key": "person", "message": "человек", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "жесты", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "роли и карьеры", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "фантастика", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "варианты досуга", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "легкая атлетика", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "отдыхающий", - "order": 28 + "order": 29 }, { "key": "family", "message": "семья", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "символы людей", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "тона кожи", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "прически", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "mлекопитающих", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "птицы", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "aмфибий", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "pептилий", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "морской флоры и фауны", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "ошибки", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "цветы", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "другие растения", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "фрукты", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "овощи", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "приготовленные / подготовленные", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "азиатский", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "mорепродукты", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "сладости и конфеты", - "order": 46 + "order": 47 }, { "key": "drink", "message": "напиток", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "посуда", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "глобусы и карты", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "географические местоположения", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "здания", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "религиозные здания", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "в других местах", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "наземный транспорт", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "водный транспорт", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "авиаперевозки", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "отель", - "order": 57 + "order": 58 }, { "key": "time", "message": "время", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "погода", - "order": 59 + "order": 60 }, { "key": "event", "message": "событие", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "наградные медали", - "order": 61 + "order": 62 }, { "key": "sport", "message": "спорт", - "order": 62 + "order": 63 }, { "key": "game", "message": "игра", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "искусства и ремесел", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "одежда", - "order": 65 + "order": 66 }, { "key": "sound", "message": "звук", - "order": 66 + "order": 67 }, { "key": "music", "message": "музыка", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "музыкальные инструменты", - "order": 68 + "order": 69 }, { "key": "phone", "message": "телефон", - "order": 69 + "order": 70 }, { "key": "computer", "message": "компьютер", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "свет, пленка и видео", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "книги и бумага", - "order": 72 + "order": 73 }, { "key": "money", "message": "деньги", - "order": 73 + "order": 74 }, { "key": "mail", "message": "почта", - "order": 74 + "order": 75 }, { "key": "writing", "message": "письмо", - "order": 75 + "order": 76 }, { "key": "office", "message": "офис", - "order": 76 + "order": 77 }, { "key": "lock", "message": "замок", - "order": 77 + "order": 78 }, { "key": "tool", "message": "инструменты", - "order": 78 + "order": 79 }, { "key": "science", "message": "научное оборудование", - "order": 79 + "order": 80 }, { "key": "medical", "message": "медицина", - "order": 80 + "order": 81 }, { "key": "household", "message": "предметы домашнего обихода", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "другие объекты", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "транспортные знаки", - "order": 83 + "order": 84 }, { "key": "warning", "message": "предупреждение", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "стрелки", - "order": 85 + "order": 86 }, { "key": "religion", "message": "религия", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "знаки зодиака", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "аудио- и видео символы", - "order": 88 + "order": 89 }, { "key": "gender", "message": "пол", - "order": 89 + "order": 90 }, { "key": "math", "message": "математика", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "пунктуация", - "order": 91 + "order": 92 }, { "key": "currency", "message": "валюта", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "другие символы", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "символы клавиатуры", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "алфавитные символы", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "формы и цвета", - "order": 96 + "order": 97 }, { "key": "flag", "message": "другие флаги", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "флаг страны", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "флаги подразделений", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/sv/messages.raw.json b/packages/data/sv/messages.raw.json index 4b029ab3..6a880b08 100644 --- a/packages/data/sv/messages.raw.json +++ b/packages/data/sv/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "ljus toning" + "key": "dark", + "message": "mörk toning" }, { - "key": "medium-light", - "message": "medelljus toning" + "key": "light", + "message": "ljus toning" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "medelmörk toning" }, { - "key": "dark", - "message": "mörk toning" + "key": "medium-light", + "message": "medelljus toning" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "apa ansikten", "order": 13 }, + { + "key": "heart", + "message": "hjärtan", + "order": 14 + }, { "key": "emotion", "message": "känslor", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "fingrar öppna", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "handtecken", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "fingret pekar", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "fingrar stängda", - "order": 18 + "order": 19 }, { "key": "hands", "message": "händer", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "hand rekvisita", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "kroppsdelar", - "order": 21 + "order": 22 }, { "key": "person", "message": "personer", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "gester", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "roller & karriärer", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "fantasi", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "aktiviteter", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "friidrott", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "vila", - "order": 28 + "order": 29 }, { "key": "family", "message": "familj", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "människor symboler", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "hudtoner", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "hår stilar", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "däggdjur", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "fåglar", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "amfibier", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "reptiler", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "marint liv", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "buggar", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "blommor", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "andra växter", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "frukt", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "grönsaker", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "kokta / beredda", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "asiatiska", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "skaldjur", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "godis", - "order": 46 + "order": 47 }, { "key": "drink", "message": "dryck", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "porslin", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "glober & kartor", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "geografiska platser", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "byggnader", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "religiösa byggnader", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "andra platser", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "marktransporter", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "vatten transport", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "lufttransporter", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "hotell", - "order": 57 + "order": 58 }, { "key": "time", "message": "tid", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "väder", - "order": 59 + "order": 60 }, { "key": "event", "message": "händelser & helgdagar", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "tilldela medaljer", - "order": 61 + "order": 62 }, { "key": "sport", "message": "sporter", - "order": 62 + "order": 63 }, { "key": "game", "message": "spel & hobbyer", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "konst & hantverk", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "kläder", - "order": 65 + "order": 66 }, { "key": "sound", "message": "ljud", - "order": 66 + "order": 67 }, { "key": "music", "message": "musik", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "musikinstrument", - "order": 68 + "order": 69 }, { "key": "phone", "message": "telefon", - "order": 69 + "order": 70 }, { "key": "computer", "message": "dator", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "ljus, film & video", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "böcker & papper", - "order": 72 + "order": 73 }, { "key": "money", "message": "pengar", - "order": 73 + "order": 74 }, { "key": "mail", "message": "post", - "order": 74 + "order": 75 }, { "key": "writing", "message": "skriva", - "order": 75 + "order": 76 }, { "key": "office", "message": "kontorsmateriel", - "order": 76 + "order": 77 }, { "key": "lock", "message": "lås & nycklar", - "order": 77 + "order": 78 }, { "key": "tool", "message": "verktyg", - "order": 78 + "order": 79 }, { "key": "science", "message": "vetenskap utrustning", - "order": 79 + "order": 80 }, { "key": "medical", "message": "medicinsk", - "order": 80 + "order": 81 }, { "key": "household", "message": "husgeråd", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "andra objekt", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "transportskyltar", - "order": 83 + "order": 84 }, { "key": "warning", "message": "varningssymboler", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "pilar", - "order": 85 + "order": 86 }, { "key": "religion", "message": "religiösa symboler", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "stjärntecken", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "ljud - och bildsymboler", - "order": 88 + "order": 89 }, { "key": "gender", "message": "könstecken", - "order": 89 + "order": 90 }, { "key": "math", "message": "matematik symboler", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "skiljetecken", - "order": 91 + "order": 92 }, { "key": "currency", "message": "valutor", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "andra symboler", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "knappsatstecken", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "alfanumeriska symboler", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "former & färger", - "order": 96 + "order": 97 }, { "key": "flag", "message": "andra flaggor", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "land flaggor", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "flaggor för indelning", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/th/messages.raw.json b/packages/data/th/messages.raw.json index 3371b1d6..a4976744 100644 --- a/packages/data/th/messages.raw.json +++ b/packages/data/th/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "โทนสีผิวอ่อน" + "key": "dark", + "message": "โทนสีผิวคล้ํา" }, { - "key": "medium-light", - "message": "โทนสีผิวสีอ่อนปานกลาง" + "key": "light", + "message": "โทนสีผิวอ่อน" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "โทนสีผิวคล้ําปานกลาง" }, { - "key": "dark", - "message": "โทนสีผิวคล้ํา" + "key": "medium-light", + "message": "โทนสีผิวสีอ่อนปานกลาง" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "ใบหน้าลิง", "order": 13 }, + { + "key": "heart", + "message": "หัวใจ", + "order": 14 + }, { "key": "emotion", "message": "อารมณ์", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "เปิดนิ้ว", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "สัญญาณมือ", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "การชี้นิ้ว", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "ปิดนิ้วแล้ว", - "order": 18 + "order": 19 }, { "key": "hands", "message": "มือ", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "อุปกรณ์ประกอบฉากมือ", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "ส่วนต่างๆ ของร่างกาย", - "order": 21 + "order": 22 }, { "key": "person", "message": "คน", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "รูป แบบ ลาย เส้น", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "บทบาทและอาชีพ", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "แฟนตาซี", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "กิจกรรม", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "กรีฑา", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "พักผ่อน", - "order": 28 + "order": 29 }, { "key": "family", "message": "ครอบครัว", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "สัญลักษณ์บุคคล", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "โทนสีผิว", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "สไตล์ผม", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "เลี้ยงลูกด้วยนม", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "นก", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "สะเทินน้ําสะเทินบก", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "สัตว์เลื้อยคลาน", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "ชีวิตทางทะเล", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "ข้อ บกพร่อง", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "ดอกไม้", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "พืชอื่น ๆ", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "ผลไม้", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "ผัก", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "สุก / เตรียม", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "เอเชีย", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "อาหาร ทะเล", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "ขนมและลูกอม", - "order": 46 + "order": 47 }, { "key": "drink", "message": "เครื่อง ดื่ม", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "เครื่องล้างจาน", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "ลูกโลกและแผนที่", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "ที่ตั้งทางภูมิศาสตร์", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "อาคาร", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "อาคารทางศาสนา", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "สถานที่อื่น ๆ", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "การขนส่งทางบก", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "การขนส่งทางน้ํา", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "การขนส่งทางอากาศ", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "โรงแรม", - "order": 57 + "order": 58 }, { "key": "time", "message": "เวลา", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "สภาพ อากาศ", - "order": 59 + "order": 60 }, { "key": "event", "message": "กิจกรรมและวันหยุดนักขัตฤกษ์", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "เหรียญรางวัล", - "order": 61 + "order": 62 }, { "key": "sport", "message": "กีฬา", - "order": 62 + "order": 63 }, { "key": "game", "message": "เกมและงานอดิเรก", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "ศิลปะและงานฝีมือ", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "เสื้อ ผ้า", - "order": 65 + "order": 66 }, { "key": "sound", "message": "เสียง", - "order": 66 + "order": 67 }, { "key": "music", "message": "เพลง", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "ดนตรี", - "order": 68 + "order": 69 }, { "key": "phone", "message": "เบอร์โทร", - "order": 69 + "order": 70 }, { "key": "computer", "message": "คอมพิวเตอร์", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "แสง, ภาพยนตร์และวิดีโอ", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "หนังสือและกระดาษ", - "order": 72 + "order": 73 }, { "key": "money", "message": "เงิน", - "order": 73 + "order": 74 }, { "key": "mail", "message": "จดหมาย", - "order": 74 + "order": 75 }, { "key": "writing", "message": "เขียน", - "order": 75 + "order": 76 }, { "key": "office", "message": "เครื่องใช้สํานักงาน", - "order": 76 + "order": 77 }, { "key": "lock", "message": "ล็อคและกุญแจ", - "order": 77 + "order": 78 }, { "key": "tool", "message": "เครื่องมือ", - "order": 78 + "order": 79 }, { "key": "science", "message": "อุปกรณ์วิทยาศาสตร์", - "order": 79 + "order": 80 }, { "key": "medical", "message": "แพทย์", - "order": 80 + "order": 81 }, { "key": "household", "message": "ของใช้ในครัวเรือน", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "วัตถุอื่นๆ", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "สัญญาณการขนส่ง", - "order": 83 + "order": 84 }, { "key": "warning", "message": "สัญลักษณ์การเตือน", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "ลูกศร", - "order": 85 + "order": 86 }, { "key": "religion", "message": "สัญลักษณ์ทางศาสนา", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "ราศีกันย์", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "สัญลักษณ์เสียงและวิดีโอ", - "order": 88 + "order": 89 }, { "key": "gender", "message": "สัญญาณทางเพศ", - "order": 89 + "order": 90 }, { "key": "math", "message": "สัญลักษณ์ทางคณิตศาสตร์", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "เครื่อง หมาย วรรค ตอน", - "order": 91 + "order": 92 }, { "key": "currency", "message": "สกุล เงิน", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "สัญลักษณ์อื่นๆ", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "อักขระแป้นพิมพ์", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "สัญลักษณ์ตัวอักษรและตัวเลข", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "รูปร่างและสี", - "order": 96 + "order": 97 }, { "key": "flag", "message": "ค่าสถานะอื่นๆ", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "ธงชาติ", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "แฟล็กการแบ่งย่อย", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/uk/messages.raw.json b/packages/data/uk/messages.raw.json index 32b584cb..7fe1c85c 100644 --- a/packages/data/uk/messages.raw.json +++ b/packages/data/uk/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "світлий тон шкіри" + "key": "dark", + "message": "темний тон шкіри" }, { - "key": "medium-light", - "message": "помірно світлий тон шкіри" + "key": "light", + "message": "світлий тон шкіри" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "помірно темний тон шкіри" }, { - "key": "dark", - "message": "темний тон шкіри" + "key": "medium-light", + "message": "помірно світлий тон шкіри" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "мавпа особи", "order": 13 }, + { + "key": "heart", + "message": "серця", + "order": 14 + }, { "key": "emotion", "message": "емоції", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "пальці відкриті", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "знаки руки", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "вказівник пальця", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "пальці закриті", - "order": 18 + "order": 19 }, { "key": "hands", "message": "pуки", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "реквізит ручний", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "частини тіла", - "order": 21 + "order": 22 }, { "key": "person", "message": "люди", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "жести", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "ролі та кар'єра", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "фантазія", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "діяльності", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "атлетика", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "відпочиваючи", - "order": 28 + "order": 29 }, { "key": "family", "message": "сімейство", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "люди символи", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "тони шкіри", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "зачіски", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "cсавців", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "птахів", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "aмфібії", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "плазуни", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "морське життя", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "помилки", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "квіти", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "інші рослини", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "фрукти", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "овощи", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "приготований / приготований", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "aзіатських", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "морепродукти", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "цукерки", - "order": 46 + "order": 47 }, { "key": "drink", "message": "питво", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "посуд", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "глобуси & карти", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "географічні розташування", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "будівель", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "культові споруди", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "в інших місцях", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "наземні перевезення", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "транспортування води", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "авіаперевезення", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "готель", - "order": 57 + "order": 58 }, { "key": "time", "message": "час", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "погода", - "order": 59 + "order": 60 }, { "key": "event", "message": "події та свята", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "нагородити медалями", - "order": 61 + "order": 62 }, { "key": "sport", "message": "спортивні змагання", - "order": 62 + "order": 63 }, { "key": "game", "message": "ігри та хобі", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "мистецтво & ремесла", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "одяг", - "order": 65 + "order": 66 }, { "key": "sound", "message": "звук", - "order": 66 + "order": 67 }, { "key": "music", "message": "музики", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "музичні інструменти", - "order": 68 + "order": 69 }, { "key": "phone", "message": "телефон", - "order": 69 + "order": 70 }, { "key": "computer", "message": "комп'ютер", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "світло, фільм & відео", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "книги та папір", - "order": 72 + "order": 73 }, { "key": "money", "message": "гроші", - "order": 73 + "order": 74 }, { "key": "mail", "message": "лист", - "order": 74 + "order": 75 }, { "key": "writing", "message": "письмо", - "order": 75 + "order": 76 }, { "key": "office", "message": "офісне приладдя", - "order": 76 + "order": 77 }, { "key": "lock", "message": "блокування та ключі", - "order": 77 + "order": 78 }, { "key": "tool", "message": "інструменти", - "order": 78 + "order": 79 }, { "key": "science", "message": "наукове обладнання", - "order": 79 + "order": 80 }, { "key": "medical", "message": "медичний", - "order": 80 + "order": 81 }, { "key": "household", "message": "предмети побуту", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "інші об'єкти", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "транспортні знаки", - "order": 83 + "order": 84 }, { "key": "warning", "message": "попереджувальні символи", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "стрілки", - "order": 85 + "order": 86 }, { "key": "religion", "message": "релігійні символи", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "знаки зодіаку", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "аудіо та відео символи", - "order": 88 + "order": 89 }, { "key": "gender", "message": "гендерні ознаки", - "order": 89 + "order": 90 }, { "key": "math", "message": "математичні символи", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "пунктуація", - "order": 91 + "order": 92 }, { "key": "currency", "message": "валюти", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "інші символи", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "символи клавіатури", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "буквено-цифрові символи", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "фігури та кольори", - "order": 96 + "order": 97 }, { "key": "flag", "message": "інші прапорці", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "прапори країни", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "прапори підрозділу", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/zh-hant/messages.raw.json b/packages/data/zh-hant/messages.raw.json index d658efa7..cb40ada4 100644 --- a/packages/data/zh-hant/messages.raw.json +++ b/packages/data/zh-hant/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "淺膚色" + "key": "dark", + "message": "深色膚色" }, { - "key": "medium-light", - "message": "中光膚色" + "key": "light", + "message": "淺膚色" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "中深色膚色" }, { - "key": "dark", - "message": "深色膚色" + "key": "medium-light", + "message": "中光膚色" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "猴子", "order": 13 }, + { + "key": "heart", + "message": "心", + "order": 14 + }, { "key": "emotion", "message": "情绪", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "手伸开", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "手的手指部分", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "一根手指", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "拳头", - "order": 18 + "order": 19 }, { "key": "hands", "message": "手", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "举手", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "身体部位", - "order": 21 + "order": 22 }, { "key": "person", "message": "人", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "做手势", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "演员", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "有魅力的人", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "个人活动", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "競技", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "休息", - "order": 28 + "order": 29 }, { "key": "family", "message": "家庭", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "人符號", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "膚色", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "髮型", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "哺乳類動物", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "鳥類動物", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "两栖动物", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "爬蟲類動物", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "水生動物", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "蟲類動物", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "花卉植物", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "其他植物", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "水果類食物", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "蔬菜類食物", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "准备好的食物", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "亞洲食物", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "水產食物", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "甜食物", - "order": 46 + "order": 47 }, { "key": "drink", "message": "飲品", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "餐具", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "地球和地圖", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "地理位置", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "地方建筑", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "宗教场所", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "其他地點", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "陆运", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "水运", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "空运", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "旅馆", - "order": 57 + "order": 58 }, { "key": "time", "message": "时间", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "天气", - "order": 59 + "order": 60 }, { "key": "event", "message": "事件", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "奖章", - "order": 61 + "order": 62 }, { "key": "sport", "message": "运动", - "order": 62 + "order": 63 }, { "key": "game", "message": "游戏", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "工艺品", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "服装", - "order": 65 + "order": 66 }, { "key": "sound", "message": "声音", - "order": 66 + "order": 67 }, { "key": "music", "message": "音乐", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "乐器", - "order": 68 + "order": 69 }, { "key": "phone", "message": "手机", - "order": 69 + "order": 70 }, { "key": "computer", "message": "计算机", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "轻视频", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "印书纸", - "order": 72 + "order": 73 }, { "key": "money", "message": "钱", - "order": 73 + "order": 74 }, { "key": "mail", "message": "邮件", - "order": 74 + "order": 75 }, { "key": "writing", "message": "文章", - "order": 75 + "order": 76 }, { "key": "office", "message": "办公室", - "order": 76 + "order": 77 }, { "key": "lock", "message": "锁", - "order": 77 + "order": 78 }, { "key": "tool", "message": "工具", - "order": 78 + "order": 79 }, { "key": "science", "message": "科学", - "order": 79 + "order": 80 }, { "key": "medical", "message": "医疗的", - "order": 80 + "order": 81 }, { "key": "household", "message": "一家人", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "其它物体", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "交通标志", - "order": 83 + "order": 84 }, { "key": "warning", "message": "警告", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "箭头", - "order": 85 + "order": 86 }, { "key": "religion", "message": "宗教", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "星座", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "音频和视频符号", - "order": 88 + "order": 89 }, { "key": "gender", "message": "性别", - "order": 89 + "order": 90 }, { "key": "math", "message": "数学", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "标点符号", - "order": 91 + "order": 92 }, { "key": "currency", "message": "货币", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "其他符号", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "键帽", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "字母数字", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "几何", - "order": 96 + "order": 97 }, { "key": "flag", "message": "其他標誌", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "国家旗帜", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "细分旗帜", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/data/zh/messages.raw.json b/packages/data/zh/messages.raw.json index 8d2f2086..e2de592e 100644 --- a/packages/data/zh/messages.raw.json +++ b/packages/data/zh/messages.raw.json @@ -53,12 +53,12 @@ ], "skinTones": [ { - "key": "light", - "message": "浅肤色" + "key": "dark", + "message": "深色肤色" }, { - "key": "medium-light", - "message": "中光肤色" + "key": "light", + "message": "浅肤色" }, { "key": "medium", @@ -69,8 +69,8 @@ "message": "中深色肤色" }, { - "key": "dark", - "message": "深色肤色" + "key": "medium-light", + "message": "中光肤色" } ], "subgroups": [ @@ -144,435 +144,440 @@ "message": "猴子", "order": 13 }, + { + "key": "heart", + "message": "心", + "order": 14 + }, { "key": "emotion", "message": "情绪", - "order": 14 + "order": 15 }, { "key": "hand-fingers-open", "message": "手伸开", - "order": 15 + "order": 16 }, { "key": "hand-fingers-partial", "message": "手的手指部分", - "order": 16 + "order": 17 }, { "key": "hand-single-finger", "message": "一根手指", - "order": 17 + "order": 18 }, { "key": "hand-fingers-closed", "message": "拳头", - "order": 18 + "order": 19 }, { "key": "hands", "message": "手", - "order": 19 + "order": 20 }, { "key": "hand-prop", "message": "举手", - "order": 20 + "order": 21 }, { "key": "body-parts", "message": "身体部位", - "order": 21 + "order": 22 }, { "key": "person", "message": "人", - "order": 22 + "order": 23 }, { "key": "person-gesture", "message": "做手势", - "order": 23 + "order": 24 }, { "key": "person-role", "message": "演员", - "order": 24 + "order": 25 }, { "key": "person-fantasy", "message": "有魅力的人", - "order": 25 + "order": 26 }, { "key": "person-activity", "message": "个人活动", - "order": 26 + "order": 27 }, { "key": "person-sport", "message": "競技", - "order": 27 + "order": 28 }, { "key": "person-resting", "message": "休息", - "order": 28 + "order": 29 }, { "key": "family", "message": "家庭", - "order": 29 + "order": 30 }, { "key": "person-symbol", "message": "人符號", - "order": 30 + "order": 31 }, { "key": "skin-tone", "message": "膚色", - "order": 31 + "order": 32 }, { "key": "hair-style", "message": "髮型", - "order": 32 + "order": 33 }, { "key": "animal-mammal", "message": "哺乳類動物", - "order": 33 + "order": 34 }, { "key": "animal-bird", "message": "鳥類動物", - "order": 34 + "order": 35 }, { "key": "animal-amphibian", "message": "两栖动物", - "order": 35 + "order": 36 }, { "key": "animal-reptile", "message": "爬蟲類動物", - "order": 36 + "order": 37 }, { "key": "animal-marine", "message": "水生動物", - "order": 37 + "order": 38 }, { "key": "animal-bug", "message": "蟲類動物", - "order": 38 + "order": 39 }, { "key": "plant-flower", "message": "花卉植物", - "order": 39 + "order": 40 }, { "key": "plant-other", "message": "其他植物", - "order": 40 + "order": 41 }, { "key": "food-fruit", "message": "水果類食物", - "order": 41 + "order": 42 }, { "key": "food-vegetable", "message": "蔬菜類食物", - "order": 42 + "order": 43 }, { "key": "food-prepared", "message": "准备好的食物", - "order": 43 + "order": 44 }, { "key": "food-asian", "message": "亞洲食物", - "order": 44 + "order": 45 }, { "key": "food-marine", "message": "水產食物", - "order": 45 + "order": 46 }, { "key": "food-sweet", "message": "甜食物", - "order": 46 + "order": 47 }, { "key": "drink", "message": "飲品", - "order": 47 + "order": 48 }, { "key": "dishware", "message": "餐具", - "order": 48 + "order": 49 }, { "key": "place-map", "message": "位置地图", - "order": 49 + "order": 50 }, { "key": "place-geographic", "message": "地理位置", - "order": 50 + "order": 51 }, { "key": "place-building", "message": "地方建筑", - "order": 51 + "order": 52 }, { "key": "place-religious", "message": "宗教场所", - "order": 52 + "order": 53 }, { "key": "place-other", "message": "其他地點", - "order": 53 + "order": 54 }, { "key": "transport-ground", "message": "陆运", - "order": 54 + "order": 55 }, { "key": "transport-water", "message": "水运", - "order": 55 + "order": 56 }, { "key": "transport-air", "message": "空运", - "order": 56 + "order": 57 }, { "key": "hotel", "message": "旅馆", - "order": 57 + "order": 58 }, { "key": "time", "message": "时间", - "order": 58 + "order": 59 }, { "key": "sky-weather", "message": "天气", - "order": 59 + "order": 60 }, { "key": "event", "message": "事件", - "order": 60 + "order": 61 }, { "key": "award-medal", "message": "奖章", - "order": 61 + "order": 62 }, { "key": "sport", "message": "运动", - "order": 62 + "order": 63 }, { "key": "game", "message": "游戏", - "order": 63 + "order": 64 }, { "key": "arts-crafts", "message": "工艺品", - "order": 64 + "order": 65 }, { "key": "clothing", "message": "服装", - "order": 65 + "order": 66 }, { "key": "sound", "message": "声音", - "order": 66 + "order": 67 }, { "key": "music", "message": "音乐", - "order": 67 + "order": 68 }, { "key": "musical-instrument", "message": "乐器", - "order": 68 + "order": 69 }, { "key": "phone", "message": "手机", - "order": 69 + "order": 70 }, { "key": "computer", "message": "计算机", - "order": 70 + "order": 71 }, { "key": "light-video", "message": "轻视频", - "order": 71 + "order": 72 }, { "key": "book-paper", "message": "印书纸", - "order": 72 + "order": 73 }, { "key": "money", "message": "钱", - "order": 73 + "order": 74 }, { "key": "mail", "message": "邮件", - "order": 74 + "order": 75 }, { "key": "writing", "message": "文章", - "order": 75 + "order": 76 }, { "key": "office", "message": "办公室", - "order": 76 + "order": 77 }, { "key": "lock", "message": "锁", - "order": 77 + "order": 78 }, { "key": "tool", "message": "工具", - "order": 78 + "order": 79 }, { "key": "science", "message": "科学", - "order": 79 + "order": 80 }, { "key": "medical", "message": "医疗的", - "order": 80 + "order": 81 }, { "key": "household", "message": "一家人", - "order": 81 + "order": 82 }, { "key": "other-object", "message": "其它物体", - "order": 82 + "order": 83 }, { "key": "transport-sign", "message": "交通标志", - "order": 83 + "order": 84 }, { "key": "warning", "message": "警告", - "order": 84 + "order": 85 }, { "key": "arrow", "message": "箭头", - "order": 85 + "order": 86 }, { "key": "religion", "message": "宗教", - "order": 86 + "order": 87 }, { "key": "zodiac", "message": "星座", - "order": 87 + "order": 88 }, { "key": "av-symbol", "message": "音频和视频符号", - "order": 88 + "order": 89 }, { "key": "gender", "message": "性别", - "order": 89 + "order": 90 }, { "key": "math", "message": "数学", - "order": 90 + "order": 91 }, { "key": "punctuation", "message": "标点符号", - "order": 91 + "order": 92 }, { "key": "currency", "message": "货币", - "order": 92 + "order": 93 }, { "key": "other-symbol", "message": "其他符号", - "order": 93 + "order": 94 }, { "key": "keycap", "message": "键帽", - "order": 94 + "order": 95 }, { "key": "alphanum", "message": "字母数字", - "order": 95 + "order": 96 }, { "key": "geometric", "message": "几何", - "order": 96 + "order": 97 }, { "key": "flag", "message": "其他標誌", - "order": 97 + "order": 98 }, { "key": "country-flag", "message": "国家旗帜", - "order": 98 + "order": 99 }, { "key": "subdivision-flag", "message": "细分旗帜", - "order": 99 + "order": 100 } ] } \ No newline at end of file diff --git a/packages/test-utils/test-messages.json b/packages/test-utils/test-messages.json index fc22efde..87a3e713 100644 --- a/packages/test-utils/test-messages.json +++ b/packages/test-utils/test-messages.json @@ -1 +1 @@ -{"groups":[{"key":"smileys-emotion","message":"smileys & emotion","order":0},{"key":"people-body","message":"people & body","order":1},{"key":"component","message":"components","order":2},{"key":"animals-nature","message":"animals & nature","order":3},{"key":"food-drink","message":"food & drink","order":4},{"key":"travel-places","message":"travel & places","order":5},{"key":"activities","message":"activities","order":6},{"key":"objects","message":"objects","order":7},{"key":"symbols","message":"symbols","order":8},{"key":"flags","message":"flags","order":9}],"skinTones":[{"key":"light","message":"light skin tone"},{"key":"medium-light","message":"medium-light skin tone"},{"key":"medium","message":"medium skin tone"},{"key":"medium-dark","message":"medium-dark skin tone"},{"key":"dark","message":"dark skin tone"}],"subgroups":[{"key":"face-smiling","message":"smiling","order":0},{"key":"face-affection","message":"affectionate","order":1},{"key":"face-tongue","message":"with tongue","order":2},{"key":"face-hand","message":"with hands","order":3},{"key":"face-neutral-skeptical","message":"neutral / skeptical","order":4},{"key":"face-sleepy","message":"sleepy","order":5},{"key":"face-unwell","message":"unwell","order":6},{"key":"face-hat","message":"with hats","order":7},{"key":"face-glasses","message":"with glasses","order":8},{"key":"face-concerned","message":"concerned","order":9},{"key":"face-negative","message":"negative","order":10},{"key":"face-costume","message":"costumed & creatures","order":11},{"key":"cat-face","message":"cat faces","order":12},{"key":"monkey-face","message":"monkey faces","order":13},{"key":"emotion","message":"emotions","order":14},{"key":"hand-fingers-open","message":"fingers open","order":15},{"key":"hand-fingers-partial","message":"hand signs","order":16},{"key":"hand-single-finger","message":"finger pointing","order":17},{"key":"hand-fingers-closed","message":"fingers closed","order":18},{"key":"hands","message":"hands","order":19},{"key":"hand-prop","message":"hand props","order":20},{"key":"body-parts","message":"body parts","order":21},{"key":"person","message":"people","order":22},{"key":"person-gesture","message":"gestures","order":23},{"key":"person-role","message":"roles & careers","order":24},{"key":"person-fantasy","message":"fantasy","order":25},{"key":"person-activity","message":"activities","order":26},{"key":"person-sport","message":"athletics","order":27},{"key":"person-resting","message":"resting","order":28},{"key":"family","message":"family","order":29},{"key":"person-symbol","message":"people symbols","order":30},{"key":"skin-tone","message":"skin tones","order":31},{"key":"hair-style","message":"hair styles","order":32},{"key":"animal-mammal","message":"mammals","order":33},{"key":"animal-bird","message":"birds","order":34},{"key":"animal-amphibian","message":"amphibians","order":35},{"key":"animal-reptile","message":"reptiles","order":36},{"key":"animal-marine","message":"marine life","order":37},{"key":"animal-bug","message":"bugs","order":38},{"key":"plant-flower","message":"flowers","order":39},{"key":"plant-other","message":"other plants","order":40},{"key":"food-fruit","message":"fruit","order":41},{"key":"food-vegetable","message":"vegetables","order":42},{"key":"food-prepared","message":"cooked / prepared","order":43},{"key":"food-asian","message":"asian","order":44},{"key":"food-marine","message":"seafood","order":45},{"key":"food-sweet","message":"sweets & candy","order":46},{"key":"drink","message":"drink","order":47},{"key":"dishware","message":"dishware","order":48},{"key":"place-map","message":"globes & maps","order":49},{"key":"place-geographic","message":"geographic locations","order":50},{"key":"place-building","message":"buildings","order":51},{"key":"place-religious","message":"religious buildings","order":52},{"key":"place-other","message":"other places","order":53},{"key":"transport-ground","message":"ground transportation","order":54},{"key":"transport-water","message":"water transportation","order":55},{"key":"transport-air","message":"air transportation","order":56},{"key":"hotel","message":"hotel","order":57},{"key":"time","message":"time","order":58},{"key":"sky-weather","message":"weather","order":59},{"key":"event","message":"events & holidays","order":60},{"key":"award-medal","message":"award medals","order":61},{"key":"sport","message":"sports","order":62},{"key":"game","message":"games & hobbies","order":63},{"key":"arts-crafts","message":"arts & crafts","order":64},{"key":"clothing","message":"clothing","order":65},{"key":"sound","message":"sound","order":66},{"key":"music","message":"music","order":67},{"key":"musical-instrument","message":"musical instruments","order":68},{"key":"phone","message":"phone","order":69},{"key":"computer","message":"computer","order":70},{"key":"light-video","message":"light, film & video","order":71},{"key":"book-paper","message":"books & paper","order":72},{"key":"money","message":"money","order":73},{"key":"mail","message":"mail","order":74},{"key":"writing","message":"writing","order":75},{"key":"office","message":"office supplies","order":76},{"key":"lock","message":"lock & keys","order":77},{"key":"tool","message":"tools","order":78},{"key":"science","message":"science equipment","order":79},{"key":"medical","message":"medical","order":80},{"key":"household","message":"household items","order":81},{"key":"other-object","message":"other objects","order":82},{"key":"transport-sign","message":"transport signs","order":83},{"key":"warning","message":"warning symbols","order":84},{"key":"arrow","message":"arrows","order":85},{"key":"religion","message":"religious symbols","order":86},{"key":"zodiac","message":"zodiac signs","order":87},{"key":"av-symbol","message":"audio & video symbols","order":88},{"key":"gender","message":"gender signs","order":89},{"key":"math","message":"math symbols","order":90},{"key":"punctuation","message":"punctuation","order":91},{"key":"currency","message":"currencies","order":92},{"key":"other-symbol","message":"other symbols","order":93},{"key":"keycap","message":"keypad characters","order":94},{"key":"alphanum","message":"alphanumeric symbols","order":95},{"key":"geometric","message":"shapes & colors","order":96},{"key":"flag","message":"other flags","order":97},{"key":"country-flag","message":"country flags","order":98},{"key":"subdivision-flag","message":"subdivision flags","order":99}]} \ No newline at end of file +{"groups":[{"key":"smileys-emotion","message":"smileys & emotion","order":0},{"key":"people-body","message":"people & body","order":1},{"key":"component","message":"components","order":2},{"key":"animals-nature","message":"animals & nature","order":3},{"key":"food-drink","message":"food & drink","order":4},{"key":"travel-places","message":"travel & places","order":5},{"key":"activities","message":"activities","order":6},{"key":"objects","message":"objects","order":7},{"key":"symbols","message":"symbols","order":8},{"key":"flags","message":"flags","order":9}],"skinTones":[{"key":"dark","message":"dark skin tone"},{"key":"light","message":"light skin tone"},{"key":"medium","message":"medium skin tone"},{"key":"medium-dark","message":"medium-dark skin tone"},{"key":"medium-light","message":"medium-light skin tone"}],"subgroups":[{"key":"face-smiling","message":"smiling","order":0},{"key":"face-affection","message":"affectionate","order":1},{"key":"face-tongue","message":"with tongue","order":2},{"key":"face-hand","message":"with hands","order":3},{"key":"face-neutral-skeptical","message":"neutral / skeptical","order":4},{"key":"face-sleepy","message":"sleepy","order":5},{"key":"face-unwell","message":"unwell","order":6},{"key":"face-hat","message":"with hats","order":7},{"key":"face-glasses","message":"with glasses","order":8},{"key":"face-concerned","message":"concerned","order":9},{"key":"face-negative","message":"negative","order":10},{"key":"face-costume","message":"costumed & creatures","order":11},{"key":"cat-face","message":"cat faces","order":12},{"key":"monkey-face","message":"monkey faces","order":13},{"key":"heart","message":"hearts","order":14},{"key":"emotion","message":"emotions","order":15},{"key":"hand-fingers-open","message":"fingers open","order":16},{"key":"hand-fingers-partial","message":"hand signs","order":17},{"key":"hand-single-finger","message":"finger pointing","order":18},{"key":"hand-fingers-closed","message":"fingers closed","order":19},{"key":"hands","message":"hands","order":20},{"key":"hand-prop","message":"hand props","order":21},{"key":"body-parts","message":"body parts","order":22},{"key":"person","message":"people","order":23},{"key":"person-gesture","message":"gestures","order":24},{"key":"person-role","message":"roles & careers","order":25},{"key":"person-fantasy","message":"fantasy","order":26},{"key":"person-activity","message":"activities","order":27},{"key":"person-sport","message":"athletics","order":28},{"key":"person-resting","message":"resting","order":29},{"key":"family","message":"family","order":30},{"key":"person-symbol","message":"people symbols","order":31},{"key":"skin-tone","message":"skin tones","order":32},{"key":"hair-style","message":"hair styles","order":33},{"key":"animal-mammal","message":"mammals","order":34},{"key":"animal-bird","message":"birds","order":35},{"key":"animal-amphibian","message":"amphibians","order":36},{"key":"animal-reptile","message":"reptiles","order":37},{"key":"animal-marine","message":"marine life","order":38},{"key":"animal-bug","message":"bugs","order":39},{"key":"plant-flower","message":"flowers","order":40},{"key":"plant-other","message":"other plants","order":41},{"key":"food-fruit","message":"fruit","order":42},{"key":"food-vegetable","message":"vegetables","order":43},{"key":"food-prepared","message":"cooked / prepared","order":44},{"key":"food-asian","message":"asian","order":45},{"key":"food-marine","message":"seafood","order":46},{"key":"food-sweet","message":"sweets & candy","order":47},{"key":"drink","message":"drink","order":48},{"key":"dishware","message":"dishware","order":49},{"key":"place-map","message":"globes & maps","order":50},{"key":"place-geographic","message":"geographic locations","order":51},{"key":"place-building","message":"buildings","order":52},{"key":"place-religious","message":"religious buildings","order":53},{"key":"place-other","message":"other places","order":54},{"key":"transport-ground","message":"ground transportation","order":55},{"key":"transport-water","message":"water transportation","order":56},{"key":"transport-air","message":"air transportation","order":57},{"key":"hotel","message":"hotel","order":58},{"key":"time","message":"time","order":59},{"key":"sky-weather","message":"weather","order":60},{"key":"event","message":"events & holidays","order":61},{"key":"award-medal","message":"award medals","order":62},{"key":"sport","message":"sports","order":63},{"key":"game","message":"games & hobbies","order":64},{"key":"arts-crafts","message":"arts & crafts","order":65},{"key":"clothing","message":"clothing","order":66},{"key":"sound","message":"sound","order":67},{"key":"music","message":"music","order":68},{"key":"musical-instrument","message":"musical instruments","order":69},{"key":"phone","message":"phone","order":70},{"key":"computer","message":"computer","order":71},{"key":"light-video","message":"light, film & video","order":72},{"key":"book-paper","message":"books & paper","order":73},{"key":"money","message":"money","order":74},{"key":"mail","message":"mail","order":75},{"key":"writing","message":"writing","order":76},{"key":"office","message":"office supplies","order":77},{"key":"lock","message":"lock & keys","order":78},{"key":"tool","message":"tools","order":79},{"key":"science","message":"science equipment","order":80},{"key":"medical","message":"medical","order":81},{"key":"household","message":"household items","order":82},{"key":"other-object","message":"other objects","order":83},{"key":"transport-sign","message":"transport signs","order":84},{"key":"warning","message":"warning symbols","order":85},{"key":"arrow","message":"arrows","order":86},{"key":"religion","message":"religious symbols","order":87},{"key":"zodiac","message":"zodiac signs","order":88},{"key":"av-symbol","message":"audio & video symbols","order":89},{"key":"gender","message":"gender signs","order":90},{"key":"math","message":"math symbols","order":91},{"key":"punctuation","message":"punctuation","order":92},{"key":"currency","message":"currencies","order":93},{"key":"other-symbol","message":"other symbols","order":94},{"key":"keycap","message":"keypad characters","order":95},{"key":"alphanum","message":"alphanumeric symbols","order":96},{"key":"geometric","message":"shapes & colors","order":97},{"key":"flag","message":"other flags","order":98},{"key":"country-flag","message":"country flags","order":99},{"key":"subdivision-flag","message":"subdivision flags","order":100}]} \ No newline at end of file diff --git a/website/docs/datasets.mdx b/website/docs/datasets.mdx index be2bd3d4..fab0e494 100644 --- a/website/docs/datasets.mdx +++ b/website/docs/datasets.mdx @@ -392,9 +392,9 @@ Sorted by original size in ascending order. | es/shortcodes/cldr-native.json | 42.67 kB | 8.35 kB | | es-mx/shortcodes/cldr-native.json | 42.71 kB | 8.44 kB | | de/shortcodes/cldr-native.json | 43.31 kB | 6.83 kB | -| en/shortcodes/github.json | 43.94 kB | 15.12 kB | | nb/shortcodes/cldr-native.json | 44.25 kB | 7.37 kB | -| en/shortcodes/iamcal.json | 46.14 kB | 14.83 kB | +| en/shortcodes/github.json | 45.31 kB | 15.6 kB | +| en/shortcodes/iamcal.json | 47.83 kB | 15.11 kB | | pt/shortcodes/cldr-native.json | 53.12 kB | 10.48 kB | | sv/shortcodes/emojibase-native.json | 54.62 kB | 10.14 kB | | fr/shortcodes/cldr-native.json | 55.84 kB | 10.38 kB | @@ -453,33 +453,33 @@ Sorted by original size in ascending order. | File | Size | Gzipped | | --------------------- | ------: | ------: | -| zh/messages.json | 6.16 kB | 1.92 kB | -| zh-hant/messages.json | 6.16 kB | 1.92 kB | -| en/messages.json | 6.45 kB | 1.58 kB | -| en-gb/messages.json | 6.46 kB | 1.59 kB | -| da/messages.json | 6.46 kB | 1.77 kB | -| sv/messages.json | 6.47 kB | 1.78 kB | -| ms/messages.json | 6.5 kB | 1.79 kB | -| nb/messages.json | 6.51 kB | 1.78 kB | -| ko/messages.json | 6.53 kB | 2.08 kB | -| et/messages.json | 6.56 kB | 1.83 kB | -| nl/messages.json | 6.59 kB | 1.8 kB | -| de/messages.json | 6.6 kB | 1.89 kB | -| it/messages.json | 6.61 kB | 1.81 kB | -| fi/messages.json | 6.61 kB | 1.86 kB | -| pl/messages.json | 6.62 kB | 1.98 kB | -| pt/messages.json | 6.69 kB | 1.88 kB | -| es-mx/messages.json | 6.72 kB | 1.88 kB | -| es/messages.json | 6.72 kB | 1.88 kB | -| ja/messages.json | 6.73 kB | 2.22 kB | -| fr/messages.json | 6.74 kB | 1.9 kB | -| hu/messages.json | 6.76 kB | 1.98 kB | -| lt/messages.json | 6.8 kB | 1.93 kB | -| ru/messages.json | 7.79 kB | 2.31 kB | -| uk/messages.json | 7.86 kB | 2.36 kB | -| hi/messages.json | 8.46 kB | 2.3 kB | -| bn/messages.json | 8.6 kB | 2.31 kB | -| th/messages.json | 9.05 kB | 2.41 kB | +| zh/messages.json | 6.2 kB | 1.94 kB | +| zh-hant/messages.json | 6.2 kB | 1.93 kB | +| en/messages.json | 6.5 kB | 1.59 kB | +| en-gb/messages.json | 6.51 kB | 1.6 kB | +| da/messages.json | 6.51 kB | 1.79 kB | +| sv/messages.json | 6.51 kB | 1.8 kB | +| ms/messages.json | 6.54 kB | 1.81 kB | +| nb/messages.json | 6.56 kB | 1.8 kB | +| ko/messages.json | 6.57 kB | 2.1 kB | +| et/messages.json | 6.61 kB | 1.85 kB | +| nl/messages.json | 6.64 kB | 1.82 kB | +| de/messages.json | 6.65 kB | 1.91 kB | +| it/messages.json | 6.65 kB | 1.83 kB | +| fi/messages.json | 6.66 kB | 1.88 kB | +| pl/messages.json | 6.66 kB | 2 kB | +| pt/messages.json | 6.74 kB | 1.9 kB | +| es-mx/messages.json | 6.77 kB | 1.9 kB | +| es/messages.json | 6.77 kB | 1.9 kB | +| ja/messages.json | 6.78 kB | 2.25 kB | +| fr/messages.json | 6.78 kB | 1.91 kB | +| hu/messages.json | 6.81 kB | 2 kB | +| lt/messages.json | 6.85 kB | 1.96 kB | +| ru/messages.json | 7.84 kB | 2.33 kB | +| uk/messages.json | 7.91 kB | 2.38 kB | +| hi/messages.json | 8.51 kB | 2.32 kB | +| bn/messages.json | 8.66 kB | 2.33 kB | +| th/messages.json | 9.1 kB | 2.42 kB |