pritidesai closed pull request #775: add --name project name flag
URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/775
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/.gitignore b/.gitignore
index d9864756..9fd9de2d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -46,3 +46,4 @@ build/
 
 #emacs
 *~
+bin/content.json
diff --git a/cmd/root.go b/cmd/root.go
index 7225924b..082515e7 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -125,6 +125,7 @@ func init() {
        RootCmd.PersistentFlags().StringVarP(&utils.Flags.Key, "key", "k", "", 
wski18n.T(wski18n.ID_CMD_FLAG_KEY_FILE))
        RootCmd.PersistentFlags().StringVarP(&utils.Flags.Cert, "cert", "c", 
"", wski18n.T(wski18n.ID_CMD_FLAG_CERT_FILE))
        RootCmd.PersistentFlags().BoolVarP(&utils.Flags.Managed, "managed", "", 
false, wski18n.T(wski18n.ID_CMD_FLAG_MANAGED))
+       RootCmd.PersistentFlags().StringVarP(&utils.Flags.ProjectName, 
"projectname", "", "", wski18n.T(wski18n.ID_CMD_FLAG_PROJECTNAME))
 }
 
 // initConfig reads in config file and ENV variables if set.
diff --git a/deployers/servicedeployer.go b/deployers/servicedeployer.go
index f5429125..0ef55d8e 100644
--- a/deployers/servicedeployer.go
+++ b/deployers/servicedeployer.go
@@ -128,7 +128,16 @@ func (deployer *ServiceDeployer) ConstructDeploymentPlan() 
error {
                return err
        }
 
-       deployer.ProjectName = manifest.GetProject().Name
+       deployer.ProjectName = utils.Flags.ProjectName
+       if deployer.ProjectName == "" {
+               deployer.ProjectName = manifest.GetProject().Name
+       } else {
+               warningString := wski18n.T(
+                       wski18n.ID_WARN_PROJECT_NAME_OVERRIDDEN,
+                       map[string]interface{}{
+                               wski18n.KEY_PROJECT: deployer.ProjectName})
+               wskprint.PrintOpenWhiskWarning(warningString)
+       }
 
        // Generate Managed Annotations if its marked as a Managed Deployment
        // Managed deployments are the ones when OpenWhisk entities are 
deployed with command line flag --managed.
diff --git a/tests/src/integration/common/wskdeploy.go 
b/tests/src/integration/common/wskdeploy.go
index caddc99a..82a34048 100644
--- a/tests/src/integration/common/wskdeploy.go
+++ b/tests/src/integration/common/wskdeploy.go
@@ -170,6 +170,10 @@ func (Wskdeploy *Wskdeploy) ManagedDeployment(manifestPath 
string, deploymentPat
        return Wskdeploy.RunCommand("-m", manifestPath, "-d", deploymentPath, 
"--managed")
 }
 
+func (Wskdeploy *Wskdeploy) HeadlessManagedDeployment(manifestPath string, 
deploymentPath string, name string) (string, error) {
+       return Wskdeploy.RunCommand("-m", manifestPath, "-d", deploymentPath, 
"--managed", "--projectname", name)
+}
+
 func (Wskdeploy *Wskdeploy) ManagedUndeployment(manifestPath string, 
deploymentPath string) (string, error) {
        return Wskdeploy.RunCommand("undeploy", "-m", manifestPath, "-d", 
deploymentPath, "--managed")
 }
