You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2013/06/14 19:30:53 UTC

[24/83] [abbrv] [partial] start of lazy loading: axe all vendored-in libs

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/index.html
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/index.html b/lib/cordova-blackberry/bin/templates/project/www/index.html
deleted file mode 100644
index e84fbd7..0000000
--- a/lib/cordova-blackberry/bin/templates/project/www/index.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<!DOCTYPE html>
-<!--
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-     KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
--->
-<html>
-    <head>
-        <meta charset="utf-8" />
-        <meta name="format-detection" content="telephone=no" />
-        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
-        <link rel="stylesheet" type="text/css" href="css/index.css" />
-        <title>Hello World</title>
-    </head>
-    <body>
-        <div class="app">
-            <h1>Apache Cordova</h1>
-            <div id="deviceready" class="blink">
-                <p class="event listening">Connecting to Device</p>
-                <p class="event received">Device is Ready</p>
-            </div>
-        </div>
-        <script type="text/javascript" src="cordova.js"></script>
-        <script type="text/javascript" src="js/index.js"></script>
-        <script type="text/javascript">
-            app.initialize();
-        </script>
-    </body>
-</html>

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/js/index.js
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/js/index.js b/lib/cordova-blackberry/bin/templates/project/www/js/index.js
deleted file mode 100644
index 31d9064..0000000
--- a/lib/cordova-blackberry/bin/templates/project/www/js/index.js
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-var app = {
-    // Application Constructor
-    initialize: function() {
-        this.bindEvents();
-    },
-    // Bind Event Listeners
-    //
-    // Bind any events that are required on startup. Common events are:
-    // 'load', 'deviceready', 'offline', and 'online'.
-    bindEvents: function() {
-        document.addEventListener('deviceready', this.onDeviceReady, false);
-    },
-    // deviceready Event Handler
-    //
-    // The scope of 'this' is the event. In order to call the 'receivedEvent'
-    // function, we must explicity call 'app.receivedEvent(...);'
-    onDeviceReady: function() {
-        app.receivedEvent('deviceready');
-    },
-    // Update DOM on a Received Event
-    receivedEvent: function(id) {
-        var parentElement = document.getElementById(id);
-        var listeningElement = parentElement.querySelector('.listening');
-        var receivedElement = parentElement.querySelector('.received');
-
-        listeningElement.setAttribute('style', 'display:none;');
-        receivedElement.setAttribute('style', 'display:block;');
-
-        console.log('Received Event: ' + id);
-    }
-};

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/json2.js
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/json2.js b/lib/cordova-blackberry/bin/templates/project/www/json2.js
deleted file mode 100644
index c52b92a..0000000
--- a/lib/cordova-blackberry/bin/templates/project/www/json2.js
+++ /dev/null
@@ -1,482 +0,0 @@
-/*
-    http://www.JSON.org/json2.js
-    2010-03-20
-
-    Public Domain.
-
-    NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
-
-    See http://www.JSON.org/js.html
-
-
-    This code should be minified before deployment.
-    See http://javascript.crockford.com/jsmin.html
-
-    USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD CODE FROM SERVERS YOU DO
-    NOT CONTROL.
-
-
-    This file creates a global JSON object containing two methods: stringify
-    and parse.
-
-        JSON.stringify(value, replacer, space)
-            value       any JavaScript value, usually an object or array.
-
-            replacer    an optional parameter that determines how object
-                        values are stringified for objects. It can be a
-                        function or an array of strings.
-
-            space       an optional parameter that specifies the indentation
-                        of nested structures. If it is omitted, the text will
-                        be packed without extra whitespace. If it is a number,
-                        it will specify the number of spaces to indent at each
-                        level. If it is a string (such as '\t' or '&nbsp;'),
-                        it contains the characters used to indent at each level.
-
-            This method produces a JSON text from a JavaScript value.
-
-            When an object value is found, if the object contains a toJSON
-            method, its toJSON method will be called and the result will be
-            stringified. A toJSON method does not serialize: it returns the
-            value represented by the name/value pair that should be serialized,
-            or undefined if nothing should be serialized. The toJSON method
-            will be passed the key associated with the value, and this will be
-            bound to the value
-
-            For example, this would serialize Dates as ISO strings.
-
-                Date.prototype.toJSON = function (key) {
-                    function f(n) {
-                        // Format integers to have at least two digits.
-                        return n < 10 ? '0' + n : n;
-                    }
-
-                    return this.getUTCFullYear()   + '-' +
-                         f(this.getUTCMonth() + 1) + '-' +
-                         f(this.getUTCDate())      + 'T' +
-                         f(this.getUTCHours())     + ':' +
-                         f(this.getUTCMinutes())   + ':' +
-                         f(this.getUTCSeconds())   + 'Z';
-                };
-
-            You can provide an optional replacer method. It will be passed the
-            key and value of each member, with this bound to the containing
-            object. The value that is returned from your method will be
-            serialized. If your method returns undefined, then the member will
-            be excluded from the serialization.
-
-            If the replacer parameter is an array of strings, then it will be
-            used to select the members to be serialized. It filters the results
-            such that only members with keys listed in the replacer array are
-            stringified.
-
-            Values that do not have JSON representations, such as undefined or
-            functions, will not be serialized. Such values in objects will be
-            dropped; in arrays they will be replaced with null. You can use
-            a replacer function to replace those with JSON values.
-            JSON.stringify(undefined) returns undefined.
-
-            The optional space parameter produces a stringification of the
-            value that is filled with line breaks and indentation to make it
-            easier to read.
-
-            If the space parameter is a non-empty string, then that string will
-            be used for indentation. If the space parameter is a number, then
-            the indentation will be that many spaces.
-
-            Example:
-
-            text = JSON.stringify(['e', {pluribus: 'unum'}]);
-            // text is '["e",{"pluribus":"unum"}]'
-
-
-            text = JSON.stringify(['e', {pluribus: 'unum'}], null, '\t');
-            // text is '[\n\t"e",\n\t{\n\t\t"pluribus": "unum"\n\t}\n]'
-
-            text = JSON.stringify([new Date()], function (key, value) {
-                return this[key] instanceof Date ?
-                    'Date(' + this[key] + ')' : value;
-            });
-            // text is '["Date(---current time---)"]'
-
-
-        JSON.parse(text, reviver)
-            This method parses a JSON text to produce an object or array.
-            It can throw a SyntaxError exception.
-
-            The optional reviver parameter is a function that can filter and
-            transform the results. It receives each of the keys and values,
-            and its return value is used instead of the original value.
-            If it returns what it received, then the structure is not modified.
-            If it returns undefined then the member is deleted.
-
-            Example:
-
-            // Parse the text. Values that look like ISO date strings will
-            // be converted to Date objects.
-
-            myData = JSON.parse(text, function (key, value) {
-                var a;
-                if (typeof value === 'string') {
-                    a =
-/^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.\d*)?)Z$/.exec(value);
-                    if (a) {
-                        return new Date(Date.UTC(+a[1], +a[2] - 1, +a[3], +a[4],
-                            +a[5], +a[6]));
-                    }
-                }
-                return value;
-            });
-
-            myData = JSON.parse('["Date(09/09/2001)"]', function (key, value) {
-                var d;
-                if (typeof value === 'string' &&
-                        value.slice(0, 5) === 'Date(' &&
-                        value.slice(-1) === ')') {
-                    d = new Date(value.slice(5, -1));
-                    if (d) {
-                        return d;
-                    }
-                }
-                return value;
-            });
-
-
-    This is a reference implementation. You are free to copy, modify, or
-    redistribute.
-*/
-
-/*jslint evil: true, strict: false */
-
-/*members "", "\b", "\t", "\n", "\f", "\r", "\"", JSON, "\\", apply,
-    call, charCodeAt, getUTCDate, getUTCFullYear, getUTCHours,
-    getUTCMinutes, getUTCMonth, getUTCSeconds, hasOwnProperty, join,
-    lastIndex, length, parse, prototype, push, replace, slice, stringify,
-    test, toJSON, toString, valueOf
-*/
-
-
-// Create a JSON object only if one does not already exist. We create the
-// methods in a closure to avoid creating global variables.
-
-if (!this.JSON) {
-    this.JSON = {};
-}
-
-(function () {
-
-    function f(n) {
-        // Format integers to have at least two digits.
-        return n < 10 ? '0' + n : n;
-    }
-
-    if (typeof Date.prototype.toJSON !== 'function') {
-
-        Date.prototype.toJSON = function (key) {
-
-            return isFinite(this.valueOf()) ?
-                   this.getUTCFullYear()   + '-' +
-                 f(this.getUTCMonth() + 1) + '-' +
-                 f(this.getUTCDate())      + 'T' +
-                 f(this.getUTCHours())     + ':' +
-                 f(this.getUTCMinutes())   + ':' +
-                 f(this.getUTCSeconds())   + 'Z' : null;
-        };
-
-        String.prototype.toJSON =
-        Number.prototype.toJSON =
-        Boolean.prototype.toJSON = function (key) {
-            return this.valueOf();
-        };
-    }
-
-    var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
-        escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
-        gap,
-        indent,
-        meta = {    // table of character substitutions
-            '\b': '\\b',
-            '\t': '\\t',
-            '\n': '\\n',
-            '\f': '\\f',
-            '\r': '\\r',
-            '"' : '\\"',
-            '\\': '\\\\'
-        },
-        rep;
-
-
-    function quote(string) {
-
-// If the string contains no control characters, no quote characters, and no
-// backslash characters, then we can safely slap some quotes around it.
-// Otherwise we must also replace the offending characters with safe escape
-// sequences.
-
-        escapable.lastIndex = 0;
-        return escapable.test(string) ?
-            '"' + string.replace(escapable, function (a) {
-                var c = meta[a];
-                return typeof c === 'string' ? c :
-                    '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
-            }) + '"' :
-            '"' + string + '"';
-    }
-
-
-    function str(key, holder) {
-
-// Produce a string from holder[key].
-
-        var i,          // The loop counter.
-            k,          // The member key.
-            v,          // The member value.
-            length,
-            mind = gap,
-            partial,
-            value = holder[key];
-
-// If the value has a toJSON method, call it to obtain a replacement value.
-
-        if (value && typeof value === 'object' &&
-                typeof value.toJSON === 'function') {
-            value = value.toJSON(key);
-        }
-
-// If we were called with a replacer function, then call the replacer to
-// obtain a replacement value.
-
-        if (typeof rep === 'function') {
-            value = rep.call(holder, key, value);
-        }
-
-// What happens next depends on the value's type.
-
-        switch (typeof value) {
-        case 'string':
-            return quote(value);
-
-        case 'number':
-
-// JSON numbers must be finite. Encode non-finite numbers as null.
-
-            return isFinite(value) ? String(value) : 'null';
-
-        case 'boolean':
-        case 'null':
-
-// If the value is a boolean or null, convert it to a string. Note:
-// typeof null does not produce 'null'. The case is included here in
-// the remote chance that this gets fixed someday.
-
-            return String(value);
-
-// If the type is 'object', we might be dealing with an object or an array or
-// null.
-
-        case 'object':
-
-// Due to a specification blunder in ECMAScript, typeof null is 'object',
-// so watch out for that case.
-
-            if (!value) {
-                return 'null';
-            }
-
-// Make an array to hold the partial results of stringifying this object value.
-
-            gap += indent;
-            partial = [];
-
-// Is the value an array?
-
-            if (Object.prototype.toString.apply(value) === '[object Array]') {
-
-// The value is an array. Stringify every element. Use null as a placeholder
-// for non-JSON values.
-
-                length = value.length;
-                for (i = 0; i < length; i += 1) {
-                    partial[i] = str(i, value) || 'null';
-                }
-
-// Join all of the elements together, separated with commas, and wrap them in
-// brackets.
-
-                v = partial.length === 0 ? '[]' :
-                    gap ? '[\n' + gap +
-                            partial.join(',\n' + gap) + '\n' +
-                                mind + ']' :
-                          '[' + partial.join(',') + ']';
-                gap = mind;
-                return v;
-            }
-
-// If the replacer is an array, use it to select the members to be stringified.
-
-            if (rep && typeof rep === 'object') {
-                length = rep.length;
-                for (i = 0; i < length; i += 1) {
-                    k = rep[i];
-                    if (typeof k === 'string') {
-                        v = str(k, value);
-                        if (v) {
-                            partial.push(quote(k) + (gap ? ': ' : ':') + v);
-                        }
-                    }
-                }
-            } else {
-
-// Otherwise, iterate through all of the keys in the object.
-
-                for (k in value) {
-                    if (Object.hasOwnProperty.call(value, k)) {
-                        v = str(k, value);
-                        if (v) {
-                            partial.push(quote(k) + (gap ? ': ' : ':') + v);
-                        }
-                    }
-                }
-            }
-
-// Join all of the member texts together, separated with commas,
-// and wrap them in braces.
-
-            v = partial.length === 0 ? '{}' :
-                gap ? '{\n' + gap + partial.join(',\n' + gap) + '\n' +
-                        mind + '}' : '{' + partial.join(',') + '}';
-            gap = mind;
-            return v;
-        }
-    }
-
-// If the JSON object does not yet have a stringify method, give it one.
-
-    if (typeof JSON.stringify !== 'function') {
-        JSON.stringify = function (value, replacer, space) {
-
-// The stringify method takes a value and an optional replacer, and an optional
-// space parameter, and returns a JSON text. The replacer can be a function
-// that can replace values, or an array of strings that will select the keys.
-// A default replacer method can be provided. Use of the space parameter can
-// produce text that is more easily readable.
-
-            var i;
-            gap = '';
-            indent = '';
-
-// If the space parameter is a number, make an indent string containing that
-// many spaces.
-
-            if (typeof space === 'number') {
-                for (i = 0; i < space; i += 1) {
-                    indent += ' ';
-                }
-
-// If the space parameter is a string, it will be used as the indent string.
-
-            } else if (typeof space === 'string') {
-                indent = space;
-            }
-
-// If there is a replacer, it must be a function or an array.
-// Otherwise, throw an error.
-
-            rep = replacer;
-            if (replacer && typeof replacer !== 'function' &&
-                    (typeof replacer !== 'object' ||
-                     typeof replacer.length !== 'number')) {
-                throw new Error('JSON.stringify');
-            }
-
-// Make a fake root object containing our value under the key of ''.
-// Return the result of stringifying the value.
-
-            return str('', {'': value});
-        };
-    }
-
-
-// If the JSON object does not yet have a parse method, give it one.
-
-    if (typeof JSON.parse !== 'function') {
-        JSON.parse = function (text, reviver) {
-
-// The parse method takes a text and an optional reviver function, and returns
-// a JavaScript value if the text is a valid JSON text.
-
-            var j;
-
-            function walk(holder, key) {
-
-// The walk method is used to recursively walk the resulting structure so
-// that modifications can be made.
-
-                var k, v, value = holder[key];
-                if (value && typeof value === 'object') {
-                    for (k in value) {
-                        if (Object.hasOwnProperty.call(value, k)) {
-                            v = walk(value, k);
-                            if (v !== undefined) {
-                                value[k] = v;
-                            } else {
-                                delete value[k];
-                            }
-                        }
-                    }
-                }
-                return reviver.call(holder, key, value);
-            }
-
-
-// Parsing happens in four stages. In the first stage, we replace certain
-// Unicode characters with escape sequences. JavaScript handles many characters
-// incorrectly, either silently deleting them, or treating them as line endings.
-
-            text = String(text);
-            cx.lastIndex = 0;
-            if (cx.test(text)) {
-                text = text.replace(cx, function (a) {
-                    return '\\u' +
-                        ('0000' + a.charCodeAt(0).toString(16)).slice(-4);
-                });
-            }
-
-// In the second stage, we run the text against regular expressions that look
-// for non-JSON patterns. We are especially concerned with '()' and 'new'
-// because they can cause invocation, and '=' because it can cause mutation.
-// But just to be safe, we want to reject all unexpected forms.
-
-// We split the second stage into 4 regexp operations in order to work around
-// crippling inefficiencies in IE's and Safari's regexp engines. First we
-// replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
-// replace all simple value tokens with ']' characters. Third, we delete all
-// open brackets that follow a colon or comma or that begin the text. Finally,
-// we look to see that the remaining characters are only whitespace or ']' or
-// ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval.
-
-            if (/^[\],:{}\s]*$/.
-test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@').
-replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']').
-replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {
-
-// In the third stage we use the eval function to compile the text into a
-// JavaScript structure. The '{' operator is subject to a syntactic ambiguity
-// in JavaScript: it can begin a block or an object literal. We wrap the text
-// in parens to eliminate the ambiguity.
-
-                j = eval('(' + text + ')');
-
-// In the optional fourth stage, we recursively walk the new structure, passing
-// each name/value pair to a reviver function for possible transformation.
-
-                return typeof reviver === 'function' ?
-                    walk({'': j}, '') : j;
-            }
-
-// If the text is not JSON parseable, then a SyntaxError is thrown.
-
-            throw new SyntaxError('JSON.parse');
-        };
-    }
-}());
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/icon/blackberry/icon-80.png
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/icon/blackberry/icon-80.png b/lib/cordova-blackberry/bin/templates/project/www/res/icon/blackberry/icon-80.png
deleted file mode 100644
index f86a27a..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/icon/blackberry/icon-80.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar.js.gz
deleted file mode 100644
index 3c1fecd..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_AE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_AE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_AE.js.gz
deleted file mode 100644
index 677a6ad..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_AE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_BH.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_BH.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_BH.js.gz
deleted file mode 100644
index 602c22c..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_BH.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_DZ.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_DZ.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_DZ.js.gz
deleted file mode 100644
index 485b9a2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_DZ.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_EG.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_EG.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_EG.js.gz
deleted file mode 100644
index dfc2045..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_EG.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_IQ.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_IQ.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_IQ.js.gz
deleted file mode 100644
index 9e7c5ae..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_IQ.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_JO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_JO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_JO.js.gz
deleted file mode 100644
index 72d26ca..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_JO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_KW.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_KW.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_KW.js.gz
deleted file mode 100644
index 1dde592..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_KW.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LB.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LB.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LB.js.gz
deleted file mode 100644
index 640e8be..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LB.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LY.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LY.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LY.js.gz
deleted file mode 100644
index b7beb36..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_LY.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_MA.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_MA.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_MA.js.gz
deleted file mode 100644
index 3eb49f9..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_MA.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_OM.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_OM.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_OM.js.gz
deleted file mode 100644
index b68cf81..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_OM.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_QA.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_QA.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_QA.js.gz
deleted file mode 100644
index d2583d4..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_QA.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SA.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SA.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SA.js.gz
deleted file mode 100644
index aa15f88..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SA.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SD.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SD.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SD.js.gz
deleted file mode 100644
index 116f0e2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SD.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SY.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SY.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SY.js.gz
deleted file mode 100644
index 65aaeb0..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_SY.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_TN.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_TN.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_TN.js.gz
deleted file mode 100644
index 853cc9e..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_TN.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_YE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_YE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_YE.js.gz
deleted file mode 100644
index 841ee63..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ar_YE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be.js.gz
deleted file mode 100644
index a0a64b8..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be_BY.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be_BY.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be_BY.js.gz
deleted file mode 100644
index fec5f32..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/be_BY.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg.js.gz
deleted file mode 100644
index 4f816d8..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg_BG.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg_BG.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg_BG.js.gz
deleted file mode 100644
index 9cc5ec3..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bg_BG.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bn_IN.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bn_IN.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bn_IN.js.gz
deleted file mode 100644
index 3f40ba4..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/bn_IN.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca.js.gz
deleted file mode 100644
index 32e04c5..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES.js.gz
deleted file mode 100644
index 93d8ec3..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES_PREEURO.js.gz
deleted file mode 100644
index 69be9b1..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ca_ES_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs.js.gz
deleted file mode 100644
index 28dd3ee..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ.js.gz
deleted file mode 100644
index 95d0e32..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_EURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_EURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_EURO.js.gz
deleted file mode 100644
index 9d821d6..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_EURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_PREEURO.js.gz
deleted file mode 100644
index 681c4b3..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/cs_CZ_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da.js.gz
deleted file mode 100644
index ba270ad..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK.js.gz
deleted file mode 100644
index 0b9dbe2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK_EURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK_EURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK_EURO.js.gz
deleted file mode 100644
index 8d52b6a..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/da_DK_EURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de.js.gz
deleted file mode 100644
index a65adda..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT.js.gz
deleted file mode 100644
index fb693c2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT_PREEURO.js.gz
deleted file mode 100644
index e61b9d9..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_AT_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_CH.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_CH.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_CH.js.gz
deleted file mode 100644
index 1b906e7..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_CH.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE.js.gz
deleted file mode 100644
index dc73b68..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE_PREEURO.js.gz
deleted file mode 100644
index 76e1b0d..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_DE_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU.js.gz
deleted file mode 100644
index f1f85b9..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU_PREEURO.js.gz
deleted file mode 100644
index c00d5de..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/de_LU_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el.js.gz
deleted file mode 100644
index 0cdbf53..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY.js.gz
deleted file mode 100644
index 5405116..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_EURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_EURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_EURO.js.gz
deleted file mode 100644
index 79c2841..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_EURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_PREEURO.js.gz
deleted file mode 100644
index 35a134a..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_CY_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR.js.gz
deleted file mode 100644
index 6c30687..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR_PREEURO.js.gz
deleted file mode 100644
index e6f2529..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/el_GR_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en.js.gz
deleted file mode 100644
index 146dee3..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_AU.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_AU.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_AU.js.gz
deleted file mode 100644
index 8cb1758..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_AU.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE.js.gz
deleted file mode 100644
index e327a14..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE_PREEURO.js.gz
deleted file mode 100644
index eaa6076..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_BE_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_CA.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_CA.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_CA.js.gz
deleted file mode 100644
index 65ce247..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_CA.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB.js.gz
deleted file mode 100644
index 9e647a7..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB_EURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB_EURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB_EURO.js.gz
deleted file mode 100644
index 0e6d09b..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_GB_EURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_HK.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_HK.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_HK.js.gz
deleted file mode 100644
index cda0352..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_HK.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE.js.gz
deleted file mode 100644
index 91efb10..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE_PREEURO.js.gz
deleted file mode 100644
index 8933e3d..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IE_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IN.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IN.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IN.js.gz
deleted file mode 100644
index db66e86..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_IN.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_MT.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_MT.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_MT.js.gz
deleted file mode 100644
index ea0a479..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_MT.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_NZ.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_NZ.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_NZ.js.gz
deleted file mode 100644
index 720baad..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_NZ.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_PH.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_PH.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_PH.js.gz
deleted file mode 100644
index 7e860ff..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_PH.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_SG.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_SG.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_SG.js.gz
deleted file mode 100644
index 5ffc7ba..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_SG.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_US.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_US.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_US.js.gz
deleted file mode 100644
index 5e7ed2f..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_US.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_ZA.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_ZA.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_ZA.js.gz
deleted file mode 100644
index c1221b5..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/en_ZA.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es.js.gz
deleted file mode 100644
index f233e90..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_AR.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_AR.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_AR.js.gz
deleted file mode 100644
index 0ca8ffa..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_AR.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_BO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_BO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_BO.js.gz
deleted file mode 100644
index 1b3c306..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_BO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CL.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CL.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CL.js.gz
deleted file mode 100644
index 92a324a..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CL.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CO.js.gz
deleted file mode 100644
index 362232d..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CR.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CR.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CR.js.gz
deleted file mode 100644
index 53e9e23..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_CR.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_DO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_DO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_DO.js.gz
deleted file mode 100644
index 26c6fff..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_DO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_EC.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_EC.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_EC.js.gz
deleted file mode 100644
index 559db9e..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_EC.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES.js.gz
deleted file mode 100644
index 819e45d..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES_PREEURO.js.gz
deleted file mode 100644
index 589d775..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_ES_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_GT.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_GT.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_GT.js.gz
deleted file mode 100644
index e1aba86..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_GT.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_HN.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_HN.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_HN.js.gz
deleted file mode 100644
index 43ce67a..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_HN.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_MX.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_MX.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_MX.js.gz
deleted file mode 100644
index 76a40da..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_MX.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_NI.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_NI.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_NI.js.gz
deleted file mode 100644
index 86302a5..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_NI.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PA.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PA.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PA.js.gz
deleted file mode 100644
index 5f3a6d2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PA.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PE.js.gz
deleted file mode 100644
index 44a20ec..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PR.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PR.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PR.js.gz
deleted file mode 100644
index 3d60ce9..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PR.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PY.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PY.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PY.js.gz
deleted file mode 100644
index c928b88..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_PY.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_SV.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_SV.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_SV.js.gz
deleted file mode 100644
index 0d3800a..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_SV.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_US.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_US.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_US.js.gz
deleted file mode 100644
index 2243584..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_US.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_UY.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_UY.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_UY.js.gz
deleted file mode 100644
index db5ce23..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_UY.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_VE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_VE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_VE.js.gz
deleted file mode 100644
index b57e2e1..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/es_VE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et.js.gz
deleted file mode 100644
index e685c40..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE.js.gz
deleted file mode 100644
index 8ceff8f..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_EURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_EURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_EURO.js.gz
deleted file mode 100644
index 9b4617d..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_EURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_PREEURO.js.gz
deleted file mode 100644
index b45e6fe..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/et_EE_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi.js.gz
deleted file mode 100644
index fff6196..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI.js.gz
deleted file mode 100644
index 08c6e67..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI_PREEURO.js.gz
deleted file mode 100644
index 54e241a..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fi_FI_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr.js.gz
deleted file mode 100644
index 9912df3..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE.js.gz
deleted file mode 100644
index af1052d..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE_PREEURO.js.gz
deleted file mode 100644
index 35870dc..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_BE_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CA.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CA.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CA.js.gz
deleted file mode 100644
index 3c3a9b4..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CA.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CH.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CH.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CH.js.gz
deleted file mode 100644
index a2136b7..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_CH.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR.js.gz
deleted file mode 100644
index aa47e36..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR_PREEURO.js.gz
deleted file mode 100644
index ffb547d..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_FR_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU.js.gz
deleted file mode 100644
index c664df2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU_PREEURO.js.gz
deleted file mode 100644
index 6b9d6b5..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/fr_LU_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga.js.gz
deleted file mode 100644
index d7d24e7..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga_IE.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga_IE.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga_IE.js.gz
deleted file mode 100644
index 7d3c880..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/ga_IE.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu.js.gz
deleted file mode 100644
index 66416b2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu_IN.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu_IN.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu_IN.js.gz
deleted file mode 100644
index 4d0608c..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/gu_IN.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hi_IN.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hi_IN.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hi_IN.js.gz
deleted file mode 100644
index 6b07571..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hi_IN.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr.js.gz
deleted file mode 100644
index cbfb8a6..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr_HR.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr_HR.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr_HR.js.gz
deleted file mode 100644
index 61c88c4..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hr_HR.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu.js.gz
deleted file mode 100644
index 61e3c8c..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU.js.gz
deleted file mode 100644
index cabecb1..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_EURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_EURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_EURO.js.gz
deleted file mode 100644
index 4d3edc6..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_EURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_PREEURO.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_PREEURO.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_PREEURO.js.gz
deleted file mode 100644
index 4c914db..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/hu_HU_PREEURO.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in.js.gz
deleted file mode 100644
index 5005d70..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in_ID.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in_ID.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in_ID.js.gz
deleted file mode 100644
index 3f982c4..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/in_ID.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is.js.gz
deleted file mode 100644
index 903b3f2..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is.js.gz and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/67fa7ebb/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is_IS.js.gz
----------------------------------------------------------------------
diff --git a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is_IS.js.gz b/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is_IS.js.gz
deleted file mode 100644
index 5a7a4cf..0000000
Binary files a/lib/cordova-blackberry/bin/templates/project/www/res/resourceBundles/is_IS.js.gz and /dev/null differ