From fd22f2009e3f8237a771e3f7efbd8f37fff05edb Mon Sep 17 00:00:00 2001 From: superlime <2044212+superlime@users.noreply.github.com> Date: Sat, 5 Sep 2026 03:05:51 +0200 Subject: [PATCH 1/2] Declare NSLocationAlwaysAndWhenInUseUsageDescription (ITMS-90683) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit App Store Connect rejects the upload with: ITMS-90683: Missing purpose string in Info.plist — The Info.plist file for the "Swiftgram.app" bundle should contain a NSLocationAlwaysAndWhenInUseUsageDescription key. The app requests always-authorization for Live Location sharing and declares the "location" background mode, so iOS 11+ needs this key rather than the deprecated NSLocationAlwaysUsageDescription alone. Every Telegram-iOS/*.lproj/InfoPlist.strings already carries a translation for the key — it just never existed in the base plist to be localized. The value added here is the existing en.lproj wording, so the fallback matches the English localization. Co-Authored-By: Claude Opus 5 --- Telegram/BUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Telegram/BUILD b/Telegram/BUILD index ea3559dd7b9..18a034c2733 100644 --- a/Telegram/BUILD +++ b/Telegram/BUILD @@ -1802,6 +1802,8 @@ plist_fragment( Swiftgram stores your contacts heavily encrypted in the Telegram cloud to let you connect with your friends across all your devices. NSFaceIDUsageDescription You can use Face ID to unlock the app. + NSLocationAlwaysAndWhenInUseUsageDescription + When you choose to share your Live Location with friends in a chat, Swiftgram needs background access to your location to keep them updated for the duration of the live sharing. NSLocationAlwaysUsageDescription When you send your location to your friends, Swiftgram needs access to show them a map. You also need this to send locations from an Apple Watch. NSLocationWhenInUseUsageDescription From d41efa8936ae0d58e1a67fcda7ab780eed60e0ad Mon Sep 17 00:00:00 2001 From: superlime <2044212+superlime@users.noreply.github.com> Date: Sat, 5 Sep 2026 03:06:04 +0200 Subject: [PATCH 2/2] Provide Siri example phrases for every intent and localization (ITMS-90626) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit App Store Connect reports 176 instances of: ITMS-90626: Invalid Siri Support — No example phrase was provided for in the '' language. The Intents extension declares five system intents in IntentsSupported (INSendMessageIntent, INStartAudioCallIntent, INSearchForMessagesIntent, INSetMessageAttributeIntent, INSearchCallHistoryIntent), and the app bundles 39 localizations — the 37 .lproj folders under Swiftgram/SGStrings/Strings plus be and ms from Telegram-iOS. Apple wants an example phrase for each intent in each localization, so it expects 39 x 5 = 195 phrases. AppIntentVocabulary.plist existed for only 19 localizations and each covered only INSendMessageIntent, which is exactly the 19 phrases that were present and the 176 that were reported missing. This adds the four missing intents to those 19 files and creates the plist for the 20 localizations that had none. The AppIntentVocabularyResources filegroup already globs Telegram-iOS/*.lproj/AppIntentVocabulary.plist, so the new folders are bundled without a BUILD change. Existing INSendMessageIntent entries are left byte-for-byte unchanged; entries are ordered to match IntentsSupported. The new phrases are machine-translated and would benefit from a pass by native speakers — the validator is satisfied either way, but the strings surface in the Siri and Shortcuts UI, so corrections are welcome. Co-Authored-By: Claude Opus 5 --- .../af.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../ar.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../be.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../ca.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../cs.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../da.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../de.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../el.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../en.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../es.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../fa.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../fi.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../fr.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../he.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../hi.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../hu.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../id.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../it.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../ja.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../km.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../ko.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../ku.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../ms.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../nl.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../no.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../pl.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../pt.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../ro.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../ru.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../si.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../sk.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../sr.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../sv.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../tr.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../uk.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../uz.lproj/AppIntentVocabulary.plist | 32 ++++++++++++ .../vi.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../zh-hans.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ .../zh-hant.lproj/AppIntentVocabulary.plist | 49 +++++++++++++++++++ 39 files changed, 1588 insertions(+) create mode 100644 Telegram/Telegram-iOS/af.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/cs.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/da.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/el.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/fi.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/he.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/hi.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/hu.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/ja.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/km.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/ku.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/no.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/ro.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/si.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/sk.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/sr.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/sv.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/vi.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/zh-hans.lproj/AppIntentVocabulary.plist create mode 100644 Telegram/Telegram-iOS/zh-hant.lproj/AppIntentVocabulary.plist diff --git a/Telegram/Telegram-iOS/af.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/af.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..186bbe9c03a --- /dev/null +++ b/Telegram/Telegram-iOS/af.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Stuur vir Alex 'n Swiftgram-boodskap dat ek oor 10 minute daar sal wees + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Bel Alex op Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Wys my Swiftgram-boodskappe + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Merk my Swiftgram-boodskappe as gelees + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Wys my gemiste Swiftgram-oproepe + + + + + diff --git a/Telegram/Telegram-iOS/ar.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ar.lproj/AppIntentVocabulary.plist index fcdf65836c9..bafe6d58914 100644 --- a/Telegram/Telegram-iOS/ar.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/ar.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ أرسل رسالة لخالد عبر تيليجرام (Swiftgram) وأخبره أن هديته وصلت إلى المنزل + + IntentName + INStartAudioCallIntent + IntentExamples + + اتصل بخالد عبر Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + اعرض رسائلي في Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + ضع علامة مقروء على رسائلي في Swiftgram + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + اعرض مكالماتي الفائتة في Swiftgram + + diff --git a/Telegram/Telegram-iOS/be.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/be.lproj/AppIntentVocabulary.plist index 136ad1e3dba..d260777b172 100644 --- a/Telegram/Telegram-iOS/be.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/be.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Патэлефанаваць Алісе ў Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Пакажы мае паведамленні ў Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Пазнач мае паведамленні ў Swiftgram як прачытаныя + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Пакажы мае прапушчаныя выклікі ў Swiftgram + + diff --git a/Telegram/Telegram-iOS/ca.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ca.lproj/AppIntentVocabulary.plist index 136ad1e3dba..ff99860def1 100644 --- a/Telegram/Telegram-iOS/ca.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/ca.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Truca a l'Alex per Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Mostra els meus missatges de Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Marca els meus missatges de Swiftgram com a llegits + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Mostra les meves trucades perdudes de Swiftgram + + diff --git a/Telegram/Telegram-iOS/cs.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/cs.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..48c2556611b --- /dev/null +++ b/Telegram/Telegram-iOS/cs.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Pošli Alexovi zprávu na Swiftgramu, že tam budu za 10 minut + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Zavolej Alexovi přes Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Zobraz moje zprávy na Swiftgramu + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Označ moje zprávy na Swiftgramu jako přečtené + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Zobraz moje zmeškané hovory na Swiftgramu + + + + + diff --git a/Telegram/Telegram-iOS/da.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/da.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..d7139b65048 --- /dev/null +++ b/Telegram/Telegram-iOS/da.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Send en Swiftgram-besked til Alex om at jeg er der om 10 minutter + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Ring til Alex på Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Vis mine Swiftgram-beskeder + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Markér mine Swiftgram-beskeder som læst + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Vis mine ubesvarede Swiftgram-opkald + + + + + diff --git a/Telegram/Telegram-iOS/de.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/de.lproj/AppIntentVocabulary.plist index 25217fc93b4..746a62dad1a 100644 --- a/Telegram/Telegram-iOS/de.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/de.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Sende Lisa eine Swiftgram-Nachricht, dass ich in 15 Minuten da bin. + + IntentName + INStartAudioCallIntent + IntentExamples + + Rufe Lisa über Swiftgram an + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Zeige meine Swiftgram-Nachrichten + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Markiere meine Swiftgram-Nachrichten als gelesen + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Zeige meine verpassten Swiftgram-Anrufe + + diff --git a/Telegram/Telegram-iOS/el.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/el.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..7e1e763a9e9 --- /dev/null +++ b/Telegram/Telegram-iOS/el.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Στείλε ένα μήνυμα Swiftgram στον Άλεξ ότι θα είμαι εκεί σε 10 λεπτά + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Κάλεσε τον Άλεξ στο Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Δείξε μου τα μηνύματά μου στο Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Σημείωσε τα μηνύματά μου στο Swiftgram ως αναγνωσμένα + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Δείξε μου τις αναπάντητες κλήσεις μου στο Swiftgram + + + + + diff --git a/Telegram/Telegram-iOS/en.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/en.lproj/AppIntentVocabulary.plist index 136ad1e3dba..bd20ca6c792 100644 --- a/Telegram/Telegram-iOS/en.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/en.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Call Alex on Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Show my Swiftgram messages + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Mark my Swiftgram messages as read + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Show my missed Swiftgram calls + + diff --git a/Telegram/Telegram-iOS/es.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/es.lproj/AppIntentVocabulary.plist index ae7044bbbcb..68796757f28 100644 --- a/Telegram/Telegram-iOS/es.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/es.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Envía un mensaje de Swiftgram a Alicia diciéndole que estarás allí en 15 minutos + + IntentName + INStartAudioCallIntent + IntentExamples + + Llama a Alicia por Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Muestra mis mensajes de Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Marca mis mensajes de Swiftgram como leídos + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Muestra mis llamadas perdidas de Swiftgram + + diff --git a/Telegram/Telegram-iOS/fa.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/fa.lproj/AppIntentVocabulary.plist index 136ad1e3dba..c69e89e3f0e 100644 --- a/Telegram/Telegram-iOS/fa.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/fa.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + با علی در Swiftgram تماس بگیر + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + پیام‌های من در Swiftgram را نشان بده + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + پیام‌های من در Swiftgram را خوانده‌شده علامت بزن + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + تماس‌های بی‌پاسخ من در Swiftgram را نشان بده + + diff --git a/Telegram/Telegram-iOS/fi.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/fi.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..0356c3fe563 --- /dev/null +++ b/Telegram/Telegram-iOS/fi.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Lähetä Alexille Swiftgram-viesti, että olen perillä 10 minuutin päästä + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Soita Alexille Swiftgramissa + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Näytä Swiftgram-viestini + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Merkitse Swiftgram-viestini luetuiksi + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Näytä vastaamattomat Swiftgram-puheluni + + + + + diff --git a/Telegram/Telegram-iOS/fr.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/fr.lproj/AppIntentVocabulary.plist index 136ad1e3dba..1d481d2e928 100644 --- a/Telegram/Telegram-iOS/fr.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/fr.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Appelle Alex sur Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Affiche mes messages Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Marque mes messages Swiftgram comme lus + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Affiche mes appels Swiftgram manqués + + diff --git a/Telegram/Telegram-iOS/he.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/he.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..7ad7d74fdb5 --- /dev/null +++ b/Telegram/Telegram-iOS/he.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + שלח הודעת Swiftgram לאלכס שאני מגיע בעוד 10 דקות + + + + IntentName + INStartAudioCallIntent + IntentExamples + + התקשר לאלכס ב-Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + הצג את ההודעות שלי ב-Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + סמן את ההודעות שלי ב-Swiftgram כנקראו + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + הצג את השיחות שלא נענו ב-Swiftgram + + + + + diff --git a/Telegram/Telegram-iOS/hi.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/hi.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..e1c42b4453f --- /dev/null +++ b/Telegram/Telegram-iOS/hi.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + आर्यन को Swiftgram पर संदेश भेजो कि मैं 10 मिनट में पहुँच जाऊँगा + + + + IntentName + INStartAudioCallIntent + IntentExamples + + आर्यन को Swiftgram पर कॉल करो + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + मेरे Swiftgram संदेश दिखाओ + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + मेरे Swiftgram संदेशों को पढ़ा हुआ चिह्नित करो + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + मेरी Swiftgram छूटी हुई कॉल दिखाओ + + + + + diff --git a/Telegram/Telegram-iOS/hu.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/hu.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..9f52b0c3bd4 --- /dev/null +++ b/Telegram/Telegram-iOS/hu.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Küldj Annának egy Swiftgram-üzenetet, hogy 10 perc múlva ott leszek + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Hívd fel Annát a Swiftgramon + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Mutasd a Swiftgram-üzeneteimet + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Jelöld olvasottként a Swiftgram-üzeneteimet + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Mutasd a nem fogadott Swiftgram-hívásaimat + + + + + diff --git a/Telegram/Telegram-iOS/id.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/id.lproj/AppIntentVocabulary.plist index 136ad1e3dba..210bf9e3f99 100644 --- a/Telegram/Telegram-iOS/id.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/id.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Telepon Alex di Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Tampilkan pesan Swiftgram saya + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Tandai pesan Swiftgram saya sebagai sudah dibaca + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Tampilkan panggilan Swiftgram saya yang tidak terjawab + + diff --git a/Telegram/Telegram-iOS/it.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/it.lproj/AppIntentVocabulary.plist index 550ebf81795..7ff3d3c8e61 100644 --- a/Telegram/Telegram-iOS/it.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/it.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Invia un messaggio su Swiftgram (Swiftgramma) ad Alex dicendo che sarò lì tra 10 minuti + + IntentName + INStartAudioCallIntent + IntentExamples + + Chiama Alex su Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Mostra i miei messaggi su Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Segna i miei messaggi su Swiftgram come letti + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Mostra le mie chiamate perse su Swiftgram + + diff --git a/Telegram/Telegram-iOS/ja.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ja.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..8bd4dbd6007 --- /dev/null +++ b/Telegram/Telegram-iOS/ja.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Swiftgramでアレックスに10分で着くとメッセージを送って + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Swiftgramでアレックスに電話して + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Swiftgramのメッセージを見せて + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Swiftgramのメッセージを既読にして + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Swiftgramの不在着信を見せて + + + + + diff --git a/Telegram/Telegram-iOS/km.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/km.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..681b40e3f57 --- /dev/null +++ b/Telegram/Telegram-iOS/km.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + ផ្ញើសារ Swiftgram ទៅសុភា ថាខ្ញុំនឹងទៅដល់ក្នុងរយៈពេល ១០ នាទី + + + + IntentName + INStartAudioCallIntent + IntentExamples + + ហៅទូរស័ព្ទទៅសុភាតាម Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + បង្ហាញសាររបស់ខ្ញុំក្នុង Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + សម្គាល់សាររបស់ខ្ញុំក្នុង Swiftgram ថាបានអាន + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + បង្ហាញការហៅដែលខកខានរបស់ខ្ញុំក្នុង Swiftgram + + + + + diff --git a/Telegram/Telegram-iOS/ko.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ko.lproj/AppIntentVocabulary.plist index 980b2b7448b..9223bf9eabd 100644 --- a/Telegram/Telegram-iOS/ko.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/ko.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ 앨리스에게 나 15분 안에 도착한다고 Swiftgram 메시지 보내줘 + + IntentName + INStartAudioCallIntent + IntentExamples + + Swiftgram으로 앨리스에게 전화해줘 + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Swiftgram 메시지 보여줘 + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Swiftgram 메시지를 읽음으로 표시해줘 + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Swiftgram 부재중 전화 보여줘 + + diff --git a/Telegram/Telegram-iOS/ku.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ku.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..e25c8708fd3 --- /dev/null +++ b/Telegram/Telegram-iOS/ku.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Ji Alex re peyameke Swiftgram bişîne ku ez ê di 10 deqeyan de li wir bim + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Bi Swiftgram gazî Alex bike + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Peyamên min ên Swiftgram nîşan bide + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Peyamên min ên Swiftgram wek xwendî nîşan bike + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Bangên min ên Swiftgram ên ji dest çûyî nîşan bide + + + + + diff --git a/Telegram/Telegram-iOS/ms.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ms.lproj/AppIntentVocabulary.plist index 136ad1e3dba..ddb4f55a139 100644 --- a/Telegram/Telegram-iOS/ms.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/ms.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Telefon Alex di Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Tunjukkan mesej Swiftgram saya + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Tandakan mesej Swiftgram saya sebagai telah dibaca + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Tunjukkan panggilan Swiftgram saya yang terlepas + + diff --git a/Telegram/Telegram-iOS/nl.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/nl.lproj/AppIntentVocabulary.plist index fcc0a842f15..558198531b4 100644 --- a/Telegram/Telegram-iOS/nl.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/nl.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Stuur een Swiftgram-bericht naar Maartje met ik ben er over 15 minuten. + + IntentName + INStartAudioCallIntent + IntentExamples + + Bel Maartje via Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Toon mijn Swiftgram-berichten + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Markeer mijn Swiftgram-berichten als gelezen + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Toon mijn gemiste Swiftgram-oproepen + + diff --git a/Telegram/Telegram-iOS/no.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/no.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..7a585790b9e --- /dev/null +++ b/Telegram/Telegram-iOS/no.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Send en Swiftgram-melding til Alex om at jeg er der om 10 minutter + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Ring Alex på Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Vis Swiftgram-meldingene mine + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Merk Swiftgram-meldingene mine som lest + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Vis de tapte Swiftgram-anropene mine + + + + + diff --git a/Telegram/Telegram-iOS/pl.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/pl.lproj/AppIntentVocabulary.plist index 136ad1e3dba..3dd938aa69b 100644 --- a/Telegram/Telegram-iOS/pl.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/pl.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Zadzwoń do Alexa przez Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Pokaż moje wiadomości na Swiftgramie + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Oznacz moje wiadomości na Swiftgramie jako przeczytane + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Pokaż moje nieodebrane połączenia na Swiftgramie + + diff --git a/Telegram/Telegram-iOS/pt.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/pt.lproj/AppIntentVocabulary.plist index 2e33f8946e9..512a9c835a4 100644 --- a/Telegram/Telegram-iOS/pt.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/pt.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Enviar uma mensagem no Swiftgram para a Alice dizendo que eu chegarei lá em 15 minutos + + IntentName + INStartAudioCallIntent + IntentExamples + + Ligar para a Alice no Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Mostrar as minhas mensagens no Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Marcar as minhas mensagens no Swiftgram como lidas + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Mostrar as minhas chamadas perdidas no Swiftgram + + diff --git a/Telegram/Telegram-iOS/ro.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ro.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..f78b5e0388d --- /dev/null +++ b/Telegram/Telegram-iOS/ro.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Trimite-i lui Alex un mesaj pe Swiftgram că ajung în 10 minute + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Sună-l pe Alex pe Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Arată-mi mesajele mele de pe Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Marchează mesajele mele de pe Swiftgram ca citite + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Arată-mi apelurile pierdute de pe Swiftgram + + + + + diff --git a/Telegram/Telegram-iOS/ru.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/ru.lproj/AppIntentVocabulary.plist index 643154cf8c5..72ce783b9b2 100644 --- a/Telegram/Telegram-iOS/ru.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/ru.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Отправить Алисе сообщение в Swiftgram: я буду через 10 минут + + IntentName + INStartAudioCallIntent + IntentExamples + + Позвонить Алисе в Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Показать мои сообщения в Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Отметить мои сообщения в Swiftgram как прочитанные + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Показать мои пропущенные звонки в Swiftgram + + diff --git a/Telegram/Telegram-iOS/si.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/si.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..183a5003f51 --- /dev/null +++ b/Telegram/Telegram-iOS/si.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + නිමල්ට Swiftgram පණිවිඩයක් යවන්න, මම මිනිත්තු 10කින් එනවා කියලා + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Swiftgram හරහා නිමල්ට කතා කරන්න + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + මගේ Swiftgram පණිවිඩ පෙන්වන්න + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + මගේ Swiftgram පණිවිඩ කියවූ ලෙස සලකුණු කරන්න + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + මගේ මඟ හැරුණු Swiftgram ඇමතුම් පෙන්වන්න + + + + + diff --git a/Telegram/Telegram-iOS/sk.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/sk.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..f94aba98bb5 --- /dev/null +++ b/Telegram/Telegram-iOS/sk.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Pošli Alexovi správu na Swiftgrame, že tam budem o 10 minút + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Zavolaj Alexovi cez Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Zobraz moje správy na Swiftgrame + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Označ moje správy na Swiftgrame ako prečítané + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Zobraz moje zmeškané hovory na Swiftgrame + + + + + diff --git a/Telegram/Telegram-iOS/sr.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/sr.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..1b040966791 --- /dev/null +++ b/Telegram/Telegram-iOS/sr.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Пошаљи Ани поруку на Swiftgram-у да стижем за 10 минута + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Позови Ану преко Swiftgram-а + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Прикажи моје поруке на Swiftgram-у + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Означи моје поруке на Swiftgram-у као прочитане + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Прикажи моје пропуштене позиве на Swiftgram-у + + + + + diff --git a/Telegram/Telegram-iOS/sv.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/sv.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..f1b4794d8c6 --- /dev/null +++ b/Telegram/Telegram-iOS/sv.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Skicka ett Swiftgram-meddelande till Alex om att jag är där om 10 minuter + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Ring Alex på Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Visa mina Swiftgram-meddelanden + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Markera mina Swiftgram-meddelanden som lästa + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Visa mina missade Swiftgram-samtal + + + + + diff --git a/Telegram/Telegram-iOS/tr.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/tr.lproj/AppIntentVocabulary.plist index 136ad1e3dba..0431713884f 100644 --- a/Telegram/Telegram-iOS/tr.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/tr.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Swiftgram'dan Ali'yi ara + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Swiftgram mesajlarımı göster + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Swiftgram mesajlarımı okundu olarak işaretle + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Swiftgram'daki cevapsız aramalarımı göster + + diff --git a/Telegram/Telegram-iOS/uk.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/uk.lproj/AppIntentVocabulary.plist index 136ad1e3dba..3aafb2993b2 100644 --- a/Telegram/Telegram-iOS/uk.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/uk.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Зателефонувати Алісі в Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Показати мої повідомлення в Swiftgram + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Позначити мої повідомлення в Swiftgram як прочитані + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Показати мої пропущені дзвінки в Swiftgram + + diff --git a/Telegram/Telegram-iOS/uz.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/uz.lproj/AppIntentVocabulary.plist index 136ad1e3dba..7e4b117f050 100644 --- a/Telegram/Telegram-iOS/uz.lproj/AppIntentVocabulary.plist +++ b/Telegram/Telegram-iOS/uz.lproj/AppIntentVocabulary.plist @@ -12,6 +12,38 @@ Send a Swiftgram message to Alex saying I'll be there in 10 minutes + + IntentName + INStartAudioCallIntent + IntentExamples + + Swiftgram orqali Azizga qoʻngʻiroq qil + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Swiftgram xabarlarimni koʻrsat + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Swiftgram xabarlarimni oʻqilgan deb belgila + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Swiftgramdagi javobsiz qoʻngʻiroqlarimni koʻrsat + + diff --git a/Telegram/Telegram-iOS/vi.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/vi.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..5fb39db40bb --- /dev/null +++ b/Telegram/Telegram-iOS/vi.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + Gửi tin nhắn Swiftgram cho An nói rằng tôi sẽ đến trong 10 phút + + + + IntentName + INStartAudioCallIntent + IntentExamples + + Gọi cho An trên Swiftgram + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + Hiển thị tin nhắn Swiftgram của tôi + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + Đánh dấu tin nhắn Swiftgram của tôi là đã đọc + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + Hiển thị các cuộc gọi nhỡ trên Swiftgram của tôi + + + + + diff --git a/Telegram/Telegram-iOS/zh-hans.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/zh-hans.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..9eda3e221b9 --- /dev/null +++ b/Telegram/Telegram-iOS/zh-hans.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + 用Swiftgram给小明发消息说我十分钟后到 + + + + IntentName + INStartAudioCallIntent + IntentExamples + + 用Swiftgram给小明打电话 + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + 显示我的Swiftgram消息 + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + 把我的Swiftgram消息标记为已读 + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + 显示我的Swiftgram未接来电 + + + + + diff --git a/Telegram/Telegram-iOS/zh-hant.lproj/AppIntentVocabulary.plist b/Telegram/Telegram-iOS/zh-hant.lproj/AppIntentVocabulary.plist new file mode 100644 index 00000000000..09598d664fc --- /dev/null +++ b/Telegram/Telegram-iOS/zh-hant.lproj/AppIntentVocabulary.plist @@ -0,0 +1,49 @@ + + + + + IntentPhrases + + + IntentName + INSendMessageIntent + IntentExamples + + 用Swiftgram傳訊息給小明說我十分鐘後到 + + + + IntentName + INStartAudioCallIntent + IntentExamples + + 用Swiftgram打電話給小明 + + + + IntentName + INSearchForMessagesIntent + IntentExamples + + 顯示我的Swiftgram訊息 + + + + IntentName + INSetMessageAttributeIntent + IntentExamples + + 把我的Swiftgram訊息標記為已讀 + + + + IntentName + INSearchCallHistoryIntent + IntentExamples + + 顯示我的Swiftgram未接來電 + + + + +