You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/02/16 15:52:00 UTC

[GitHub] mrutkows closed pull request #737: adding info message with openwhisk url for runtimes

mrutkows closed pull request #737: adding info message with openwhisk url for runtimes
URL: https://github.com/apache/incubator-openwhisk-wskdeploy/pull/737
 
 
   

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/utils/runtimes.go b/utils/runtimes.go
index cacf9804..48f6af65 100644
--- a/utils/runtimes.go
+++ b/utils/runtimes.go
@@ -22,19 +22,24 @@ import (
 	"encoding/json"
 	"github.com/apache/incubator-openwhisk-client-go/whisk"
 	"github.com/apache/incubator-openwhisk-wskdeploy/wski18n"
+	"github.com/apache/incubator-openwhisk-wskdeploy/wskprint"
 	"io/ioutil"
 	"net/http"
 	"strings"
 	"time"
 )
 
-const NODEJS_FILE_EXTENSION = "js"
-const SWIFT_FILE_EXTENSION = "swift"
-const PYTHON_FILE_EXTENSION = "py"
-const JAVA_FILE_EXTENSION = "java"
-const JAR_FILE_EXTENSION = "jar"
-const PHP_FILE_EXTENSION = "php"
-const ZIP_FILE_EXTENSION = "zip"
+const (
+	NODEJS_FILE_EXTENSION   = "js"
+	SWIFT_FILE_EXTENSION    = "swift"
+	PYTHON_FILE_EXTENSION   = "py"
+	JAVA_FILE_EXTENSION     = "java"
+	JAR_FILE_EXTENSION      = "jar"
+	PHP_FILE_EXTENSION      = "php"
+	ZIP_FILE_EXTENSION      = "zip"
+	HTTP_CONTENT_TYPE_KEY   = "Content-Type"
+	HTTP_CONTENT_TYPE_VALUE = "application/json; charset=UTF-8"
+)
 
 // Structs used to denote the OpenWhisk Runtime information
 type Limit struct {
@@ -74,10 +79,9 @@ var FileRuntimeExtensionsMap map[string]string
 // `curl -k https://openwhisk.ng.bluemix.net`
 // hard coding it here in case of network unavailable or failure.
 func ParseOpenWhisk(apiHost string) (op OpenWhiskInfo, err error) {
-	// TODO() create HTTP header constants and use them
-	ct := "application/json; charset=UTF-8"
-	req, _ := http.NewRequest("GET", "https://"+apiHost, nil)
-	req.Header.Set("Content-Type", ct)
+	url := "https://" + apiHost
+	req, _ := http.NewRequest("GET", url, nil)
+	req.Header.Set(HTTP_CONTENT_TYPE_KEY, HTTP_CONTENT_TYPE_VALUE)
 	tlsConfig := &tls.Config{
 		InsecureSkipVerify: true,
 	}
@@ -104,16 +108,16 @@ func ParseOpenWhisk(apiHost string) (op OpenWhiskInfo, err error) {
 	}
 
 	// Local openwhisk deployment sometimes only returns "application/json" as the content type
-	// TODO() create HTTP header constants and use them
-	if err != nil || !strings.Contains(ct, res.Header.Get("Content-Type")) {
+	if err != nil || !strings.Contains(HTTP_CONTENT_TYPE_VALUE, res.Header.Get(HTTP_CONTENT_TYPE_KEY)) {
 		stdout := wski18n.T(wski18n.ID_MSG_UNMARSHAL_LOCAL)
-		whisk.Debug(whisk.DbgInfo, stdout)
+		wskprint.PrintOpenWhiskInfo(stdout)
 		err = json.Unmarshal(RUNTIME_DETAILS, &op)
 	} else {
 		b, _ := ioutil.ReadAll(res.Body)
 		if b != nil && len(b) > 0 {
-			stdout := wski18n.T(wski18n.ID_MSG_UNMARSHAL_NETWORK)
-			whisk.Debug(whisk.DbgInfo, stdout)
+			stdout := wski18n.T(wski18n.ID_MSG_UNMARSHAL_NETWORK_X_url_X,
+				map[string]interface{}{"url": url})
+			wskprint.PrintOpenWhiskInfo(stdout)
 			err = json.Unmarshal(b, &op)
 		}
 	}
diff --git a/wski18n/i18n_ids.go b/wski18n/i18n_ids.go
index 3ce8f210..f0a223e9 100644
--- a/wski18n/i18n_ids.go
+++ b/wski18n/i18n_ids.go
@@ -99,9 +99,9 @@ const (
 	ID_MSG_CONFIG_INFO_NAMESPACE_X_namespace_X_source_X = "msg_config_namespace_info"
 	ID_MSG_CONFIG_INFO_APIGE_ACCESS_TOKEN_X_source_X    = "msg_config_apigw_access_token_info"
 
-	// YAML marshall / unmarshall
-	ID_MSG_UNMARSHAL_LOCAL   = "msg_unmarshall_local"
-	ID_MSG_UNMARSHAL_NETWORK = "msg_unmarshall_network"
+	// YAML marshal / unmarshal
+	ID_MSG_UNMARSHAL_LOCAL           = "msg_unmarshal_local"
+	ID_MSG_UNMARSHAL_NETWORK_X_url_X = "msg_unmarshal_network"
 
 	// Informational
 	ID_MSG_DEPLOYMENT_CANCELLED = "msg_deployment_cancelled"
@@ -297,7 +297,7 @@ var I18N_ID_SET = [](string){
 	ID_MSG_UNDEPLOYMENT_FAILED,
 	ID_MSG_UNDEPLOYMENT_SUCCEEDED,
 	ID_MSG_UNMARSHAL_LOCAL,
-	ID_MSG_UNMARSHAL_NETWORK,
+	ID_MSG_UNMARSHAL_NETWORK_X_url_X,
 	ID_WARN_COMMAND_RETRY,
 	ID_WARN_CONFIG_INVALID_X_path_X,
 	ID_WARN_ENTITY_NAME_EXISTS_X_key_X_name_X,
diff --git a/wski18n/i18n_resources.go b/wski18n/i18n_resources.go
index fd6099d3..303aff0b 100644
--- a/wski18n/i18n_resources.go
+++ b/wski18n/i18n_resources.go
@@ -109,12 +109,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/de_DE.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 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\x7b\x8f\x1b\xb7\x11\xff\xdf\x9f\x62\x60\x14\x70\x02\x9c\x65\x27\x45\x81\xc2\xc0\xa1\x70\x6b\x37\xb9\x26\xf6\x19\xf7\x48\x10\x38\x87\x35\xb5\x1c\xad\x18\x71\xc9\x05\xc9\x95\xac\x1c\xd4\xcf\x5e\x0c\xb9\x2f\xe9\x8e\xbb\x94\x9c\xa0\xf9\x27\xf2\x71\x38\xbf\x79\x90\xf3\xe2\x7e\x7c\x02\x70\xff\x04\x00\xe0\xa9\xe0\x4f\x5f\xc1\xd3\xd2\x16\x59\x65\x70\x21\x3e\x67\x68\x8c\x36\x4f\xcf\xc2\xaa\x33\x4c\x59\xc9\x9c\xd0\x8a\xc8\xde\xfa\xb5\x27\x00\xbb\xb3\x11\x0e\x42\x2d\x74\x84\xc1\x05\x2d\x4d\xed\xb7\x75\x9e\xa3\xb5\x11\x16\xd7\xcd\xea\x14\x97\x0d\x33\x4a\xa8\x22\xc2\xe5\xe7\x66\x35\xca\x25\x2f\x79\xc6\xd1\xe6\x99\xd4\xaa\xc8\xaa\x7a\x2e\x85\x5d\x46\x98\x7d\x08\xab\xc0\xa0\x62\xf9\x8a\x15\x08\x4e\x83\x5b\x22\x18\x2c\x84\x75\x66\x0b\x16\x1d\x08\x05\xff\x7d\x31\xdb\xd8\x55\x65\x74\x65\x67\xa9\xd0\x06\x2b\x6d\x5c\x04\xf9\xca\x2f\x5a\xd0\x0a\x38\x56\x52\x6f\x91\x03\x2a\x27\x9c\x40\x0b\x5f\x89\x19\xce\xce\xe0\x43\x90\xc9\x9e\xc1\xeb\x9c\xf6\xd9\x33\xb8\x31\xa2\x28\xd0\xd8\x33\xb8\xaa\x25\xad\xa0\xcb\x67\x5f\x03\xb3\xb0\x41\x29\xe9\xff\x06\x73\x54\xce\xef\x58\x7b\x34\x4b\xf2\x93\x4e\xb6\xc2\x5c\x2c\x04\x72\x50\xac\x44\x5b\xb1\x1c\xd3\x75\xd1\x3a\xa6\xc9\x6b\x70\x5a\x4b\x32\x5c\x50\xe4\x0c\x6a\x15\x7e\x01\x53\x1c\xec\x56\xe5\xa0\x2b\x54\x9b\xa5\xb0\xab\xd6\xce\x16\x6a\x2b\x54\x01\x0c\x4a\xa6\xc4\x02\xad\xf3\xc4\xba\x22\xae\x4c\x36\xac\x4a\xd2\x64\x21\x64\x47\xfe\xcb\xeb\x77\x3f\xa6\xc8\x6c\x97\xda\xb8\x53\x7c\xcf\x3a\xcf\xa7\xc3\x8c\xfa\xf9\x83\xd1\x6b\xc1\xd1\x02\x03\x5b\x97\x25\x33\x5b\x08\xf4\xa0\x17\xb0\x59\x32\xf7\xcc\xc2\x1c\x71\x70\x0a\xbe\xcc\x5b\x8d\x48\x93\xee\xa2\x73\xed\x34\x2c\x51\x56\x0d\x34\x6c\x75\x6d\x92\x3c\x45\x1e\x49\x97\x85\x71\x1e\x13\x85\x73\x60\x0a\x98\x3f\xdc\x67\xb0\x40\xe4\x67\xe0\xc2\x09\x07\x6d\xc0\xd4\xb2\xbb\x90\x2d\xf8\x31\xb0\x99\xbf\x50\xdb\x31\xf4\x17\x4c\xc1\xfd\xfd\x6c\x85\xdb\xdd\xee\x10\xca\xeb\x99\x8c\xb7\x46\x63\x89\x73\xec\x18\x08\xe5\x3c\xf7\x86\x0e\x54\x5d\xce\x49\xcd\x05\x6c\xec\x2a\x78\x60\x1c\x6b\x21\x59\x91\xb1\x4a\x64\x4b\x6d\x63\xce\x0d\x9e\x7b\xfd\xe1\x02\x3e\x7d\x7f\x79\x7d\xf3\x29\x91\xe3\xb8\xec\x03\xa6\x3f\xbd\xbd\xba\xbe\xb8\x7c\x9f\xc4\xb7\x76\xcb\x6c\x85\x31\xeb\xd3\xb2\x36\xe2\x77\xff\x07\xf8\xf4\xc3\xdb\x5f\x52\x98\xe6\x68\x5c\xe6\xdd\xf2\x38\xd7\x8a\xb9\x25\x99\x94\x0c\x3d\x23\xe2\x04\x1f\x06\xc6\x5a\x2d\x44\x2c\xe5\x84\x45\xcf\x0a\xbe\xe2\xb8\x60\xb5\x74\x20\x2c\xfc\xe5\xfb\xcb\x77\x6f\xfb\xc4\xf0\x75\x8a\x55\xa4\xd4\x9b\xac\xe1\x11\x4b\x94\x9e\x08\x3a\xa2\x69\xae\x7d\xb4\x1c\xb3\x4b\x17\xa1\xbb\xb0\x9a\xc0\x5a\x28\x87\x86\x6e\xe8\x3a\x66\xf3\x20\xed\x80\x0e\x2a\xa3\xcb\x2a\x49\xf0\x15\x6e\x93\xdd\xb9\xc2\x6d\xaa\xd0\xc1\xca\x25\x53\xac\xc0\x58\xf0\x09\x62\x57\x46\xff\x86\xb9\xeb\x53\xaf\xd3\x30\xa7\x10\x60\x56\xc8\xa1\xe5\x30\x8d\xd8\x85\xa7\x71\xfb\x1f\x11\x5a\x3c\xdb\x2e\xf4\x47\xf8\xf6\xeb\xd3\xbc\x1a\x55\x27\x24\xb4\x68\xd6\x68\x24\x5a\xdb\xda\x26\x81\xb5\x75\x46\x44\x39\x07\x43\xd7\x16\x0d\x1d\x69\xa1\x90\x83\xa9\x95\x13\x65\x17\x0b\x13\x10\x9c\x2e\x0a\x89\x19\xa5\xab\x08\xcc\x8d\xa7\x80\xef\x29\xa1\x95\x68\x2d\x2b\xd2\x4f\xca\x1a\xcd\x5c\xdb\x98\x91\x9b\x55\xd0\xb5\xab\xea\x31\x73\xf8\x30\x91\x95\xc2\x52\xc2\xf4\x01\x30\x1e\xff\x6e\x96\x08\x44\x41\x07\x2f\x0f\x41\x90\x0e\xb8\xb0\xa0\xb4\x83\xc0\xaa\x36\xc8\x67\xbf\x8e\x99\xe7\x00\xb1\x12\x23\xb9\x81\x10\x29\x88\x13\xc9\x97\xe1\x4c\x9d\x4a\x42\xea\x68\x4e\x83\x6a\x54\x19\xeb\x48\x0e\xf5\xf9\x78\x7f\x3f\xa3\xdf\xbb\xdd\xdd\x19\x2c\x8c\x2e\x29\xb1\x5b\x5d\x9b\x1c\x77\xbb\x24\xcc\xe0\xb0\x29\x4c\x22\x6b\x7d\x65\xd1\x9d\x86\xd5\x99\x67\x0a\x6d\xcf\x8e\xa4\x62\xf7\x87\xd3\xf5\xac\x44\xb1\xc9\x98\x6f\xc6\x32\xa7\x57\xa8\x26\x55\xa6\x1d\x10\x76\x80\xdf\x71\x9a\xf2\xb5\x2a\x99\xb1\x4b\x26\x65\x26\x75\xce\x64\x04\xf2\xb6\x25\x83\xcb\x0a\xd5\xcf\xbe\xfc\x20\x09\x03\x98\xdf\x09\x6b\x26\x6b\xb4\xa9\x68\x0a\xdd\x46\x9b\xd5\x49\x78\x3e\xb3\x29\x74\xa3\x58\x7d\x62\xcd\x72\xa6\x72\x94\x32\x9a\x78\x2e\x7f\x98\xc1\xbf\x02\x0d\xd5\xd5\xfd\xce\x54\x80\x05\x13\x71\xee\x6f\xfa\x0c\xcf\x05\x6f\x6e\x5e\x59\x49\x74\x08\xb6\x26\x07\x2e\x6a\x29\xb7\x33\xb8\xaa\x15\x7c\xea\x4a\xcf\xae\x67\xfb\x44\x49\xc0\x60\xa9\x29\x8f\x33\xe3\x04\x93\x72\xdb\x37\x27\xcc\x5a\x74\xe3\x66\x1f\x48\x1a\x3a\x9d\xcc\x3a\xe6\xea\x58\xb1\xf3\xfc\xf9\xf3\xe7\xe7\xe7\xe7\xe7\x03\xdb\x0f\x74\xb8\xf6\x5b\x81\x08\x88\x30\x09\xd5\x4f\x21\x90\xa7\x98\xa8\x35\x0d\x87\x66\x74\x11\x8c\x33\x7e\xaa\x4e\xf7\xf5\x70\x6f\x3a\xc8\xa8\xbf\x6f\x07\x94\xe3\x1e\x4f\xc6\x9b\xb2\xdf\x1e\xe4\x09\x16\x6c\x8b\xa0\xcc\x37\x96\xd3\xc5\xeb\xad\xef\x3f\x29\xf6\x51\x91\xb2\xdb\xdd\xc1\x42\x9b\xd4\x7b\x73\x00\x36\x54\xf4\x28\xb8\x64\xd7\x85\x9e\x33\x6b\x6f\xcc\xc4\x4c\xac\xeb\x3d\xdb\xd0\x4e\x78\x4b\xd6\xcc\x04\x86\x26\xed\xee\x60\x3a\x7a\x7c\x88\xf6\xa6\x5d\x87\x47\x05\x98\xcd\x46\xda\xfb\x06\xa2\x35\xc8\x1f\xa9\x62\xcf\x33\x45\xc9\x96\x3a\xae\xe6\x6d\x4f\x71\x82\xa2\x1c\x2b\x54\x1c\x55\x7e\x8c\x3d\xfb\x4d\x43\xa0\xe3\x70\xfa\x5b\x18\x35\xea\x9b\x47\x61\xbe\xe4\xe4\x3c\x2e\x05\xc5\x9e\xda\xc4\x0a\xbd\x41\x24\xd5\x8b\x88\xea\xff\xc7\x34\xd4\xea\x73\xdc\x41\xf9\x32\x0f\x3e\x8c\xa4\x7f\x8c\x0f\x13\xaf\x46\x4c\x92\x71\x3f\xee\x45\xf4\x13\x3d\x39\x11\x84\xa9\x8f\x3e\x35\xad\x79\x89\x42\x92\xe9\xfa\xf4\x31\x59\x80\xd7\x86\x3c\xd9\xc0\x0e\x53\xc5\x9f\x77\xde\x5a\x1d\x17\xba\x56\x3c\x6b\xe4\x1d\x9f\x40\xbe\x21\xa2\x68\x6c\xda\x2c\x45\xbe\x84\x8d\x1f\xe9\x93\x5c\x3c\x94\xa3\x6e\x89\x90\xd7\xc6\x90\x61\x5a\x05\xdb\x29\x86\x4f\x5a\xe1\x37\x71\x60\xd6\xeb\x42\xf6\x4b\x4e\x5f\x61\x76\x33\xd1\x4a\xfe\xaa\x3e\x48\x64\xd6\x4f\x7a\xd6\x82\xa3\x17\x8a\xe8\x49\x76\x9f\x2e\xbb\x62\xee\x15\x4c\x63\x8d\x36\xca\x0f\xb0\x98\x3a\x6c\x9c\x7d\x47\x92\x00\xd4\x4c\x59\x23\xce\xd0\xb0\xd5\x35\x18\xf4\x9e\xdf\x30\xe5\xfa\x81\x19\xb8\xa5\xb0\xff\x80\xaf\xb6\x2f\xde\x7f\x9d\x80\x33\xd5\x1f\x3f\x54\x69\xd0\xe6\x7d\x6c\x07\x8c\xbe\xc3\xa1\x3e\xab\xa8\xd1\xba\xbb\x04\xdc\xd6\xc9\x47\x69\xd8\x3d\xd6\x24\xe8\xf8\xf6\xea\xea\xf2\xea\x3a\xc2\xfe\xfc\xf0\x3f\x08\xe4\xf0\x60\xe1\xfc\x7c\x24\xb7\x1b\xb3\x1f\xc4\x56\x4a\x6f\x54\xe6\xb6\xd5\x48\x12\x6a\x83\x15\x51\x91\xc5\x9a\x5d\x33\xe8\x67\xeb\xa0\x95\xdc\x82\xad\xab\xf0\xec\xf6\xc2\x0f\xb5\x67\x76\x6b\x1d\x96\x30\x17\x8a\x0b\x55\x58\xd0\x06\x0a\xe1\x96\xf5\x7c\x96\xeb\xb2\x7b\x01\x19\x2f\x46\x82\xc0\x6d\x54\x23\x47\x66\x4a\xbb\x10\x07\x46\x7a\xea\x47\xef\xbc\x50\x87\x23\x5a\x1f\xe4\x3c\x2f\x5a\xdc\x7f\x82\x99\x12\xab\xa9\x93\x72\x83\xcc\xc5\xac\xe7\x1f\x86\xc1\x93\xec\x45\xa2\x8d\x70\x4b\xf0\x2f\xca\xed\x34\xed\x15\x2d\xa2\x31\xbb\x9d\x7f\xaa\x0b\x6b\xb9\xe6\x61\x81\x7e\x4c\x74\xff\x03\x91\x42\x78\x1c\x15\x89\x3f\x08\x8e\x7f\x92\x48\x0b\x44\x9e\x09\xb5\xd6\xab\x98\x40\xff\xf6\x99\x8a\x2e\x4b\x20\xf3\xe1\x8e\xb6\xc1\x66\xe9\x5f\xee\x1a\x49\xdb\xa7\xab\xb0\xf4\xe7\x48\xbb\xc2\x6d\x37\x87\x2b\x99\xe2\xcc\x69\x33\x36\x63\xec\x68\xfc\xc8\xea\x63\x6b\xcc\x3b\xba\x26\x0d\x9f\x49\xcc\xae\x87\x9a\x3a\xd7\xef\x86\xc7\x73\x70\x72\x99\x03\x3f\x5f\x1e\x34\x55\x93\xa0\xfe\x22\x95\xc2\x96\xcc\xe5\xb1\x27\xdc\xbd\x7b\x44\x1b\xb8\x87\xe0\x23\xd7\xc9\xaf\xb7\x8d\x1d\xd7\x18\x86\x93\x1e\xc4\xbb\xd5\x67\x30\x22\x2a\x07\x4c\xf6\xae\x5d\x58\x6d\xd5\x18\x57\xa2\x19\x74\xd3\xf1\x62\x52\xc4\xcc\x76\x11\x56\x29\xfa\x34\x2e\xe9\x26\xe4\x84\xd5\xfc\x26\x59\xfa\x47\xe1\x3d\xa9\xb4\xf1\xb2\x87\x87\x54\xbf\x27\xfc\x4c\xb1\x73\x2b\xe2\x84\xa9\xaf\x8e\x11\xe8\xc0\xae\xfe\x2a\x04\x89\x9e\x59\x08\x93\xc2\x60\x4a\xfc\xec\x50\xd9\x56\x68\xfc\xec\xda\x76\xfb\x4b\x54\xb1\x59\x81\xb1\xca\xa5\xbf\xca\x05\x86\xf7\xd8\x26\x25\xf4\xaf\x12\x36\xd4\x59\xfd\x38\xca\xa2\x59\x8b\x7c\x70\x7d\x27\x05\xa9\x8d\x3c\xde\xe5\xf7\xf7\xb3\xda\x48\x4a\x61\xbb\x1d\xdc\x5e\xfd\xe8\x95\xaf\x8d\x6c\xce\x20\xfd\x8b\x6c\x16\x08\xee\xd2\x32\x00\x09\x52\x32\xb9\xd0\xa6\x8c\x96\xda\xef\xda\xf5\x31\x09\x66\x70\x63\xb6\xc0\x0a\x26\xd4\x6c\x36\x09\xfb\x9b\xd5\xaa\x8b\x52\x79\xc9\x47\xde\x81\xff\x73\x7d\xf9\x1e\x84\xaa\x6a\x07\x9c\x39\x06\xef\x1a\x6b\x3c\xcb\x4b\xfe\x8c\x62\xd6\x38\x12\xab\x44\x07\xb4\xc1\x79\x16\x0e\x4b\xec\xc5\xff\x91\x43\xd5\x3e\x4f\x30\xd8\xe0\xbc\xfb\x14\xe1\xf5\x87\x8b\x40\x56\x09\xa2\xc9\x99\x0a\xf5\xc3\x1c\x43\xaa\x44\xde\x7c\x15\xd1\x6f\x9a\x41\x53\xd4\xd5\x15\x67\xee\xe0\x2b\x02\x3a\x70\xb9\x56\x6b\x34\xee\x00\xde\xe9\x21\x8f\x29\xc3\x0e\xd5\x3d\x49\xd5\xf6\xb0\xf9\x23\xbe\x27\x62\x92\xd2\x73\x66\x91\x83\x56\xc3\x70\xf3\x90\xd5\xa4\x29\x84\xca\x65\xcd\xf1\x40\x3c\x66\xf7\xbc\x10\x35\xc6\xcf\xaf\xaf\xde\x5f\xbc\xff\x2e\xbd\x0e\x6d\x37\x1c\x57\x89\x6e\x98\x51\x59\xae\x4b\xca\xa0\x99\x41\x17\x4d\xb3\x57\xb4\xd6\xce\x0c\xf3\x92\x7b\x5d\x16\x0e\x4d\x48\xf1\xaf\x42\x6c\xa3\xc0\x71\x37\xe6\xdf\x06\xcf\x3f\xd1\x1c\x1d\x3c\x86\x9f\x28\x0c\x47\x97\x1c\x1d\xe6\x6e\x62\x68\xe0\x91\xa9\xb0\xe0\x58\x19\xcc\xc9\xd3\x99\xc1\x4a\xb2\x3c\x1a\x34\x28\xf3\x12\x8e\x96\xbc\xa9\x27\xfc\x8b\x58\x38\x18\x7b\x91\x2a\xc8\xb4\x11\x52\x82\xd5\x5a\xd1\x69\xea\x61\xce\xa0\x6a\x4e\x8a\x0d\x55\x95\x2f\x86\x71\xb3\xc7\xd3\x3a\x64\x89\x0a\x34\xe6\x38\xa5\x1e\xb2\x4b\x5d\x4b\x4e\xe2\x59\x74\x33\x08\x53\xe0\xfd\x5e\x8c\xa8\xfd\xaf\x30\x0f\x4a\x92\xc8\xd3\x4f\xf8\x93\xe4\x0a\x08\x94\xfa\x1e\xd6\x69\x14\x9f\xfc\xfe\x63\x20\xa9\x56\xb3\x6c\x3d\xea\xc1\x29\x50\xbf\xbf\xf5\x6a\x3b\x74\x68\x3f\x60\x1a\x7e\xb9\x34\x2d\x98\x14\xa5\x70\x99\x28\x94\x36\x51\x91\xda\x73\xdd\x04\x16\xbf\xc5\x4b\xe5\x7f\x1d\xd6\x62\xc2\x42\xc3\x2e\x15\x3d\x5f\x32\x55\x20\x9b\x47\xbf\x37\xf9\xb1\x43\xec\x8a\x3f\xdb\xea\x2d\xb7\x61\xde\xd4\xf1\x98\xc1\x05\xc1\x53\x01\x9d\x70\x16\xbc\x04\x36\x93\xba\xc8\xac\xf8\x3d\x26\x80\xd4\xc5\xb5\xf8\x1d\xc9\xb6\x61\xc3\x9e\xc6\xfd\x11\x65\xca\x3f\x4b\x52\xb3\x31\x47\xb7\x41\x54\xf0\xd2\x37\x15\xdf\xbc\x4c\x16\xa5\xc4\x52\x9b\xed\x98\x34\x81\xe2\x54\x81\xbe\xf9\xf6\xef\x5e\xa4\xbf\x7d\xf3\x6d\xb2\x4c\x54\x7f\xe9\x3a\x56\xbc\x35\xab\x27\x09\xf3\x32\xd8\xe7\xaf\x2f\xe9\xbf\x69\x79\xfc\x78\x20\xab\x8c\xae\xd0\x38\x81\xb1\x11\x6e\x1b\x06\x07\xf1\x2a\x0c\xec\x9c\x11\xd8\x8d\xec\xc2\xac\xa1\x67\xd6\x8e\xf6\x1e\x8f\x89\x6d\x48\xe4\xda\x1f\x38\x8a\x8c\xc2\x81\xae\x9d\x15\xdc\x3b\xe2\xc6\xb0\xb5\xb0\x30\xaf\x85\xe4\xe3\xb3\x09\xaf\x4a\x08\x07\x86\x8e\x6d\x52\x28\xe8\x4e\xff\x5e\x40\x50\x07\x51\xbd\xb1\xb6\x9f\xb8\xdc\xdf\xcf\x9a\xbf\xb6\xe6\xa6\x0e\x49\xa8\xa6\xd1\xa5\x7f\xb0\x7c\xa2\x6c\xf6\xa2\xb6\xbd\x48\xb8\x64\xb1\x30\xd1\xb6\x22\x0d\x15\x15\x14\x07\x5d\xc9\x23\x65\x4a\xb4\xf1\x38\xa9\xdb\xf0\xd2\x36\xb3\x0c\xdf\xa8\xe2\x67\x61\xa3\xdf\xf3\x3d\x68\x53\xf7\x42\x0c\x93\x06\x19\xdf\x42\x60\xd1\xd5\x4e\x16\x25\xe6\x0e\x98\xd2\x6e\x89\xc6\x6f\x8b\x8a\xf4\xe6\xed\x3f\x6f\xbf\x4b\x2e\x87\x3c\xf5\x71\xb5\x10\x9f\x87\x6f\xf5\xd6\x68\xc4\x22\x56\x07\xfd\xe4\x17\x9b\x56\xe6\xe1\x11\x6a\xf4\x1b\x8f\x95\x04\xd4\x3d\xc5\x84\x37\xdb\xc9\x27\x37\x4f\xf5\x6a\x8a\xeb\xe0\x11\x68\x94\xef\xf0\x29\x28\x8d\xb3\x45\x66\xf2\x25\xf1\x6d\x66\xef\x19\x17\x06\xf3\x91\xc1\xcc\x75\xbb\xa3\x9b\xdc\x77\x3b\x1e\x3c\x3c\xf7\x16\xec\x4d\xf7\xe4\xee\xc9\xff\x02\x00\x00\xff\xff\x3d\xdc\x82\x73\x09\x32\x00\x00")
+var _wski18nResourcesEn_usAllJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5a\x7b\x8f\x1b\xb7\x11\xff\xdf\x9f\x62\x60\x14\x70\x02\x9c\x65\x27\x45\x81\xc2\xc0\xa1\x70\x6b\x37\xb9\x26\xf6\x19\xf7\x48\x10\x38\x87\x35\xb5\x1c\xad\x18\x71\xc9\x05\xc9\x95\xac\x1c\xd4\xcf\x5e\x0c\xb9\x2f\xe9\x8e\xbb\x94\x9c\xa0\xf9\x27\xf2\x71\x38\xbf\x79\x90\xf3\xe2\x7e\x7c\x02\x70\xff\x04\x00\xe0\xa9\xe0\x4f\x5f\xc1\xd3\xd2\x16\x59\x65\x70\x21\x3e\x67\x68\x8c\x36\x4f\xcf\xc2\xaa\x33\x4c\x59\xc9\x9c\xd0\x8a\xc8\xde\xfa\xb5\x27\x00\xbb\xb3\x11\x0e\x42\x2d\x74\x84\xc1\x05\x2d\x4d\xed\xb7\x75\x9e\xa3\xb5\x11\x16\xd7\xcd\xea\x14\x97\x0d\x33\x4a\xa8\x22\xc2\xe5\xe7\x66\x35\xca\x25\x2f\x79\xc6\xd1\xe6\x99\xd4\xaa\xc8\xaa\x7a\x2e\x85\x5d\x46\x98\x7d\x08\xab\xc0\xa0\x62\xf9\x8a\x15\x08\x4e\x83\x5b\x22\x18\x2c\x84\x75\x66\x0b\x16\x1d\x08\x05\xff\x7d\x31\xdb\xd8\x55\x65\x74\x65\x67\xa9\xd0\x06\x2b\x6d\x5c\x04\xf9\xca\x2f\x5a\xd0\x0a\x38\x56\x52\x6f\x91\x03\x2a\x27\x9c\x40\x0b\x5f\x89\x19\xce\xce\xe0\x43\x90\xc9\x9e\xc1\xeb\x9c\xf6\xd9\x33\xb8\x31\xa2\x28\xd0\xd8\x33\xb8\xaa\x25\xad\xa0\xcb\x67\x5f\x03\xb3\xb0\x41\x29\xe9\xff\x06\x73\x54\xce\xef\x58\x7b\x34\x4b\xf2\x93\x4e\xb6\xc2\x5c\x2c\x04\x72\x50\xac\x44\x5b\xb1\x1c\xd3\x75\xd1\x3a\xa6\xc9\x6b\x70\x5a\x4b\x32\x5c\x50\xe4\x0c\x6a\x15\x7e\x01\x53\x1c\xec\x56\xe5\xa0\x2b\x54\x9b\xa5\xb0\xab\xd6\xce\x16\x6a\x2b\x54\x01\x0c\x4a\xa6\xc4\x02\xad\xf3\xc4\xba\x22\xae\x4c\x36\xac\x4a\xd2\x64\x21\x64\x47\xfe\xcb\xeb\x77\x3f\xa6\xc8\x6c\x97\xda\xb8\x53\x7c\xcf\x3a\xcf\xa7\xc3\x8c\xfa\xf9\x83\xd1\x6b\xc1\xd1\x02\x03\x5b\x97\x25\x33\x5b\x08\xf4\xa0\x17\xb0\x59\x32\xf7\xcc\xc2\x1c\x71\x70\x0a\xbe\xcc\x5b\x8d\x48\x93\xee\xa2\x73\xed\x34\x2c\x51\x56\x0d\x34\x6c\x75\x6d\x92\x3c\x45\x1e\x49\x97\x85\x71\x1e\x13\x85\x73\x60\x0a\x98\x3f\xdc\x67\xb0\x40\xe4\x67\xe0\xc2\x09\x07\x6d\xc0\xd4\xb2\xbb\x90\x2d\xf8\x31\xb0\x99\xbf\x50\xdb\x31\xf4\x17\x4c\xc1\xfd\xfd\x6c\x85\xdb\xdd\xee\x10\xca\xeb\x99\x8c\xb7\x46\x63\x89\x73\xec\x18\x08\xe5\x3c\xf7\x86\x0e\x54\x5d\xce\x49\xcd\x05\x6c\xec\x2a\x78\x60\x1c\x6b\x21\x59\x91\xb1\x4a\x64\x4b\x6d\x63\xce\x0d\x9e\x7b\xfd\xe1\x02\x3e\x7d\x7f\x79\x7d\xf3\x29\x91\xe3\xb8\xec\x03\xa6\x3f\xbd\xbd\xba\xbe\xb8\x7c\x9f\xc4\xb7\x76\xcb\x6c\x85\x31\xeb\xd3\xb2\x36\xe2\x77\xff\x07\xf8\xf4\xc3\xdb\x5f\x52\x98\xe6\x68\x5c\xe6\xdd\xf2\x38\xd7\x8a\xb9\x25\x99\x94\x0c\x3d\x23\xe2\x04\x1f\x06\xc6\x5a\x2d\x44\x2c\xe5\x84\x45\xcf\x0a\xbe\xe2\xb8\x60\xb5\x74\x20\x2c\xfc\xe5\xfb\xcb\x77\x6f\xfb\xc4\xf0\x75\x8a\x55\xa4\xd4\x9b\xac\xe1\x11\x4b\x94\x9e\x08\x3a\xa2\x69\xae\x7d\xb4\x1c\xb3\x4b\x17\xa1\xbb\xb0\x9a\xc0\x5a\x28\x87\x86\x6e\xe8\x3a\x66\xf3\x20\xed\x80\x0e\x2a\xa3\xcb\x2a\x49\xf0\x15\x6e\x93\xdd\xb9\xc2\x6d\xaa\xd0\xc1\xca\x25\x53\xac\xc0\x58\xf0\x09\x62\x57\x46\xff\x86\xb9\xeb\x53\xaf\xd3\x30\xa7\x10\x60\x56\xc8\xa1\xe5\x30\x8d\xd8\x85\xa7\x71\xfb\x1f\x11\x5a\x3c\xdb\x2e\xf4\x47\xf8\xf6\xeb\xd3\xbc\x1a\x55\x27\x24\xb4\x68\xd6\x68\x24\x5a\xdb\xda\x26\x81\xb5\x75\x46\x44\x39\x07\x43\xd7\x16\x0d\x1d\x69\xa1\x90\x83\xa9\x95\x13\x65\x17\x0b\x13\x10\x9c\x2e\x0a\x89\x19\xa5\xab\x08\xcc\x8d\xa7\x80\xef\x29\xa1\x95\x68\x2d\x2b\xd2\x4f\xca\x1a\xcd\x5c\xdb\x98\x91\x9b\x55\xd0\xb5\xab\xea\x31\x73\xf8\x30\x91\x95\xc2\x52\xc2\xf4\x01\x30\x1e\xff\x6e\x96\x08\x44\x41\x07\x2f\x0f\x41\x90\x0e\xb8\xb0\xa0\xb4\x83\xc0\xaa\x36\xc8\x67\xbf\x8e\x99\xe7\x00\xb1\x12\x23\xb9\x81\x10\x29\x88\x13\xc9\x97\xe1\x4c\x9d\x4a\x42\xea\x68\x4e\x83\x6a\x54\x19\xeb\x48\x0e\xf5\xf9\x78\x7f\x3f\xa3\xdf\xbb\xdd\xdd\x19\x2c\x8c\x2e\x29\xb1\x5b\x5d\x9b\x1c\x77\xbb\x24\xcc\xe0\xb0\x29\x4c\x22\x6b\x7d\x65\xd1\x9d\x86\xd5\x99\x67\x0a\x6d\xcf\x8e\xa4\x62\xf7\x87\xd3\xf5\xac\x44\xb1\xc9\x98\x6f\xc6\x32\xa7\x57\xa8\x26\x55\xa6\x1d\x10\x76\x80\xdf\x71\x9a\xf2\xb5\x2a\x99\xb1\x4b\x26\x33\xa9\x73\x26\x23\x88\xb7\x2d\x15\x5c\x56\xa8\x7e\xf6\xd5\x47\x13\x31\x6c\xc0\xf3\xbb\x61\xcd\x64\x8d\x36\x11\x50\xa1\xdb\x68\xb3\x3a\x19\xd2\xe7\x37\x85\x0e\x98\x23\x75\x6b\x23\x27\x74\xed\x53\x6d\x96\x33\x95\xa3\x94\xd1\x54\x74\xf9\xc3\x0c\xfe\x15\x68\xa8\xd2\xee\x77\xa6\x02\x2c\x98\x88\x73\x7f\xd3\xe7\x7c\x2e\x78\x73\x17\xcb\x4a\xa2\x43\xb0\x35\xb9\x74\x51\x4b\xb9\x9d\xc1\x55\xad\xe0\x53\x57\x8c\x76\x5d\xdc\x27\x4a\x0b\x06\x4b\x4d\x99\x9d\x19\x27\x98\x94\xdb\xbe\x5d\x61\xd6\xa2\x1b\xf7\xc2\x40\xd2\xd0\xfb\x64\xd6\x31\x57\xc7\xca\x9f\xe7\xcf\x9f\x3f\x3f\x3f\x3f\x3f\x1f\xf8\x62\xa0\xc3\xb5\xdf\x0a\x44\x40\x84\x49\xa8\x7e\x2e\x81\x3c\xc5\x44\xad\x69\x38\x34\xc3\x8c\x60\x9c\xf1\x43\x76\xba\xaf\x87\x7b\xd3\x41\x46\xfd\x7d\x3b\xa0\x1c\xf7\x78\x32\xde\x94\xfd\xf6\x20\x4f\xb0\x60\x5b\x16\x65\xbe\xd5\x9c\x2e\x67\x6f\x7d\x47\x4a\xd1\x90\xca\x96\xdd\xee\x0e\x16\xda\xa4\xde\x9b\x03\xb0\xa1\xa2\x47\xc1\x25\xbb\x2e\x74\xa1\x59\x7b\x63\x26\xa6\x64\x5d\x37\xda\x06\x7b\xc2\x5b\xb2\x66\x4a\x30\x34\x69\x77\x07\xd3\xd1\xe3\x63\xb5\x37\xed\x3a\x3c\x2a\xc0\x6c\x36\xd2\xf0\x37\x10\xad\x41\xfe\x48\x15\x7b\x9e\x29\x4a\xb6\xd4\x71\x35\x6f\x7b\x8a\x13\x14\xe5\x58\xa1\xe2\xa8\xf2\x63\xec\xd9\x6f\x1a\x02\x1d\x87\xd3\xdf\xc2\xa8\x51\xdf\x3c\x0a\xf3\x25\x27\xe7\x71\x29\x28\xf6\xd4\x26\x56\xfa\x0d\x22\xa9\x5e\x44\x54\xff\x3f\xa6\xa1\x56\x9f\xe3\x0e\xca\x97\x79\xf0\x61\x24\xfd\x63\x7c\x98\x78\x35\x62\x92\x8c\xfb\x71\x2f\xa2\x9f\xe8\xc9\x89\x20\x4c\x9d\xf5\xa9\x69\xcd\x4b\x14\x92\x4c\xd7\xb9\x8f\xc9\x02\xbc\x36\xe4\xc9\x06\x76\x98\x2a\xfe\xbc\xf3\xd6\xea\xb8\xd0\xb5\xe2\x59\x23\xef\xf8\x4c\xf2\x0d\x11\x45\x63\xd3\x66\x29\xf2\x25\x6c\xfc\x90\x9f\xe4\xe2\xa1\x34\x75\x4b\x84\xbc\x36\x86\x0c\xd3\x2a\xd8\xce\x35\x7c\xd2\x0a\xbf\x89\x03\xb3\x5e\x17\xb2\x5f\x72\xfa\x0a\xd3\x9c\x89\xe6\xf2\x57\xf5\x41\x22\xb3\x7e\xf6\xb3\x16\x1c\xbd\x50\x44\x4f\xb2\xfb\x74\xd9\x15\x73\xaf\x60\x1a\x6b\xb4\x75\x7e\x80\xc5\xd4\x61\x2b\xed\x7b\x94\x04\xa0\x66\xee\x1a\x71\x86\x86\xad\xae\xc1\xa0\xf7\xfc\x86\x29\xd7\x8f\xd0\xc0\x2d\x85\xfd\x07\x7c\xb5\x7d\xf1\xfe\xeb\x04\x9c\xa9\x8e\xf9\xa1\x4a\x83\xc6\xef\x63\x3b\x72\xf4\x0d\x0f\x75\x5e\x45\x8d\xd6\xdd\x25\xe0\xb6\x4e\x3e\x4a\xc3\xee\xf9\x26\x41\xc7\xb7\x57\x57\x97\x57\xd7\x11\xf6\xe7\x87\xff\x41\x20\x87\x07\x0b\xe7\xe7\x23\xb9\xdd\x98\xfd\x20\xb6\x52\x7a\xa3\x32\xb7\xad\x46\x92\x50\x1b\xac\x88\x8a\x2c\xd6\xec\x9a\x41\x3f\x6d\x07\xad\xe4\x16\x6c\x5d\x85\x87\xb8\x17\x7e\xcc\x3d\xb3\x5b\xeb\xb0\x84\xb9\x50\x5c\xa8\xc2\x82\x36\x50\x08\xb7\xac\xe7\xb3\x5c\x97\xdd\x9b\xc8\x78\x31\x12\x04\x6e\xa3\x1a\x39\x32\x53\xda\x85\x38\x30\xd2\x65\x3f\x7a\xe7\x85\x3a\x1c\xda\xfa\x20\xe7\x79\xd1\xe2\xfe\xa3\xcc\x94\x58\x4d\x9d\x94\x1b\x64\x2e\x66\x3d\xff\x54\x0c\x9e\x64\x2f\x12\x6d\x84\x5b\x82\x7f\x63\x6e\xe7\x6b\xaf\x68\x11\x8d\xd9\xed\xfc\xe3\x5d\x58\xcb\x35\x0f\x0b\xf4\x63\xa2\x47\x1e\x88\x14\xc2\xe3\xa8\x48\xfc\x41\x70\xfc\x93\x44\x5a\x20\xf2\x4c\xa8\xb5\x5e\xc5\x04\xfa\xb7\xcf\x54\x74\x59\x02\x99\x0f\x77\xb4\x0d\x36\x4b\xff\x96\xd7\x48\xda\x3e\x66\x85\xa5\x3f\x47\xda\x15\x6e\xbb\xc9\x5c\xc9\x14\x67\x4e\x9b\xb1\xa9\x63\x47\xe3\x87\x58\x1f\x5b\x63\xde\xd1\x35\x69\xf8\x4c\x62\x76\x3d\xd4\xd4\xb9\x7e\x37\x3c\x9e\x83\x93\xcb\x1c\xf8\x89\xf3\xa0\xa9\x9a\x04\xf5\x17\xa9\x14\xb6\x64\x2e\x8f\x3d\xea\xee\xdd\x23\xda\xc0\x3d\x04\x1f\xb9\x4e\x7e\xbd\x6d\xec\xb8\xc6\x30\xae\xf4\x20\xde\xad\x3e\x83\x11\x51\x39\x60\xb2\x77\xed\xc2\x6a\xab\xc6\xb8\x12\xcd\x54\x89\x8e\x17\x93\x22\x66\xb6\x8b\xb0\x4a\xd1\xa7\x71\x49\x37\x33\x27\xac\xe6\x37\xc9\xd2\x3f\x13\xef\x49\xa5\x8d\x97\x3d\x3c\xad\xfa\x3d\xe1\x67\x8a\x9d\x5b\x11\x27\x4c\x7d\x75\x8c\x40\x07\x76\xf5\x57\x21\x48\xf4\xcc\x42\x98\x1d\x06\x53\xe2\x67\x87\xca\xb6\x42\xe3\x67\xd7\xb6\xdb\x5f\xa2\x8a\xcd\x0a\x8c\x55\x2e\xfd\x55\x2e\x30\xbc\xd0\x36\x29\xa1\x7f\xa7\x68\x46\x80\xfd\x38\xca\xa2\x59\x8b\x7c\x70\x7d\x27\x05\xa9\x8d\x3c\xde\xe5\x61\xce\x48\x29\x6c\xb7\x83\xdb\xab\x1f\xbd\xf2\x7e\xf2\xe8\xcf\x20\xfd\x8b\x6c\x16\x08\xee\xd2\x32\x00\x09\x52\x32\xb9\xd0\xa6\x8c\x96\xda\xef\xda\xf5\x31\x09\x66\x70\x63\xb6\xc0\x0a\x26\xd4\x6c\x36\x09\xfb\x9b\xd5\xaa\x8b\x52\x79\xc9\x47\x5e\x86\xff\x73\x7d\xf9\x1e\x84\xaa\x6a\x07\x9c\x39\x06\xef\x1a\x6b\x3c\xcb\x4b\xfe\x8c\x62\xd6\x38\x12\xab\x44\x07\xb4\xc1\x79\x16\x0e\x4b\xec\x1b\x80\x47\x0e\x55\xfb\x60\xc1\x60\x83\xf3\xee\xe3\x84\xd7\x1f\x2e\x02\x59\x25\x88\x26\x67\x2a\xd4\x0f\x73\x0c\xa9\x12\x79\xf3\x9d\x44\xbf\x69\x06\x4d\x51\x57\x57\x9c\xb9\x83\xef\x0a\xe8\xc0\xe5\x5a\xad\xd1\xb8\x03\x78\xa7\x87\x3c\xa6\x0c\x3b\x54\xf7\x24\x55\xdb\xc3\xe6\x8f\xf8\x9e\x88\x49\x4a\xcf\x99\x45\x0e\x5a\x0d\xc3\xcd\x43\x56\x93\xa6\x10\x2a\x97\x35\xc7\x03\xf1\x98\xdd\xf3\x42\xd4\x18\x3f\xbf\xbe\x7a\x7f\xf1\xfe\xbb\xf4\x3a\xb4\xdd\x70\x5c\x25\xba\x61\x46\x65\xb9\x2e\x29\x83\x66\x06\x5d\x34\xcd\x5e\xd1\x5a\x3b\x33\xcc\x4b\xee\x75\x59\x38\x34\x21\xc5\xbf\x0a\xb1\x8d\x02\xc7\xdd\x98\x7f\x1b\x3c\xff\x68\x73\x74\xf0\x18\x7e\xb4\x30\x1c\x5d\x72\x74\x98\xbb\x89\xa1\x81\x47\xa6\xc2\x82\x63\x65\x30\x27\x4f\x67\x06\x2b\xc9\xf2\x68\xd0\xa0\xcc\x4b\x38\x5a\xf2\xa6\x9e\xf0\x6f\x64\xe1\x60\xec\x45\xaa\x20\xd3\x46\x48\x09\x56\x6b\x45\xa7\xa9\x87\x39\x83\xaa\x39\x29\x36\x54\x55\xbe\x18\xc6\xcd\x1e\x4f\xeb\x90\x25\x2a\xd0\x98\xe3\x94\x7a\xc8\x2e\x75\x2d\x39\x89\x67\xd1\xcd\x20\x4c\x81\xf7\x7b\x31\xa2\xf6\xbf\xc2\x3c\x28\x49\x22\x4f\x3f\xe1\x4f\x92\x2b\x20\x50\xea\x7b\x58\xa7\x51\x7c\xf2\xfb\x8f\x81\xa4\x5a\xcd\xb2\xf5\xa8\x07\xa7\x40\xfd\xfe\xd6\xab\xed\xd0\xa1\xfd\xa4\x69\xf8\x2d\xd3\xb4\x60\x52\x94\xc2\x65\xa2\x50\xda\x44\x45\x6a\xcf\x75\x13\x58\xfc\x16\x2f\x95\xff\x75\x58\x8b\x09\x0b\x0d\xbb\x54\xf4\x7c\xc9\x54\x81\x6c\x1e\xfd\x02\xe5\xc7\x0e\xb1\x2b\xfe\x6c\xab\xb7\xdc\x86\x79\x53\xc7\x63\x06\x17\x04\x4f\x05\x74\xc2\x59\xf0\x12\xd8\x4c\xea\x22\xb3\xe2\xf7\x98\x00\x52\x17\xd7\xe2\x77\x24\xdb\x86\x0d\x7b\x1a\xf7\x47\x94\x29\xff\x44\x49\xcd\xc6\x1c\xdd\x06\x51\xc1\x4b\xdf\x54\x7c\xf3\x32\x59\x94\x12\x4b\x6d\xb6\x63\xd2\x04\x8a\x53\x05\xfa\xe6\xdb\xbf\x7b\x91\xfe\xf6\xcd\xb7\xc9\x32\x51\xfd\xa5\xeb\x58\xf1\xd6\xac\x9e\x24\xcc\xcb\x60\x9f\xbf\xbe\xa4\xff\xa6\xe5\xf1\xe3\x81\xac\x32\xba\x42\xe3\x04\xc6\x46\xb8\x6d\x18\x1c\xc4\xab\x30\xb0\x73\x46\x60\x37\xb2\x0b\xb3\x86\x9e\x59\x3b\xda\x7b\x3c\x26\xb6\x21\x91\x6b\x7f\xe0\x28\x32\x0a\x07\xba\x76\x56\x70\xef\x88\x1b\xc3\xd6\xc2\xc2\xbc\x16\x92\x8f\xcf\x26\xbc\x2a\x21\x1c\x18\x3a\xb6\x49\xa1\xa0\x3b\xfd\x7b\x01\x41\x1d\x44\xf5\xc6\xda\x7e\xe2\x72\x7f\x3f\x6b\xfe\xda\x9a\x9b\x3a\x24\xa1\x9a\x46\x97\xfe\xc1\xf2\x89\xb2\xd9\x8b\xda\xf6\x22\xe1\x92\xc5\xc2\x44\xdb\x8a\x34\x54\x54\x50\x1c\x74\x25\x8f\x94\x29\xd1\xc6\xe3\xa4\x6e\xc3\x4b\xdb\xcc\x32\x7c\xa3\x8a\x9f\x85\x8d\x7e\xe1\xf7\xa0\x4d\xdd\x0b\x31\x4c\x1a\x64\x7c\x0b\x81\x45\x57\x3b\x59\x94\x98\x3b\x60\x4a\xbb\x25\x1a\xbf\x2d\x2a\xd2\x9b\xb7\xff\xbc\xfd\x2e\xb9\x1c\xf2\xd4\xc7\xd5\x42\x7c\x1e\xbe\xde\x5b\xa3\x11\x8b\x58\x1d\xf4\x93\x5f\x6c\x5a\x99\x87\x47\xa8\xd1\x6f\x3c\x56\x12\x50\xf7\x14\x13\xde\x6c\x27\x9f\xdc\x3c\xd5\xab\x29\xae\x83\x47\xa0\x51\xbe\xc3\xa7\xa0\x34\xce\x16\x99\xc9\x97\xc4\xb7\x99\xbd\x67\x5c\x18\xcc\x47\x06\x33\xd7\xed\x8e\x6e\x72\xdf\xed\x78\xf0\xf0\xdc\x5b\xb0\x37\xdd\x93\xbb\x27\xff\x0b\x00\x00\xff\xff\x62\x1d\x5d\xef\x1b\x32\x00\x00")
 
 func wski18nResourcesEn_usAllJsonBytes() ([]byte, error) {
 	return bindataRead(
@@ -129,7 +129,7 @@ func wski18nResourcesEn_usAllJson() (*asset, error) {
 		return nil, err
 	}
 
-	info := bindataFileInfo{name: "wski18n/resources/en_US.all.json", size: 12809, mode: os.FileMode(420), modTime: time.Unix(1518160471, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/en_US.all.json", size: 12827, mode: os.FileMode(420), modTime: time.Unix(1518559473, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -149,7 +149,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/es_ES.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -169,7 +169,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/fr_FR.all.json", size: 101, mode: os.FileMode(420), modTime: time.Unix(1518211603, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -189,7 +189,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/it_IT.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -209,7 +209,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/ja_JA.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -229,7 +229,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/ko_KR.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -249,7 +249,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/pt_BR.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -269,7 +269,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/zh_Hans.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 0)}
 	a := &asset{bytes: bytes, info: info}
 	return a, nil
 }
@@ -289,7 +289,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(1501631495, 0)}
+	info := bindataFileInfo{name: "wski18n/resources/zh_Hant.all.json", size: 0, mode: os.FileMode(420), modTime: time.Unix(1518211603, 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 d6b81b49..883c7062 100644
--- a/wski18n/resources/en_US.all.json
+++ b/wski18n/resources/en_US.all.json
@@ -144,12 +144,12 @@
     "translation": "The apigw access token is set, from {{.source}}.\n"
   },
   {
-    "id": "msg_unmarshall_local",
-    "translation": "Unmarshal OpenWhisk info from local values.\n"
+    "id": "msg_unmarshal_local",
+    "translation": "Unmarshal OpenWhisk runtimes from local values.\n"
   },
   {
-    "id": "msg_unmarshall_network",
-    "translation": "Unmarshal OpenWhisk info from internet.\n"
+    "id": "msg_unmarshal_network",
+    "translation": "Unmarshal OpenWhisk runtimes from internet at {{.url}}.\n"
   },
   {
     "id": "msg_deployment_cancelled",


 

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services