aboutsummaryrefslogtreecommitdiff
path: root/tools/rro
diff options
context:
space:
mode:
Diffstat (limited to 'tools/rro')
-rw-r--r--tools/rro/resource_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rro/resource_utils.py b/tools/rro/resource_utils.py
index 8628abf..11e8edc 100644
--- a/tools/rro/resource_utils.py
+++ b/tools/rro/resource_utils.py
@@ -111,7 +111,7 @@ def get_resources_from_single_file(filename, ignore_strings=False):
resType = "array"
if resource.tag == 'item' or resource.tag == 'public':
resType = resource.get('type')
- if resType == 'string' and ignore_strings:
+ if (resType == 'string' or resType == 'plurals') and ignore_strings:
continue
if resType == 'overlayable':
for policy in resource: