aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMike FABIAN <mike.fabian@basyskom.de>2010-07-20 18:55:32 +0200
committerMike FABIAN <mike.fabian@basyskom.de>2010-07-23 14:48:47 +0200
commit2d731a5cf452cad9be731c5c33710b8614e8354e (patch)
tree22d6022fd7c1d5c02aa1369a75671a9d0d748e15 /tools
parent11e7e95e9ed845531467f05c8011a2f258639ba6 (diff)
Changes: messageid-check script: add exceptions for qtn_clk_{city,country,region}
RevBy: TrustMe Details: meegotouch-cities-template does not create an engineering English package at the moment. I am not sure whether it should or not. If it did, would the engineering English package need to be customized as well? At the moment I mark these as used as an exception because I happen to know that they are used.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/messageid-check13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/messageid-check b/tools/messageid-check
index 16e76247..7dacf4e7 100755
--- a/tools/messageid-check
+++ b/tools/messageid-check
@@ -790,6 +790,19 @@ EOF
######################################################################
# generate output to show which ids from specs are used and which are not
+
+# mark some exceptions where engineering English is not expected
+# to exist and which are known to be used anyway as used:
+for my $idFromSpec (sort (keys %idsFromSpec)) {
+ if($idsFromSpec{$idFromSpec} eq "") {
+ if ($idFromSpec =~ /qtn_clk_city/
+ || $idFromSpec =~ /qtn_clk_country/
+ || $idFromSpec =~ /qtn_clk_region/) {
+ $idsFromSpec{$idFromSpec} = "meegotouch-cities-template";
+ }
+ }
+}
+
my $htmlOutIdsFromSpecUsed = "";
my $htmlOutIdsFromSpecNeverUsed = "";
for my $idFromSpec (sort (keys %idsFromSpec)) {