I've looked through the Voice Command Checklist documentation
I launch my glassware using a "take a shortcut" voice command.
In string.xml I have:
<string name="takeshortcut_text">take a shortcut</string>
In AndroidManifest.xml I have:
<activity
android:name="com.shortcut.activity.MainActivity"
android:label="@string/takeshortcut_text">
<intent-filter >
<action android:name="com.google.android.glass.action.VOICE_TRIGGER" />
</intent-filter>
When I deploy to Glass and tap when I see "OK Glass", I see it show up as "take a shortcut" in the menu list of cards.
If I make takeshortcut_text "run a timer", the menu card shows "Run Timer", and if I make it "start a run" it shows "Start Run".
I want similar behavior for my glassware. How can I make it show "Take Shortcut" instead?