diff options
| author | 2016-01-28 13:55:35 +0900 | |
|---|---|---|
| committer | 2016-01-28 13:57:06 +0900 | |
| commit | f986b458d6520ff1fd112e89ec1cd06a4033994e (patch) | |
| tree | 28f4d6ea024bd45e1b33298be6cd9d6e5451d884 | |
| parent | 24bbed26abaca6f10455e181d9d5aca2dc1ccbe0 (diff) | |
PIP: Disable translations for picture-in-picture temporarily
UX and strings are not finalized yet, so do not ask for translation
for a while.
Bug: 26602353
Change-Id: I8d823ace47cae39a07a68ac8867ae58e2cd03f70
| -rw-r--r-- | packages/SystemUI/res/values/strings_tv.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/SystemUI/res/values/strings_tv.xml b/packages/SystemUI/res/values/strings_tv.xml index d432a627a84d..c64327de65da 100644 --- a/packages/SystemUI/res/values/strings_tv.xml +++ b/packages/SystemUI/res/values/strings_tv.xml @@ -18,15 +18,15 @@ --> <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <!-- Button to close PIP on PIP UI --> - <string name="pip_exit">Close PIP</string> + <string name="pip_exit" translatable="false">Close PIP</string> <!-- Button to move PIP screen to the fullscreen on PIP UI --> - <string name="pip_fullscreen">Full screen</string> + <string name="pip_fullscreen" translatable="false">Full screen</string> <!-- Button to play the current media on PIP UI --> - <string name="pip_play">Play</string> + <string name="pip_play" translatable="false">Play</string> <!-- Button to pause the current media on PIP UI --> - <string name="pip_pause">Pause</string> + <string name="pip_pause" translatable="false">Pause</string> <!-- Button to close PIP overlay menu on PIP UI --> - <string name="pip_cancel">Cancel</string> + <string name="pip_cancel" translatable="false">Cancel</string> <!-- Overlay text on PIP --> - <string name="pip_hold_home">Hold HOME to control PIP</string> + <string name="pip_hold_home" translatable="false">Hold HOME to control PIP</string> </resources> |