diff --git a/tests/src/integration/managed-deployment/05-manifest-headless.yaml 
b/tests/src/integration/managed-deployment/05-manifest-headless.yaml
new file mode 100644
index 00000000..cf2b1c8e
--- /dev/null
+++ b/tests/src/integration/managed-deployment/05-manifest-headless.yaml
@@ -0,0 +1,22 @@
+#
+# 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.
+#
+
+packages:
+  ManagedPackage-Headless:
+    actions:
+      HelloWorld-Headless:
+        function: actions/hello.js
+        runtime: nodejs:6
\ No newline at end of file
diff --git 
a/tests/src/integration/managed-deployment/managed-deployment_test.go 
b/tests/src/integration/managed-deployment/managed-deployment_test.go
index c3bf5d63..119296d2 100644
--- a/tests/src/integration/managed-deployment/managed-deployment_test.go
+++ b/tests/src/integration/managed-deployment/managed-deployment_test.go
@@ -20,10 +20,11 @@
 package tests
 
 import (
-       
"github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/common"
-       "github.com/stretchr/testify/assert"
        "os"
        "testing"
+
+       
"github.com/apache/incubator-openwhisk-wskdeploy/tests/src/integration/common"
+       "github.com/stretchr/testify/assert"
 )
 
 func TestManagedDeployment(t *testing.T) {
@@ -58,4 +59,9 @@ func TestManagedDeployment(t *testing.T) {
        wskdeploy = common.NewWskdeploy()
        _, err = wskdeploy.ManagedDeployment(manifestPath, deploymentPath)
        assert.Equal(t, nil, err, "Failed to deploy based on the manifest and 
deployment files.")
+
+       manifestPath = os.Getenv("GOPATH") + path + "05-manifest-headless.yaml"
+       wskdeploy = common.NewWskdeploy()
+       _, err = wskdeploy.HeadlessManagedDeployment(manifestPath, 
deploymentPath, "Headless Managed")
+       assert.Equal(t, nil, err, "Failed to deploy based on the manifest and 
deployment files.")
 }
diff --git a/utils/flags.go b/utils/flags.go
index e55983e2..89550b42 100644
--- a/utils/flags.go
+++ b/utils/flags.go
@@ -39,7 +39,8 @@ type WskDeployFlags struct {
        Strict           bool // strict flag to support user defined runtime 
version.
        Key              string
        Cert             string
-       Managed          bool // OpenWhisk Managed Deployments
+       Managed          bool   // OpenWhisk Managed Deployments
+       ProjectName      string // Project name
        ApigwAccessToken string
 }
 
diff --git a/wski18n/i18n_ids.go b/wski18n/i18n_ids.go
index b8c1bdc8..3040e599 100644
--- a/wski18n/i18n_ids.go
+++ b/wski18n/i18n_ids.go
@@ -67,6 +67,7 @@ const (
        ID_CMD_FLAG_INTERACTIVE = "msg_cmd_flag_interactive"
        ID_CMD_FLAG_KEY_FILE    = "msg_cmd_flag_key_file"
        ID_CMD_FLAG_MANAGED     = "msg_cmd_flag_allow_managed"
+       ID_CMD_FLAG_PROJECTNAME = "msg_cmd_flag_project_name"
        ID_CMD_FLAG_MANIFEST    = "msg_cmd_flag_manifest"
        ID_CMD_FLAG_NAMESPACE   = "msg_cmd_flag_namespace"
        ID_CMD_FLAG_PROJECT     = "msg_cmd_flag_project"
@@ -163,6 +164,7 @@ const (
        ID_WARN_ENTITY_NAME_EXISTS_X_key_X_name_X                 = 
"msg_warn_entity_name_exists"
        ID_WARN_PACKAGES_NOT_FOUND_X_path_X                       = 
"msg_warn_packages_not_found"
        ID_WARN_DEPLOYMENT_NAME_NOT_FOUND_X_key_X_name_X          = 
"msg_warn_deployment_name_not_found"
+       ID_WARN_PROJECT_NAME_OVERRIDDEN                           = 
"msg_warn_project_name_overridden"
 
        // Verbose (Debug/Trace) messages
        ID_DEBUG_DEPLOYING_USING                              = 
"msg_dbg_deploying_using"
@@ -219,6 +221,7 @@ var I18N_ID_SET = [](string){
        ID_CMD_FLAG_INTERACTIVE,
        ID_CMD_FLAG_KEY_FILE,
        ID_CMD_FLAG_MANAGED,
+       ID_CMD_FLAG_PROJECTNAME,
        ID_CMD_FLAG_MANIFEST,
        ID_CMD_FLAG_NAMESPACE,
        ID_CMD_FLAG_PROJECT,
diff --git a/wski18n/i18n_resources.go b/wski18n/i18n_resources.go
index 440b0726..a43f2f89 100644
--- a/wski18n/i18n_resources.go
+++ b/wski18n/i18n_resources.go
@@ -92,12 +92,12 @@ func wski18nResourcesDe_deAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/de_DE.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/de_DE.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
 
-var _wski18nResourcesEn_usAllJson = 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5a\x6d\x6f\x1b\x37\xf2\x7f\x9f\x4f\x31\x08\xfe\x40\x5a\xc0\x51\xd2\xfe\x71\xc0\x21\x80\x71\xc8\x5d\xd2\x36\xd7\x26\x0e\xec\xf8\x8a\x22\x35\x36\xd4\x72\xb4\xcb\x6a\x97\x5c\x90\x5c\x2b\xaa\xa1\xef\x7e\x18\x92\xfb\x20\xd9\xdc\xa5\x94\x06\xd7\x37\x55\xcc\xe1\xcc\x6f\x86\xe4\x3c\xee\xc7\x47\x00\x77\x8f\x00\x00\x1e\x0b\xfe\xf8\x05\x3c\xae\x4d\x91\x35\x1a\x57\xe2\x73\x86\x5a\x2b\xfd\xf8\xcc\xaf\x5a\xcd\xa4\xa9\x98\x15\x4a\x12\xd9\x6b\xb7\xf6\x08\x60\x77\x36\xc1\x41\xc8\x95\x8a\x30\x78\x43\x4b\x73\xfb\x4d\x9b\xe7\x68\x4c\x84\xc5\x55\x58\x9d\xe3\xb2\x61\x5a\x0a\x59\x44\xb8\xfc\x1a\x56\xa3\x5c\xf2\x9a\x67\x1c\x4d\x9e\x55\x4a\x16\x99\xc6\x46\x69\x1b\xe1\x75\xe9\x16\x0d\x28\x09\x1c\x9b\x4a\x6d\x91\x03\x4a\x2b\xac\x40\x03\xdf\x88\x05\x2e\xce\xe0\x3d\xcb\xd7\xac\x40\x73\x06\x2f\x73\xda\x67\xce\xe0\x83\x16\x45\x81\xda\x9c\xc1\x65\x5b\xd1\x0a\xda\x7c\xf1\x2d\x30\x03\x1b\xac\x2a\xfa\xbf\xc6\x1c\xa5\x75\x3b\x6e\x9d\x34\x03\x42\x82\x2d\x11\x4c\x83\xb9\x58\x09\xe4\x20\x59\x8d\xa6\x61\x39\x2e\x92\x75\x51\x2a\xa6\xc9\x4b\xb0\x4a\x55\x60\x55\x50\xe4\x0c\x5a\xe9\x7f\x01\x93\x1c\xcc\x56\xe6\xa0\x1a\x94\x9b\x52\x98\x35\x34\x41\x27\x68\x8d\x90\x05\x30\xa8\x99\x14\x2b\x34\xd6\x11\xab\x86\xb8\xb2\x2a\xb0\xaa\x49\x93\x95\xa8\x7a\xf2\xdf\x5e\xbe\xfd\x25\x05\xb3\x29\x95\xb6\xd3\x07\xf0\x5e\xab\x5b\xc1\xd1\x00\x03\xd3\xd6\x35\xd3\x5b\xf0\xf4\xa0\x56\xb0\x29\x99\x7d\x62\x60\x89\x38\x3a\x9e\x2f\x33\x63\x80\x34\x6b\x47\x83\x96\x6c\x59\x62\xd5\x04\xd1\xb0\x55\xad\x4e\x32\x21\x99\x2a\x1d\xcb\x2d\x6a\x43\xb2\x63\xf6\x11\xd2\x3a\x85\x03\x1d\xc8\xb6\x5e\xa2\x76\xe6\x31\x6b\x0f\x6d\x5a\xd6\xaa\x62\x45\xc6\x1a\x91\x95\xca\xc4\xb4\xf6\x2a\xbd\x7c\xff\x06\x3e\xfd\x74\x71\xf5\xe1\x53\x22\xc7\x69\xec\x23\xa6\xff\x79\x7d\x79\xf5\xe6\xe2\x5d\x12\xdf\xd6\x96\xd9\x1a\xb7\x11\xa6\xb4\xac\xb4\xf8\xd3\xfd\x01\x3e\xfd\xfc\xfa\xb7\x14\xa6\x39\x6a\x9b\xd1\xb9\x44\xb8\x36\xcc\x96\x64\x52\x32\xf4\x82\x88\xdd\x21\xa6\x30\x56\x72\x25\x62\x9e\xca\x2f\x3a\x56\xf0\x0d\xc7\x15\x6b\x2b\x0b\xc2\xc0\xff\xfd\x74\xf1\xf6\xf5\xb3\xc5\xc6\xac\x1b\xad\x1a\xf3\x6d\x8a\x55\xaa\x4a\x6d\xb2\xc0\x23\xe6\x5f\x1d\x11\xf4\x44\xf3\x5c\x87\xf7\x3d\x65\x97\xde\xa7\xf4\x8e\x20\x81\xb5\x90\x16\x35\x23\xf7\x17\xb3\xb9\x47\x3b\xa2\x83\x46\xab\xba\x49\x02\xbe\xc6\x6d\xf2\x71\xae\x71\x9b\x0a\xda\x5b\xb9\x66\x92\x15\xc8\x27\x61\x37\x5a\xfd\x81\xb9\x1d\x82\x85\x55\xb0\x44\xa8\x99\x5e\x23\x87\x8e\xc3\xbc\xc4\xce\x69\xcc\xd8\x7f\xcf\xb7\x24\xb0\xed\x7d\x62\x84\xef\xb0\x3e\xcf\x2b\xa8\x3a\x83\xd0\xa0\xbe\x45\x5d\xa1\x31\x9d\x6d\x12\x58\x1b\xab\x45\x94\xb3\x37\x74\x6b\x50\xd3\x95\x16\x12\x39\xe8\x56\x5a\x51\xf7\xbe\x30\x41\x82\x55\x45\x51\x61\x46\x7e\x3c\x22\xe6\x83\xa3\x80\x9f\xc8\xd3\xd7\x68\x0c\x2b\xd2\x6f\xca\x2d\xea\xa5\x32\x31\x23\x87\x55\x50\xad\x6d\xda\x29\x73\x38\x37\x91\xd5\xc2\x50\x24\x71\x0e\x30\xee\xff\x3e\x94\x08\x44\x41\x17\x2f\xf7\x4e\x90\x2e\xb8\x30\x20\x95\x05\xcf\xaa\xd5\xc8\x17\xbf\x4f\x99\xe7\x40\x62\x23\x26\x62\x03\x49\x24\x27\x4e\x24\x5f\x26\x67\xee\x56\x92\xa4\x9e\xe6\x34\x51\x41\x95\xa9\x44\xf6\x50\x9f\x8f\x77\x77\x0b\xfa\xbd\xdb\xdd\x9c\xc1\x4a\xab\x1a\xee\xee\x16\x46\xb5\x3a\xc7\xdd\x2e\x49\xa6\x3f\xb0\x39\x99\x44\xd6\x9d\x95\x41\x7b\x9a\xac\xde\x3c\x73\xd2\xf6\xec\x48\x2a\xf6\x7f\x38\x5d\xcf\x46\x14\x9b\x8c\xb9\x1c\x3e\xb3\x6a\x8d\x72\x56\x65\xda\x01\x7e\x07\xb8\x1d\xa7\x29\xdf\xca\x9a\x69\x53\xb2\x2a\xab\x54\xce\xaa\x88\xc4\xeb\x8e\x0a\x2e\x1a\x94\xbf\xba\xec\x23\x78\x0c\xe3\xe5\xb9\xdd\x70\xcb\xaa\x16\x4d\xa2\x40\x89\x76\xa3\xf4\xfa\x64\x91\x2e\xbe\x49\xb4\xc0\x2c\xa9\xdb\xea\x6a\x46\xd7\x21\xd4\x66\x39\x93\x39\x56\x55\x34\x14\x5d\xfc\xbc\x80\x7f\x79\x1a\x4a\x41\x87\x9d\xa9\x02\x56\x4c\xc4\xb9\xbf\x1a\x62\x3e\x17\x3c\xbc\xc5\xba\xa9\xd0\x22\x98\x96\x8e\x74\xd5\x56\xd5\x76\x01\x97\xad\x84\x4f\x7d\x32\xda\xd7\x1d\x9f\x28\x2c\x68\xac\x15\x45\x76\xa6\xad\x60\x55\xb5\x1d\xf2\x78\x66\x0c\xda\xe9\x53\x18\x21\xf5\x45\x41\x66\x2c\xb3\x6d\x2c\xfd\x79\xfa\xf4\xe9\xd3\xf3\xf3\xf3\xf3\xd1\x59\x8c\x74\xb8\x72\x5b\x81\x08\x88\x30\x49\xaa\x2b\x67\x91\xa7\x98\xa8\x33\x0d\x87\x50\x03\x7b\xe3\x4c\x5f\xb2\xd3\xcf\x7a\xbc\x37\x5d\xc8\xe4\x79\x5f\x8f\x28\xa7\x4f\x3c\x59\xde\x9c\xfd\xf6\x44\x9e\x60\xc1\x2e\x2d\xca\x5c\x0d\x36\x9f\xce\x5e\xbb\x52\x8d\xbc\x21\xa5\x2d\xbb\xdd\x0d\xac\x94\x4e\x7d\x37\x07\xc2\xc6\x8a\x1e\x25\x2e\xf9\xe8\x5c\x6e\xb9\xcd\xba\x17\x33\xd3\x5c\xb9\xbb\xa3\x4c\x77\xb7\xeb\x9d\x3d\xc9\x2b\x59\x28\x9f\xc7\x26\xed\xdf\x60\xba\xf4\x78\x37\xe6\x55\xb7\x0e\x0f\x02\x58\x2c\x26\x2a\xe1\x20\xa2\x33\xc8\x5f\xa9\xe2\xc0\x33\x45\xc9\x8e\x3a\xae\xe6\xf5\x40\x71\x82\xa2\x1c\x1b\x94\x1c\x65\x7e\x8c\x3d\x87\x4d\x63\x41\xc7\xc9\x19\x5e\x61\xd4\xa8\xaf\x1e\x14\xf3\x25\x37\xe7\x61\x14\xe4\x7b\x5a\x1d\x4b\xfd\x46\x9e\x54\xad\x22\xaa\xff\x0f\xc3\x50\xa7\xcf\x71\x17\xe5\xcb\x4e\xf0\xbe\x27\xfd\x6b\xce\x30\xf1\x69\xc4\x90\x4c\x9f\xe3\x9e\x47\x3f\xf1\x24\x67\x9c\x30\x55\xd6\xa7\x86\x35\x87\xc8\x07\x99\xbe\x72\x9f\xc2\x02\xbc\xd5\x74\x92\x41\xec\x38\x54\x7c\xbd\xfb\xd6\xe9\xb8\x52\xad\xe4\x59\xc0\x1b\x5c\x55\xf4\x02\x54\x68\xa3\xbe\x69\x53\x8a\xbc\x84\x8d\x6b\x4b\x13\x2e\xee\x53\x53\x5b\x22\xe4\xad\xd6\x64\x98\x4e\xc1\xae\xaf\xe1\x82\x96\xff\x4d\x1c\x98\x71\xba\x90\xfd\x92\xc3\x97\xef\xe6\xcc\x14\x97\xbf\xcb\xf7\x15\x32\xe3\x7a\x3f\xb7\x82\xa3\x03\x45\xf4\x84\xdd\x85\xcb\x3e\x99\x7b\x01\xf3\xb2\x26\x4b\xe7\x7b\xb2\x98\x3c\x2c\xa5\x5d\x8d\x92\x20\x28\xf4\x5d\x23\x87\xa1\x60\xab\x5a\xd0\xe8\x4e\x7e\xc3\xa4\x1d\x5a\x68\x60\x4b\x61\xfe\x01\xdf\x6c\x9f\xbd\xfb\x36\x41\xce\x5c\xc5\x7c\x5f\xa5\x51\xe1\xf7\xb1\x6b\x39\xba\x82\x87\x2a\xaf\xa2\x45\x63\x6f\x12\xe4\x76\x87\x7c\x94\x86\xfd\xc0\x21\x51\xc7\x00\x2f\x0b\x9d\xf4\x58\x07\xdc\xaf\x3a\xbd\x60\xd4\x44\xd5\xe8\x5a\x4e\xfc\x0c\x58\x35\x2e\xbf\xfa\x77\x4d\x70\x74\xbf\x23\x08\x01\xa6\xb1\x7f\x8c\xcf\x06\x57\x08\x5c\x68\xcc\x6d\x70\x8f\xda\x37\xfb\xe7\x26\x0b\xaf\x2f\x2f\x2f\x2e\xaf\x22\xb8\xcf\x0f\xff\x03\x4f\x0e\xf7\x16\xce\xcf\x27\x12\x14\xad\xf7\x3d\xf1\x5a\xaa\x8d\xcc\xec\xb6\x99\x88\xa4\x9d\xc7\x25\x2a\x32\x55\xd8\xb5\x80\x61\x64\x00\x4a\x56\x5b\x30\x6d\xe3\xe7\x5f\xcf\x5c\xaf\x7e\x61\xb6\xc6\x62\x0d\x4b\x21\xb9\x90\x85\x01\xa5\xa1\x10\xb6\x6c\x97\x8b\x5c\xd5\xfd\xc4\x63\x3a\xa3\xd2\xba\xcb\xaa\x72\x8d\xcc\xc6\x60\xba\x79\x24\x38\x92\x3d\xbf\xb5\x11\xb6\x04\x37\xc8\xec\xba\x71\x2f\x68\x11\xb5\xde\xed\xdc\x70\xca\xaf\xe5\x8a\xfb\x05\xfa\x31\x53\x51\x8f\x20\x79\x67\x3a\x09\x89\xdf\x73\xa5\x5f\x09\xd2\x0a\x91\x67\x42\xde\xaa\x75\x0c\xd0\x0f\x2e\xae\xd1\xd3\xf2\x64\xce\x39\xd2\x36\xd8\x94\x6e\x24\x16\x90\x5a\x3f\x8e\x0c\x4b\x5f\x07\xed\x1a\xb7\x7d\x1f\xaf\x66\x92\x33\xab\xf4\x54\x8f\xb2\xa7\x71\x2d\xaf\x8f\x9d\x31\x6f\xe8\x3e\x06\x3e\xb3\x32\xfb\x8a\x4b\x2a\xeb\xa3\x61\x44\xe0\xdb\x71\x7b\xdc\x05\x73\x47\x0d\x8c\xde\xbd\x2d\xc7\x25\xd8\xac\x50\x7a\xf4\xa4\x69\xcd\x6c\x5e\x4e\x28\xd8\x5f\x0f\xda\xc0\x9d\x08\xde\x05\x5c\x21\x0f\x27\x26\x7e\xbd\x2b\x03\xb9\x42\xdf\xdc\x74\x42\xdc\xb1\x3a\xf7\x46\x44\xf5\x88\xc9\x5e\xdb\xdf\xaf\x76\x6a\x4c\x2b\x11\x7a\x50\x74\xbd\x58\x25\x62\x66\x7b\xe3\x57\xe9\x99\x87\x23\xe9\x3b\xec\x24\x2b\xfc\x26\x2c\xc3\xb4\x75\x0f\x95\xd2\x0e\x3b\x73\x73\x71\xb7\xc7\xff\x4c\xb1\x73\x07\x71\xc6\xd4\x97\xc7\x00\x3a\xb0\xab\x7b\x0a\x1e\xd1\x13\x03\xbe\xd3\xe8\x4d\x89\x9f\x2d\x4a\xd3\x81\xc6\xcf\xb6\x2b\xce\xbf\x44\x15\x93\x15\x18\xcb\x73\x86\xa7\x5c\xa0\x9f\xe7\x06\xdf\x3b\x4c\x35\x42\xc3\x70\x88\x64\x14\xdf\x44\x3e\x7a\xbe\xb3\x40\x5a\x5d\x1d\x7f\xe4\xbe\x2b\x49\xb1\x62\xb7\x83\xeb\xcb\x5f\x9c\xf2\xae\x4f\xe9\xee\x20\xfd\x8b\x6c\xe6\x09\x6e\xfc\x74\x3b\x05\x48\xcd\xaa\x95\xd2\x75\x34\x31\x7f\xdb\xad\x4f\x21\x58\xc0\x07\xbd\x05\x56\x30\x21\x17\x8b\x59\xb1\x7f\x18\x25\x7b\x2f\x95\xd7\x7c\x62\x8e\xfc\xef\xab\x8b\x77\x20\x64\xd3\x5a\xe0\xcc\x32\x78\x1b\xac\xf1\x24\xaf\xf9\x13\xf2\x59\xd3\x92\x58\x23\x7a\x41\x1b\x5c\x66\xfe\xb2\xc4\xbe\x29\x78\xe0\x52\x75\xe3\x0d\x06\x1b\x5c\x86\x6b\x77\xe6\xe6\x12\x8e\xac\x11\x44\x93\x33\xe9\x03\xf5\x12\x7d\xa8\x44\x1e\x3e\x37\x18\x36\x2d\x20\xa4\x80\x6d\xc3\x99\xc5\x03\x9f\x61\x15\xe4\x4a\xde\xa2\xb6\x07\xe2\xad\x1a\xf3\x98\x33\xec\x58\xdd\x93\x54\xed\x2e\x9b\xbb\xe2\x7b\x10\x93\x94\x5e\x32\x83\x1c\x94\x1c\xbb\x9b\xfb\xac\x66\x4d\x21\x64\x5e\xb5\x1c\x0f\xe0\x31\xb3\x77\x0a\x51\x63\xfc\xfa\xf2\xf2\xdd\x9b\x77\x3f\xa6\x27\x7c\xdd\x86\xe3\x52\xbe\x0d\xd3\x32\xcb\x55\x4d\x11\x34\xd3\x68\xa3\x61\xf6\x92\xd6\xba\x0e\x63\x5e\x73\xa7\xcb\xca\xa2\xf6\x21\xfe\x85\xf7\x6d\xe4\x38\x6e\xa6\xce\x37\xc8\x73\x23\x9e\xa3\x9d\xc7\xf8\x13\x87\x71\xa3\x93\xa3\xc5\xdc\xce\xb4\x18\x9c\x64\x4a\x2c\x38\x36\x1a\x73\x3a\xe9\x4c\x63\x53\xb1\x3c\xea\x34\x28\xf2\x92\x1c\x55\xf1\x90\x4f\xb8\x89\x9a\xbf\x18\x7b\x9e\xca\x63\xda\x88\xaa\x02\xa3\x94\xa4\xdb\x34\x88\x39\x83\x26\xdc\x14\xe3\xb3\x2a\x57\x2e\xe3\x66\x8f\xa7\xb1\xc8\x12\x15\x08\xe6\x38\x25\x1f\x32\xa5\x6a\x2b\x4e\xf0\x0c\xda\x05\xf8\x9e\xf1\x7e\xe5\x46\xd4\xee\x97\xef\x1e\x25\x21\x72\xf4\x33\xe7\x49\xb8\xbc\x04\x0a\x7d\xf7\xf3\x34\xf2\x4f\x6e\xff\x31\x22\x29\x57\x33\xec\x76\xf2\x04\xe7\x84\xba\xfd\xdd\xa9\x76\x2d\x8a\xee\x03\xa8\xf1\x97\x4f\xf3\xc0\x2a\x51\x0b\x9b\x89\x42\x2a\x1d\x85\xd4\xdd\xeb\xe0\x58\xdc\x16\x87\xca\xfd\x3a\xcc\xc5\x84\x81\xc0\x2e\x55\x7a\x5e\x32\x59\x20\x5b\x46\xbf\x57\xf9\xa5\x97\xd8\x27\x7f\xa6\xd3\xbb\xda\xfa\xee\x54\xcf\x63\x01\x6f\x48\x3c\x25\xd0\x09\x77\xc1\x21\x30\x59\xa5\x8a\xcc\x88\x3f\x63\x00\x2a\x55\x5c\x89\x3f\x91\x6c\xeb\x37\xec\x69\x3c\x5c\x51\x26\xdd\x40\x93\x8a\x8d\x25\xda\x0d\xa2\x84\xe7\xae\xa8\xf8\xee\x79\x32\x94\x1a\x6b\xa5\xb7\x53\x68\x3c\xc5\xa9\x80\xbe\xfb\xfe\xef\x0e\xd2\xdf\xbe\xfb\x3e\x19\x13\xe5\x5f\xaa\x8d\x25\x6f\x61\xf5\x24\x30\xcf\xbd\x7d\xfe\xff\x39\xfd\x37\x8f\xc7\xd5\xe1\x59\xa3\x55\x83\xda\x0a\x8c\x35\x7c\x3b\x37\x38\xf2\x57\xbe\xbd\x67\xb5\xc0\xbe\xc1\xe7\x8b\xfa\x81\x59\xd7\x08\x7c\xd8\x27\x76\x2e\x91\x2b\x77\xe1\xc8\x33\x0a\x0b\xaa\xb5\x46\x70\x77\x10\x1f\x34\xbb\x15\x06\x96\xad\xa8\xf8\x74\x13\xc0\xa9\xe2\xdd\x81\xa6\x6b\x9b\xe4\x0a\xfa\xdb\xbf\xe7\x10\xe4\x81\x57\x0f\xd6\x76\xad\x8d\xbb\xbb\x45\xf8\x6b\x67\x6e\xaa\x90\x84\x0c\x85\x2e\xfd\x83\xe5\x33\x69\xb3\x83\xda\xd5\x22\xfe\x91\xc5\xdc\x44\x57\x8a\x04\x2a\x4a\x28\x0e\xaa\x92\x07\xd2\x94\x68\xe1\x71\x52\xb5\xe1\xd0\x86\x5e\x86\x2b\x54\xf1\xb3\x30\xd1\xef\x01\xef\x95\xa9\x7b\x2e\x86\x55\x1a\x19\xdf\x82\x67\xd1\xe7\x4e\x06\x2b\xcc\x2d\x30\xa9\x6c\x89\xbe\x07\x36\x0f\xa9\x6b\x0d\xcd\x56\xea\x21\x14\x1e\x54\xb5\x5d\xd6\x90\x2b\x69\x99\xfb\xd2\x4b\xaa\xb4\x76\x93\x93\x3e\x1a\x05\x38\xa3\xa4\x80\x78\xb0\x51\x1e\x22\xce\x61\xed\x4e\x4f\x6b\x68\x2a\x04\xa2\xfd\xcc\x33\x86\xf1\xd5\xeb\x7f\x5e\xff\x98\x9c\x30\x3a\xea\xe3\xb2\x45\xbe\x2c\x86\x99\xa2\x1f\x4d\xcf\x4e\x16\x1d\xd5\x8b\xc9\xe1\xcf\xb2\x18\xcf\xba\x26\xf9\x8e\x27\x5e\x69\x9c\x0d\x32\x9d\x97\xc4\x37\x8c\x18\x32\xdf\x7d\x8d\x77\x94\xae\xba\x1d\xfd\x80\xa2\xdf\x71\x6f\xbe\x3e\x78\x8f\x99\xf8\x38\x98\x6e\xb8\x3a\x7f\xf5\xb5\x39\xe1\xca\x74\xd0\xfa\x37\xe5\xe7\x40\x13\xdf\xac\xbf\x7a\xa0\xd7\x14\x2c\xf2\x02\x7e\x70\x08\x86\xaf\xd5\x5d\x7b\x9b\x98\x1d\x0b\x60\xfa\x3b\xd0\xe3\x31\x8c\x47\x4d\xdd\x68\x34\x40\x7a\x74\xf3\xe8\xbf\x01\x00\x00\xff\xff\x0d\x20\x90\xa6\xe8\x32\x00\x00")
+var _wski18nResourcesEn_usAllJson = 
[]byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5a\x6d\x6f\x1b\x37\xf2\x7f\x9f\x4f\x31\x08\xfe\x40\x5a\xc0\x51\xd2\xfe\x71\xc0\x21\x80\x71\xc8\x5d\xd2\x36\xd7\x26\x0e\xec\xf8\x8a\x22\x35\x36\xd4\x72\x24\xb1\xda\x25\x17\x24\xd7\x8a\x6a\xe8\xbb\x1f\x86\x0f\xbb\x2b\xd9\xdc\xa5\x94\x06\xd7\x37\x55\xcc\xe1\xcc\x6f\x66\xc8\xe1\x3c\xec\xc7\x47\x00\x77\x8f\x00\x00\x1e\x0b\xfe\xf8\x05\x3c\xae\xcd\xb2\x68\x34\x2e\xc4\xe7\x02\xb5\x56\xfa\xf1\x99\x5f\xb5\x9a\x49\x53\x31\x2b\x94\x24\xb2\xd7\x6e\xed\x11\xc0\xee\x6c\x84\x83\x90\x0b\x95\x60\xf0\x86\x96\xa6\xf6\x9b\xb6\x2c\xd1\x98\x04\x8b\xab\xb0\x3a\xc5\x65\xc3\xb4\x14\x72\x99\xe0\xf2\x6b\x58\x4d\x72\x29\x6b\x5e\x70\x34\x65\x51\x29\xb9\x2c\x34\x36\x4a\xdb\x04\xaf\x4b\xb7\x68\x40\x49\xe0\xd8\x54\x6a\x8b\x1c\x50\x5a\x61\x05\x1a\xf8\x46\xcc\x70\x76\x06\xef\x59\xb9\x66\x4b\x34\x67\xf0\xb2\xa4\x7d\xe6\x0c\x3e\x68\xb1\x5c\xa2\x36\x67\x70\xd9\x56\xb4\x82\xb6\x9c\x7d\x0b\xcc\xc0\x06\xab\x8a\xfe\xaf\xb1\x44\x69\xdd\x8e\x5b\x27\xcd\x80\x90\x60\x57\x08\xa6\xc1\x52\x2c\x04\x72\x90\xac\x46\xd3\xb0\x12\x67\xd9\xba\x28\x95\xd2\xe4\x25\x58\xa5\x2a\xb0\x2a\x28\x72\x06\xad\xf4\xbf\x80\x49\x0e\x66\x2b\x4b\x50\x0d\xca\xcd\x4a\x98\x35\x34\x41\x27\x68\x8d\x90\x4b\x60\x50\x33\x29\x16\x68\xac\x23\x56\x0d\x71\x65\x55\x60\x55\x93\x26\x0b\x51\x75\xe4\xbf\xbd\x7c\xfb\x4b\x0e\x66\xb3\x52\xda\x8e\x3b\xe0\xbd\x56\xb7\x82\xa3\x01\x06\xa6\xad\x6b\xa6\xb7\xe0\xe9\x41\x2d\x60\xb3\x62\xf6\x89\x81\x39\xe2\xc0\x3d\x5f\x66\xc6\x00\x69\xd2\x8e\x06\x2d\xd9\x72\x85\x55\x13\x44\xc3\x56\xb5\x3a\xcb\x84\x64\xaa\x7c\x2c\xb7\xa8\x0d\xc9\x4e\xd9\x47\x48\xeb\x14\x0e\x74\x20\xdb\x7a\x8e\xda\x99\xc7\xac\x3d\xb4\x71\x59\x8b\x8a\x2d\x0b\xd6\x88\x62\xa5\x4c\x4a\x6b\xaf\xd2\xcb\xf7\x6f\xe0\xd3\x4f\x17\x57\x1f\x3e\x65\x72\x1c\xc7\x3e\x60\xfa\x9f\xd7\x97\x57\x6f\x2e\xde\x65\xf1\x6d\xed\xaa\x58\xe3\x36\xc1\x94\x96\x95\x16\x7f\xba\x3f\xc0\xa7\x9f\x5f\xff\x96\xc3\xb4\x44\x6d\x0b\xf2\x4b\x82\x6b\xc3\xec\x8a\x4c\x4a\x86\x9e\x11\xb1\x73\x62\x0e\x63\x25\x17\x22\x15\xa9\xfc\xa2\x63\x05\xdf\x70\x5c\xb0\xb6\xb2\x20\x0c\xfc\xdf\x4f\x17\x6f\x5f\x3f\x9b\x6d\xcc\xba\xd1\xaa\x31\xdf\xe6\x58\xa5\xaa\xd4\xa6\x08\x3c\x52\xf1\xd5\x11\x41\x47\x34\xcd\xb5\xbf\xdf\x63\x76\xe9\x62\x4a\x17\x08\x32\x58\x0b\x69\x51\x33\x0a\x7f\x29\x9b\x7b\xb4\x03\x3a\x68\xb4\xaa\x9b\x2c\xe0\x6b\xdc\x66\xbb\x73\x8d\xdb\x5c\xd0\xde\xca\x35\x93\x6c\x89\x7c\x14\x76\xa3\xd5\x1f\x58\xda\xfe\xb1\xb0\x0a\xe6\x08\x35\xd3\x6b\xe4\x10\x39\x4c\x4b\x0c\x7c\x0a\x0a\x62\x29\x65\x82\x28\x47\x32\xcd\x31\x86\xa1\x09\x8f\xee\x45\xab\x0c\xb6\x5d\x94\x4d\xf0\xed\xd7\xb3\x95\x9e\x40\x68\x50\xdf\xa2\xae\xd0\x98\x68\xed\x0c\xd6\xc6\x6a\x91\xe4\xec\x5d\xd7\x1a\xd4\x74\x49\x84\x44\x0e\xba\x95\x56\xd4\x5d\x74\xcd\x90\x60\xd5\x72\x59\x61\x41\x2f\x43\x42\xcc\x07\x47\x01\x3f\xd1\xdb\x51\xa3\x31\x6c\x99\x7f\xf6\x6e\x51\xcf\x95\x49\x19\x39\xac\x82\x6a\x6d\xd3\x8e\x99\xc3\x05\x9e\xa2\x16\x86\xde\x26\x17\x52\xd3\x11\xf5\xc3\x0a\x81\x28\xe8\x28\x97\x3e\xac\xd2\x95\x11\x06\xa4\xb2\xe0\x59\xb5\x1a\xf9\xec\xf7\x31\xf3\x1c\x48\x6c\xc4\xc8\x6b\x43\x12\xe9\x59\x20\x92\x2f\x93\x33\x75\x2a\x49\x52\x47\x73\x9a\xa8\xa0\xca\x58\x6a\x7c\xa8\xcf\xc7\xbb\xbb\x19\xfd\xde\xed\x6e\xce\x60\xa1\x55\x0d\x77\x77\x33\xa3\x5a\x5d\xe2\x6e\x97\x25\xd3\x3b\x6c\x4a\x26\x91\x45\x5f\x19\xb4\xa7\xc9\xea\xcc\x33\x25\x6d\xcf\x8e\xa4\x62\xf7\x87\xd3\xf5\x6c\xc4\x72\x53\x30\x57\x15\x14\x56\xad\x51\x4e\xaa\x4c\x3b\xc0\xef\x00\xb7\xe3\x34\xe5\x5b\x59\x33\x6d\x56\xac\x2a\x2a\x55\xb2\x2a\x21\xf1\x3a\x52\xc1\x45\x83\xf2\x57\x97\xcf\x84\x88\x61\xbc\x3c\xb7\x1b\x6e\x59\xd5\xa2\xc9\x14\x28\xd1\x6e\x94\x5e\x9f\x2c\xd2\xbd\x98\x12\x2d\x30\x4b\xea\xb6\xba\x9a\xd0\xb5\x7f\xbc\x8b\x92\xc9\x12\xab\x2a\xf9\xb8\x5d\xfc\x3c\x83\x7f\x79\x1a\x4a\x6a\xfb\x9d\xb9\x02\x16\x4c\xa4\xb9\xbf\xea\xb3\x08\x2e\x78\xb8\x8b\x75\x53\xa1\x45\x30\x2d\xb9\x74\xd1\x56\xd5\x76\x06\x97\xad\x84\x4f\x5d\x7a\xdb\x55\x32\x9f\xe8\x59\xd0\x58\x2b\xca\x15\x98\xb6\x82\x55\xd5\xb6\xaf\x0c\x98\x31\x68\xc7\xbd\x30\x40\xea\xcb\x8c\xc2\x58\x66\xdb\x54\x42\xf5\xf4\xe9\xd3\xa7\xe7\xe7\xe7\xe7\x03\x5f\x0c\x74\xb8\x72\x5b\x81\x08\x88\x30\x4b\xaa\x2b\x90\x91\xe7\x98\x28\x9a\x86\x43\xa8\xaa\xbd\x71\xc6\x0f\xd9\xe9\xbe\x1e\xee\xcd\x17\x32\xea\xef\xeb\x01\xe5\xb8\xc7\xb3\xe5\x4d\xd9\x6f\x4f\xe4\x09\x16\x8c\x69\x51\xe1\xaa\xba\xe9\x04\xf9\xda\x15\x7f\x14\x0d\x29\x6d\xd9\xed\x6e\x60\xa1\x74\xee\xbd\x39\x10\x36\x54\xf4\x28\x71\xd9\xae\x73\xd9\xea\xb6\x88\x37\x66\xa2\x5d\x73\x77\x47\xb9\xf3\x6e\xd7\x05\x7b\x92\xb7\x62\xa1\x20\x1f\x9a\xb4\xbb\x83\xf9\xd2\xd3\xfd\x9d\x57\x71\x1d\x1e\x04\x30\x9b\x8d\xd4\xd6\x41\x44\x34\xc8\x5f\xa9\x62\xcf\x33\x47\xc9\x48\x9d\x56\xf3\xba\xa7\x38\x41\x51\x8e\x0d\x4a\x8e\xb2\x3c\xc6\x9e\xfd\xa6\xa1\xa0\xe3\xe4\xf4\xb7\x30\x69\xd4\x57\x0f\x8a\xf9\x92\x93\xf3\x30\x0a\x8a\x3d\xad\x4e\xa5\x7e\x83\x48\xaa\x16\x09\xd5\xff\x87\xcf\x50\xd4\xe7\xb8\x83\xf2\x65\x1e\xbc\x1f\x49\xff\x1a\x1f\x66\x5e\x8d\x14\x92\x71\x3f\xee\x45\xf4\x13\x3d\x39\x11\x84\xa9\x56\x3f\xf5\x59\x73\x88\xfc\x23\xd3\xf5\x02\xc6\xb0\x00\x6f\x35\x79\x32\x88\x1d\x3e\x15\x5f\xef\xbc\x45\x1d\x17\xaa\x95\xbc\x08\x78\x43\xa8\x4a\x1e\x80\x0a\x6d\x32\x36\x6d\x56\xa2\x5c\xc1\xc6\x35\xba\x09\x17\xf7\xa9\xa9\x5d\x21\x94\xad\xd6\x64\x98\xa8\x60\x6c\x5f\xb8\x47\xcb\xff\x26\x0e\xcc\x38\x5d\xc8\x7e\xd9\xcf\x97\xef\x0f\x4d\x14\x97\xbf\xcb\xf7\x15\x32\xe3\xba\x49\xb7\x82\xa3\x03\x45\xf4\x84\xdd\x3d\x97\x5d\x32\xf7\x02\xa6\x65\x8d\x96\xce\xf7\x64\x31\x79\x58\x4a\xbb\x1a\x25\x43\x50\xe8\xe4\x26\x9c\xa1\x60\xab\x5a\xd0\xe8\x3c\xbf\x61\xd2\xf6\x4d\x39\xb0\x2b\x61\xfe\x01\xdf\x6c\x9f\xbd\xfb\x36\x43\xce\x54\xc5\x7c\x5f\xa5\x41\xe1\xf7\x31\x36\x31\x5d\xc1\x43\x95\xd7\xb2\x45\x63\x6f\x32\xe4\x46\x27\x1f\xa5\x61\x37\xc2\xc8\xd4\x31\xc0\x2b\x42\x6f\x3e\xd5\x53\xf7\xab\x4e\x2f\x18\xb4\x65\x35\xba\x96\x13\x3f\x03\x56\x0d\xcb\xaf\xee\x5e\x13\x1c\xdd\xed\x08\x42\x80\x69\xec\x2e\xe3\xb3\x3e\x14\x02\x17\x1a\x4b\x1b\xc2\xa3\xf6\xe3\x83\xa9\x59\xc5\xeb\xcb\xcb\x8b\xcb\xab\x04\xee\xf3\xc3\xff\xc0\x93\xc3\xbd\x85\xf3\xf3\x91\x04\x45\xeb\xfd\x48\xbc\x96\x6a\x23\x0b\xbb\x6d\x46\x5e\xd2\x18\x71\x89\x8a\x4c\x15\x76\xcd\xa0\x1f\x42\x80\x92\xd5\x16\x4c\xdb\xf8\x89\xda\x33\xd7\xfd\x9f\x99\xad\xb1\x58\xc3\x5c\x48\x2e\xe4\xd2\x80\xd2\xb0\x14\x76\xd5\xce\x67\xa5\xaa\xbb\x19\xca\x78\x46\xa5\x75\xcc\xaa\x4a\x8d\xcc\xa6\x60\xba\x09\x27\x38\x92\xbd\xb8\xb5\x11\x76\x05\x6e\x34\x1a\xbb\x71\x2f\x68\x11\xb5\xde\xed\xdc\xb8\xcb\xaf\x95\x8a\xfb\x05\xfa\x31\x51\x51\x0f\x20\xf9\x60\x3a\x0a\x89\xdf\x0b\xa5\x5f\x09\xd2\x02\x91\x17\x42\xde\xaa\x75\x0a\xd0\x0f\xee\x5d\xa3\xab\xe5\xc9\x5c\x70\xa4\x6d\xb0\x59\xb9\x21\x5b\x40\x6a\xfd\x80\x33\x2c\x7d\x1d\xb4\x6b\xdc\x76\x7d\xbc\x9a\x49\xce\xac\xd2\x63\x3d\xca\x8e\xc6\xb5\xbc\x3e\x46\x63\xde\xd0\x79\x0c\x7c\x26\x65\x76\x15\x97\x54\xd6\xbf\x86\x09\x81\x6f\x87\xed\x71\xf7\x98\x3b\x6a\x60\x74\xef\xed\x6a\x58\x82\x4d\x0a\xa5\x4b\x4f\x9a\xd6\xcc\x96\xab\x11\x05\xbb\xe3\x41\x1b\xb8\x13\xc1\xe3\x83\x2b\xe4\xe1\x0c\xc6\xaf\xc7\x32\x90\x2b\xf4\xcd\x4d\x27\xc4\xb9\xd5\x85\x37\x22\xaa\x07\x4c\xf6\xda\xfe\x7e\x35\xaa\x31\xae\x44\xe8\x41\xd1\xf1\x62\x95\x48\x99\xed\x8d\x5f\xa5\x6b\x1e\x5c\xd2\x75\xd8\x49\x56\xf8\x4d\x58\xfa\xf9\xed\x1e\x2a\xa5\x1d\x76\xe6\x26\xed\x6e\x8f\xff\x99\x63\xe7\x08\x71\xc2\xd4\x97\xc7\x00\x3a\xb0\xab\xbb\x0a\x1e\xd1\x13\x03\xbe\xd3\xe8\x4d\x89\x9f\x2d\x4a\x13\x41\xe3\x67\x1b\x8b\xf3\x2f\x51\xc5\x14\x4b\x4c\xe5\x39\xfd\x55\x5e\xa2\x9f\x10\x87\xd8\xdb\x4f\x35\x42\xc3\xb0\x7f\xc9\xe8\x7d\x13\xe5\xe0\xfa\x4e\x02\x69\x75\x75\xbc\xcb\x7d\x57\x92\xde\x8a\xdd\x0e\xae\x2f\x7f\x71\xca\xbb\x3e\xa5\x3b\x83\xf4\x2f\xb2\x99\x27\xb8\xf1\xf3\xf2\x1c\x20\x35\xab\x16\x4a\xd7\xc9\xc4\xfc\x6d\x5c\x1f\x43\x30\x83\x0f\x7a\x0b\x6c\xc9\x84\x9c\xcd\x26\xc5\xfe\x61\x94\xec\xa2\x54\x59\xf3\x91\xc9\xf4\xbf\xaf\x2e\xde\x81\x90\x4d\x6b\x81\x33\xcb\xe0\x6d\xb0\xc6\x93\xb2\xe6\x4f\x28\x66\x8d\x4b\x62\x8d\xe8\x04\x6d\x70\x5e\xf8\xc3\x92\xfa\x4a\xe1\x81\x43\x15\xc7\x1b\x0c\x36\x38\x0f\xc7\xee\xcc\xcd\x25\x1c\x59\x23\x88\xa6\x64\xd2\x3f\xd4\x73\xf4\x4f\x25\xf2\xf0\x01\x43\xbf\x69\x06\x21\x05\x6c\x1b\xce\x2c\x1e\xc4\x0c\xab\xa0\x54\xf2\x16\xb5\x3d\x10\x6f\xd5\x90\xc7\x94\x61\x87\xea\x9e\xa4\x6a\x3c\x6c\xee\x88\xef\x41\xcc\x52\x7a\xce\x0c\x72\x50\x72\x18\x6e\xee\xb3\x9a\x34\x85\x90\x65\xd5\x72\x3c\x80\xc7\xcc\x9e\x17\x92\xc6\xf8\xf5\xe5\xe5\xbb\x37\xef\x7e\xcc\x4f\xf8\xe2\x86\xe3\x52\xbe\x0d\xd3\xb2\x28\x55\x4d\x2f\x68\xa1\xd1\x26\x9f\xd9\x4b\x5a\x8b\x1d\xc6\xb2\xe6\x4e\x97\x85\x45\xed\x9f\xf8\x17\x3e\xb6\x51\xe0\xb8\x19\xf3\x6f\x90\xe7\x46\x3c\x47\x07\x8f\xe1\x47\x13\xc3\x46\x27\x47\x8b\xa5\x9d\x68\x31\x38\xc9\x94\x58\x70\x6c\x34\x96\xe4\xe9\x42\x63\x53\xb1\x32\x19\x34\xe8\xe5\x25\x39\xaa\xe2\x21\x9f\x70\x13\x35\x7f\x30\xf6\x22\x95\xc7\xb4\x11\x55\x05\x46\x29\x49\xa7\xa9\x17\x73\x06\x4d\x38\x29\xc6\x67\x55\xae\x5c\xc6\xcd\x1e\x4f\x63\x91\x65\x2a\x10\xcc\x71\x4a\x3e\x64\x56\xaa\xad\x38\xc1\x33\x68\x67\xe0\x7b\xc6\xfb\x95\x1b\x51\xbb\x5f\xbe\x7b\x94\x85\xc8\xd1\x4f\xf8\x93\x70\x79\x09\xf4\xf4\xdd\xcf\xd3\x28\x3e\xb9\xfd\xc7\x88\xa4\x5c\xcd\xb0\xdb\x51\x0f\x4e\x09\x75\xfb\xa3\x57\x63\x8b\x22\x7e\x52\x35\xfc\x96\x6a\x1a\x58\x25\x6a\x61\x0b\xb1\x94\x4a\x27\x21\xc5\x73\x1d\x02\x8b\xdb\xe2\x50\xb9\x5f\x87\xb9\x98\x30\x10\xd8\xe5\x4a\x2f\x57\x4c\x2e\x91\xcd\x93\x5f\xc0\xfc\xd2\x49\xec\x92\x3f\x13\xf5\xae\xb6\xbe\x3b\xd5\xf1\x98\xc1\x1b\x12\x4f\x09\x74\xc6\x59\x70\x08\x4c\x51\xa9\x65\x61\xc4\x9f\x29\x00\x95\x5a\x5e\x89\x3f\x91\x6c\xeb\x37\xec\x69\xdc\x1f\x51\x26\xdd\x40\x93\x8a\x8d\x39\xda\x0d\xa2\x84\xe7\xae\xa8\xf8\xee\x79\x36\x94\x1a\x6b\xa5\xb7\x63\x68\x3c\xc5\xa9\x80\xbe\xfb\xfe\xef\x0e\xd2\xdf\xbe\xfb\x3e\x1b\x13\xe5\x5f\xaa\x4d\x25\x6f\x61\xf5\x24\x30\xcf\xbd\x7d\xfe\xff\x39\xfd\x37\x8d\xc7\xd5\xe1\x45\xa3\x55\x83\xda\x0a\x4c\x35\x7c\x63\x18\x1c\xc4\x2b\xdf\xde\xb3\x5a\x60\xd7\xe0\xf3\x45\x7d\xcf\x2c\x36\x02\x1f\x8e\x89\x31\x24\x72\xe5\x0e\x1c\x45\x46\x61\x41\xb5\xd6\x08\xee\x1c\xf1\x41\xb3\x5b\x61\x60\xde\x8a\x8a\x8f\x37\x01\x9c\x2a\x3e\x1c\x68\x3a\xb6\x59\xa1\xa0\x3b\xfd\x7b\x01\x41\x1e\x44\xf5\x60\x6d\xd7\xda\xb8\xbb\x9b\x85\xbf\x46\x73\x53\x85\x24\x64\x28\x74\xe9\x1f\xac\x9c\x48\x9b\x1d\xd4\x58\x8b\xf8\x4b\x96\x0a\x13\xb1\x14\x09\x54\x94\x50\x1c\x54\x25\x0f\xa4\x29\xc9\xc2\xe3\xa4\x6a\xc3\xa1\x0d\xbd\x0c\x57\xa8\xe2\x67\x61\x92\x5f\x18\xde\x2b\x53\xf7\x42\x0c\xab\x34\x32\xbe\x05\xcf\xa2\xcb\x9d\x0c\x56\x58\x5a\x60\x52\xd9\x15\xfa\x1e\xd8\x34\xa4\xd8\x1a\x9a\xac\xd4\xc3\x53\x78\x50\xd5\xc6\xac\xa1\x54\xd2\x32\xf7\xa5\x97\x54\x79\xed\x26\x27\x7d\x30\x0a\x70\x46\xc9\x01\xf1\x60\xa3\x3c\xbc\x38\x87\xb5\x3b\x5d\xad\xbe\xa9\x10\x88\xf6\x33\xcf\x69\x0b\x0d\x3e\x1d\x2c\xd4\x2d\x6a\x2d\x38\xc7\x54\x1a\x4d\x08\x87\x5f\x12\xf6\xa3\x9c\x7e\x6b\xcc\x15\x86\x9d\xfa\x14\x8c\x57\xaf\xff\x79\xfd\x63\x76\xde\xea\xa8\x8f\x4b\x5a\xf9\x7c\xd9\x8f\x36\xfd\x84\x7c\x72\xc0\xe9\xa8\x5e\x8c\xce\xa0\xe6\xcb\xe1\xc8\x6d\x94\xef\x70\xf0\x96\xc7\xd9\x20\xd3\xe5\x8a\xf8\x46\xe7\xf8\x26\x70\xba\xb1\x75\x15\x77\x74\xce\xe9\x76\xdc\x1b\xf3\xf7\x41\x6c\xe2\x99\xee\x4d\xd7\x9f\xe0\xbf\xfa\xf4\x9e\x78\x72\x09\x5a\x77\xb5\xfd\x38\x6a\xe4\x63\xfc\x57\x0f\xb4\xbc\x82\x45\x5e\xc0\x0f\x0e\x41\xff\x19\xbe\xeb\xb2\x13\xb3\x63\x01\x8c\x7f\x8e\x7a\x3c\x86\xe1\xc4\x2b\x4e\x68\x03\xa4\x47\x37\x8f\xfe\x1b\x00\x00\xff\xff\x84\xe1\x97\x7c\xc1\x33\x00\x00")
 
 func wski18nResourcesEn_usAllJsonBytes() ([]byte, error) {
        return bindataRead(
@@ -112,7 +112,7 @@ func wski18nResourcesEn_usAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/en_US.all.json", size: 
13032, mode: os.FileMode(420), modTime: time.Unix(1520362388, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/en_US.all.json", size: 
13249, mode: os.FileMode(420), modTime: time.Unix(1520531312, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -132,7 +132,7 @@ func wski18nResourcesEs_esAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/es_ES.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/es_ES.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -152,7 +152,7 @@ func wski18nResourcesFr_frAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/fr_FR.all.json", size: 
101, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/fr_FR.all.json", size: 
101, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -172,7 +172,7 @@ func wski18nResourcesIt_itAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/it_IT.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/it_IT.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -192,7 +192,7 @@ func wski18nResourcesJa_jaAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/ja_JA.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/ja_JA.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -212,7 +212,7 @@ func wski18nResourcesKo_krAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/ko_KR.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/ko_KR.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -232,7 +232,7 @@ func wski18nResourcesPt_brAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/pt_BR.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/pt_BR.all.json", size: 
0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -252,7 +252,7 @@ func wski18nResourcesZh_hansAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/zh_Hans.all.json", 
size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/zh_Hans.all.json", 
size: 0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
@@ -272,7 +272,7 @@ func wski18nResourcesZh_hantAllJson() (*asset, error) {
                return nil, err
        }
 
-       info := bindataFileInfo{name: "wski18n/resources/zh_Hant.all.json", 
size: 0, mode: os.FileMode(420), modTime: time.Unix(1515697090, 0)}
+       info := bindataFileInfo{name: "wski18n/resources/zh_Hant.all.json", 
size: 0, mode: os.FileMode(420), modTime: time.Unix(1489187925, 0)}
        a := &asset{bytes: bytes, info: info}
        return a, nil
 }
diff --git a/wski18n/resources/en_US.all.json b/wski18n/resources/en_US.all.json
index 7d1a2d77..67c28505 100644
--- a/wski18n/resources/en_US.all.json
+++ b/wski18n/resources/en_US.all.json
@@ -75,6 +75,10 @@
     "id": "msg_cmd_flag_allow_managed",
     "translation": "allow project entities to be marked managed"
   },
+  {
+    "id": "msg_cmd_flag_project_name",
+    "translation": "project name"
+  },
   {
     "id": "msg_cmd_flag_manifest",
     "translation": "path to manifest file"
@@ -379,6 +383,10 @@
     "id": "msg_warn_deployment_name_not_found",
     "translation": "The {{.key}} [{{.name}}] in the deployment file was not 
found in the manifest file.\n"
   },
+  {
+    "id": "msg_warn_project_name_overridden",
+    "translation": "The project name has been overridden. Using {{.project}}\n"
+  },
   {
     "id": "DEBUG",
     "translation": "================= DEBUG ==================="


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to