From 870ead8e715b90b8481aa28f0c9bd22fff2df7b9 Mon Sep 17 00:00:00 2001 From: Raina Masand Date: Mon, 8 Jun 2015 14:50:51 -0700 Subject: [PATCH] Fix indentation in create-service help text - And rearrange translation files to appease i18n4go --- cf/commands/service/create_service.go | 4 +++- cf/i18n/resources/de_DE.all.json | 31 ++++++++++++++++++++------- cf/i18n/resources/en_US.all.json | 29 +++++++++++++++++++------ cf/i18n/resources/es_ES.all.json | 31 ++++++++++++++++++++------- cf/i18n/resources/fr_FR.all.json | 31 ++++++++++++++++++++------- cf/i18n/resources/it_IT.all.json | 31 ++++++++++++++++++++------- cf/i18n/resources/ja_JA.all.json | 31 ++++++++++++++++++++------- cf/i18n/resources/pt_BR.all.json | 31 ++++++++++++++++++++------- cf/i18n/resources/zh_Hans.all.json | 31 ++++++++++++++++++++------- cf/i18n/resources/zh_Hant.all.json | 31 ++++++++++++++++++++------- 10 files changed, 209 insertions(+), 72 deletions(-) diff --git a/cf/commands/service/create_service.go b/cf/commands/service/create_service.go index d71019cecac..81ba1c0b2a9 100644 --- a/cf/commands/service/create_service.go +++ b/cf/commands/service/create_service.go @@ -1,6 +1,8 @@ package service import ( + "strings" + "github.com/cloudfoundry/cli/cf/actors/service_builder" "github.com/cloudfoundry/cli/cf/api" "github.com/cloudfoundry/cli/cf/command_metadata" @@ -38,7 +40,7 @@ func (cmd CreateService) Metadata() command_metadata.CommandMetadata { CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{"name":"value","name":"value"}' Optionally provide a file containing service-specific configuration parameters in a valid JSON object. - The path to the parameters file can be an absolute or relative path to a file: + The path to the parameters file can be an absolute or relative path to a file: CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE diff --git a/cf/i18n/resources/de_DE.all.json b/cf/i18n/resources/de_DE.all.json index 284e8076607..2d8fdccbba9 100644 --- a/cf/i18n/resources/de_DE.all.json +++ b/cf/i18n/resources/de_DE.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - Read-only access to org info and reports\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Enable CF_TRACE output for all requests and responses", @@ -2159,6 +2169,11 @@ "translation": "Error zipping application", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Error: No name found for app", @@ -2729,11 +2744,6 @@ "translation": "Invalid memory limit: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "TIP:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/en_US.all.json b/cf/i18n/resources/en_US.all.json index 2bc650b2f03..7e56bce8afa 100644 --- a/cf/i18n/resources/en_US.all.json +++ b/cf/i18n/resources/en_US.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"permissions\": \"read-only\"\n }", "modified": false }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - Read-only access to org info and reports\n", @@ -650,8 +655,8 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", "modified": false }, { @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Enable CF_TRACE output for all requests and responses", @@ -2159,6 +2169,11 @@ "translation": "Error zipping application", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Error: No name found for app", @@ -2729,11 +2744,6 @@ "translation": "Invalid memory limit: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "TIP:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/es_ES.all.json b/cf/i18n/resources/es_ES.all.json index cc2003af3f8..1fdd9c833df 100644 --- a/cf/i18n/resources/es_ES.all.json +++ b/cf/i18n/resources/es_ES.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - Acceso de solo lectura a información y reportes de una org\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Habilita la salida de CF_TRACE para todas las solicitudes y respuestas", @@ -2159,6 +2169,11 @@ "translation": "Error al comprimir la aplicacion", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Error: ningun nombre encontrado para la app", @@ -2729,11 +2744,6 @@ "translation": "Limite de memoria invalido: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Parametro de timeout invalido: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "TIP:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/fr_FR.all.json b/cf/i18n/resources/fr_FR.all.json index 8798a57b7db..6da4c42da06 100644 --- a/cf/i18n/resources/fr_FR.all.json +++ b/cf/i18n/resources/fr_FR.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": "OrgAuditor - accès en lecture seule aux informations et rapports de l'org\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Activer la sortie de CF_TRACE pour toutes les demandes et les réponses", @@ -2159,6 +2169,11 @@ "translation": "Erreur lors de la compression de l'application", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Erreur: Aucun nom trouvé pour l'application", @@ -2729,11 +2744,6 @@ "translation": "Limite de mémoire non valide: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Invalid délai param: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "TIP:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/it_IT.all.json b/cf/i18n/resources/it_IT.all.json index bd5566616ef..57312743fba 100644 --- a/cf/i18n/resources/it_IT.all.json +++ b/cf/i18n/resources/it_IT.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - Read-only access to org info and reports\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Enable CF_TRACE output for all requests and responses", @@ -2159,6 +2169,11 @@ "translation": "Error zipping application", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Error: No name found for app", @@ -2729,11 +2744,6 @@ "translation": "Invalid memory limit: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "TIP:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/ja_JA.all.json b/cf/i18n/resources/ja_JA.all.json index bd5566616ef..57312743fba 100644 --- a/cf/i18n/resources/ja_JA.all.json +++ b/cf/i18n/resources/ja_JA.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - Read-only access to org info and reports\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Enable CF_TRACE output for all requests and responses", @@ -2159,6 +2169,11 @@ "translation": "Error zipping application", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Error: No name found for app", @@ -2729,11 +2744,6 @@ "translation": "Invalid memory limit: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "TIP:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/pt_BR.all.json b/cf/i18n/resources/pt_BR.all.json index 8eceb9b37fb..8528fa77534 100644 --- a/cf/i18n/resources/pt_BR.all.json +++ b/cf/i18n/resources/pt_BR.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - Acesso somente leitura à informações e relatórios da Organização\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Habilitar informações de diagnóstico CF_TRACE para todos os pedidos e respostas", @@ -2159,6 +2169,11 @@ "translation": "Erro zipando aplicativo", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Erro: Nome do aplicativo não definido", @@ -2729,11 +2744,6 @@ "translation": "Limite de memória inválido: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Parâmetro de tempo limite inválido: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "DICA:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/zh_Hans.all.json b/cf/i18n/resources/zh_Hans.all.json index d1ff871e946..4ceb734f682 100644 --- a/cf/i18n/resources/zh_Hans.all.json +++ b/cf/i18n/resources/zh_Hans.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - 只能访问组织的信息和报告\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "启动CF_TRACE输出所有请求和响应", @@ -2159,6 +2169,11 @@ "translation": "压缩应用程序错误", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "错误: 没有找到该应用程序名", @@ -2729,11 +2744,6 @@ "translation": "无效的内存配额: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "无效的超时参数设定: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "小贴士:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.", diff --git a/cf/i18n/resources/zh_Hant.all.json b/cf/i18n/resources/zh_Hant.all.json index 284e8076607..2d8fdccbba9 100644 --- a/cf/i18n/resources/zh_Hant.all.json +++ b/cf/i18n/resources/zh_Hant.all.json @@ -129,6 +129,11 @@ "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. \n The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME bind-service APP_NAME SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", "modified": true }, + { + "id": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "translation": " Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object.\n The path to the parameters file can be an absolute or relative path to a file:\n\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }", + "modified": false + }, { "id": " OrgAuditor - Read-only access to org info and reports\n", "translation": " OrgAuditor - Read-only access to org info and reports\n", @@ -650,9 +655,9 @@ "modified": false }, { - "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n\u0009CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON]\n\n Optionally provide service-specific configuration parameters in a valid JSON object in-line:\n CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE -c '{\"name\":\"value\",\"name\":\"value\"}'\n\n Optionally provide a file containing service-specific configuration parameters in a valid JSON object. The path to the parameters file can be an absolute or relative path to a file.\n CF_NAME create-service SERVICE_INSTANCE -c PATH_TO_FILE\n\n\u0009Example of valid JSON object:\n {\n \"cluster_nodes\": {\n \"count\": 5,\n \"memory_mb\": 1024\n }\n }\n\nEXAMPLE:\n\u0009Linux/Mac:\n\u0009\u0009CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n\u0009Windows Command Line\n\u0009\u0009CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n\u0009Windows PowerShell\n\u0009\u0009CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n\u0009CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\nTIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", - "modified": true + "id": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "translation": "CF_NAME create-service SERVICE PLAN SERVICE_INSTANCE [-c PARAMETERS_AS_JSON] [-t TAGS]", + "modified": false }, { "id": "CF_NAME create-service-auth-token LABEL PROVIDER TOKEN", @@ -1889,6 +1894,11 @@ "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME bind-service myapp mydb -c '{\"permissions\":\"read-only\"}'\n\n Windows Command Line:\n CF_NAME bind-service myapp mydb -c \"{\\\"permissions\\\":\\\"read-only\\\"}\"\n\n Windows PowerShell:\n CF_NAME bind-service myapp mydb -c '{\\\"permissions\\\":\\\"read-only\\\"}'\n\u0009\n CF_NAME bind-service myapp mydb -c ~/workspace/tmp/instance_config.json", "modified": false }, + { + "id": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "translation": "EXAMPLE:\n Linux/Mac:\n CF_NAME create-service db-service silver -c '{\"ram_gb\":4}'\n\n Windows Command Line:\n CF_NAME create-service db-service silver -c \"{\\\"ram_gb\\\":4}\"\n\n Windows PowerShell:\n CF_NAME create-service db-service silver -c '{\\\"ram_gb\\\":4}'\n\n CF_NAME create-service db-service silver mydb -c ~/workspace/tmp/instance_config.json\n\n CF_NAME create-service dbaas silver mydb -t \"list, of, tags\"", + "modified": false + }, { "id": "Enable CF_TRACE output for all requests and responses", "translation": "Enable CF_TRACE output for all requests and responses", @@ -2159,6 +2169,11 @@ "translation": "Error zipping application", "modified": false }, + { + "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", + "modified": false + }, { "id": "Error: No name found for app", "translation": "Error: No name found for app", @@ -2729,11 +2744,6 @@ "translation": "Invalid memory limit: {{.Memory}}\n{{.ErrorDescription}}", "modified": false }, - { - "id": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "translation": "Error {{.ErrorDescription}} is being passed in as the argument for 'Position' but 'Position' requires an integer. For more syntax help, see `cf create-buildpack -h`.", - "modified": false - }, { "id": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", "translation": "Invalid timeout param: {{.Timeout}}\n{{.Err}}", @@ -4134,6 +4144,11 @@ "translation": "TIP:\n", "modified": false }, + { + "id": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "translation": "TIP:\n Use 'CF_NAME create-user-provided-service' to make user-provided services available to cf apps", + "modified": false + }, { "id": "TIP: Changes will not apply to existing running applications until they are restarted.", "translation": "TIP: Changes will not apply to existing running applications until they are restarted.",