Bring dummy cling strings back as 'strings'
The translations import recognizes 'string', 'string-array' and
'plurals' as valid items to parse, all others are ignored. This is the
reason, why these strings have not been imported back into the codebase.
Making the string declaration same as when it was removed in cl/236665
Change-Id: I6d53ba9d6267706834cb66e9ca99a1335aa01d14
Bug: 7203884
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 04e45ae..0ea12c4 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -266,12 +266,12 @@
<!-- Clings -->
<!-- Dummy string [CHAR_LIMIT=40] -->
- <add-resource type="string" name="custom_workspace_cling_title_1"/>
+ <string name="custom_workspace_cling_title_1"></string>
<!-- Dummy string [CHAR_LIMIT=60] -->
- <add-resource type="string" name="custom_workspace_cling_description_1"/>
+ <string name="custom_workspace_cling_description_1"></string>
<!-- Dummy string [CHAR_LIMIT=40] -->
- <add-resource type="string" name="custom_workspace_cling_title_2"/>
+ <string name="custom_workspace_cling_title_2"></string>
<!-- Dummy string [CHAR_LIMIT=60] -->
- <add-resource type="string" name="custom_workspace_cling_description_2"/>
+ <string name="custom_workspace_cling_description_2"></string>
</resources>