mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 19:38:21 +00:00
The buttons send Intents to the designated app (specified by niu_actions_package) to do the following: Listen - Read the contents of the screen aloud Translate - Translate the contents of the screen Search - Perform a visual search on the contents of the screen The Intents also include (via URI) the screenshot of current app used as a thumbnail by Recents. The feature is controlled by the enable_niu_actions flag, set to false here. Both this flag and the niu_actions_package String must be set for a given Launcher to use these buttons. Bug: 177955244 Bug: 177955748 Test: Manual (enabled on LauncherGoGoogle and sent Intents to demo Lens app) Change-Id: I3d1f870bb176ed0cbae637a45c072bd8acac1d4b
15 lines
748 B
XML
15 lines
748 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
|
<!-- Label for app share drop target. [CHAR_LIMIT=20] -->
|
|
<string name="app_share_drop_target_label">Share App</string>
|
|
|
|
<!-- ******* Overview ******* -->
|
|
<!-- Label for a button that lets the user listen to the content of the current app. [CHAR_LIMIT=40] -->
|
|
<string name="action_listen">Listen</string>
|
|
<!-- Label for a button that translates a screenshot of the current app. [CHAR_LIMIT=40] -->
|
|
<string name="action_translate">Translate</string>
|
|
<!-- Label for a button that triggers Search on a screenshot of the current app. [CHAR_LIMIT=40] -->
|
|
<string name="action_search">Search</string>
|
|
</resources>
|