From 984fe6ad2b6914d61874e87b39d450487eb27b69 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 21 Nov 2019 13:45:37 +0100 Subject: [PATCH] tools/check-string-maxlength.py: include limits from Android sources --- tools/check-string-maxlength.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/check-string-maxlength.py b/tools/check-string-maxlength.py index b0be64452..6356fc2f8 100755 --- a/tools/check-string-maxlength.py +++ b/tools/check-string-maxlength.py @@ -8,8 +8,10 @@ import sys from xml.etree import ElementTree maxlengths = { - "menu_install": 20, - "menu_uninstall": 20, + "menu_install": 15, + "menu_uninstall": 15, + "installing": 50, + "uninstalling": 50, "nearby_splash__find_people_button": 30, "nearby_splash__request_permission": 30, "swap": 25,