diff --git a/cmd/file.go b/cmd/file.go index df12e75..8c2aa3c 100644 --- a/cmd/file.go +++ b/cmd/file.go @@ -58,7 +58,7 @@ var ( var fileCmd = &cobra.Command{ Use: "file", Short: "Upload and download files", - Long: "Lokalise is a project-oriented translation management system, which means we store all keys and translations in the database and can generate files in any format you require. Assigning a key to one or more platforms means including the key in the export routine for file formats, associated with this platform, e.g. if a key is assigned to iOS platform it would get included with strings and xliff format exports. In addition to assign keys to platforms you may assign keys to files and have different filename depending on the platform. List of supported file formats is available here https://docs.lokalise.com/supported-file-formats.", + Long: "Lokalise is a project-oriented translation management system, which means we store all keys and translations in the database and can generate files in any format you require. Assigning a key to one or more platforms means including the key in the export routine for file formats, associated with this platform, e.g. if a key is assigned to iOS platform it would get included with strings and xliff format exports. In addition to assign keys to platforms you may assign keys to files and have different filename depending on the platform. List of supported file formats is available here https://docs.lokalise.com/en/collections/2909121-keys-and-files#supported-file-formats.", } var fileListCmd = &cobra.Command{ @@ -85,7 +85,7 @@ var fileListCmd = &cobra.Command{ var fileUploadCmd = &cobra.Command{ Use: "upload", Short: "Upload a file", - Long: "Imports a localization file to the project. Requires Upload files admin right. List of supported file formats is available here https://docs.lokalise.com/supported-file-formats", + Long: "Imports a localization file to the project. Requires Upload files admin right. List of supported file formats is available here https://docs.lokalise.com/en/collections/2909121-keys-and-files#supported-file-formats.", RunE: func(*cobra.Command, []string) error { f := Api.Files() q := Api.QueuedProcesses() diff --git a/cmd/root.go b/cmd/root.go index f4ee780..ed15a05 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -14,7 +14,7 @@ import ( ) const ( - Version = "2.6.8" + Version = "2.6.11" DefaultPageLimit = 5000 ) @@ -51,6 +51,7 @@ var rootCmd = &cobra.Command{ return err }, + DisableAutoGenTag: true, } // Execute adds all child commands to the root command and sets flags appropriately. @@ -75,7 +76,7 @@ func init() { cobra.OnInitialize(parseConfig) rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is ./config.yml)") - rootCmd.PersistentFlags().StringVarP(&Token, "token", "t", "", "API token. You can create API tokens at https://lokalise.com/profile.") + rootCmd.PersistentFlags().StringVarP(&Token, "token", "t", "", "API token. You can create API tokens at https://app.lokalise.com/profile.") // binding _ = viper.BindPFlag("token", rootCmd.PersistentFlags().Lookup("token")) diff --git a/cmd/webhook.go b/cmd/webhook.go index 77a30ec..c8b6727 100644 --- a/cmd/webhook.go +++ b/cmd/webhook.go @@ -121,7 +121,7 @@ func init() { fs := webhookCreateCmd.Flags() fs.StringVar(&newWebhook.URL, "url", "", "Specify the URL to your endpoint (required).") _ = webhookCreateCmd.MarkFlagRequired("url") - fs.StringSliceVar(&newWebhook.Events, "events", []string{}, "List of events to subscribe to (required, see https://docs.lokalise.com/en/articles/3184756-webhooks).") + fs.StringSliceVar(&newWebhook.Events, "events", []string{}, "List of events to subscribe to (required, see https://developers.lokalise.com/docs/webhook-events).") _ = webhookCreateCmd.MarkFlagRequired("events") fs.StringVar(&eventLanguageMap, "event-lang-map", "", "Map the event with an array of languages iso codes. Omit this parameter for all languages in the project. JSON, see https://lokalise.com/api2docs/curl/#resource-webhooks") fs.StringVar(&newWebhook.Branch, "branch", "", "If webhook is limited to a single branch") @@ -129,7 +129,7 @@ func init() { // Update fs = webhookUpdateCmd.Flags() fs.StringVar(&updateWebhook.URL, "url", "", "Update the URL to your endpoint.") - fs.StringSliceVar(&updateWebhook.Events, "events", []string{}, "Replace list of events, see https://docs.lokalise.com/en/articles/3184756-webhooks.") + fs.StringSliceVar(&updateWebhook.Events, "events", []string{}, "Replace list of events, see https://developers.lokalise.com/docs/webhook-events.") fs.StringVar(&eventLanguageMap, "event-lang-map", "", "Map the event with an array of languages iso codes. Omit this parameter for all languages in the project.") fs.StringVar(&newWebhook.Branch, "branch", "", "If webhook is limited to a single branch") diff --git a/docs/lokalise2.md b/docs/lokalise2.md index c3b7db2..4f8b93b 100644 --- a/docs/lokalise2.md +++ b/docs/lokalise2.md @@ -1,17 +1,13 @@ ## lokalise2 -Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go - -### Synopsis - -Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go ### Options ``` --config string config file (default is ./config.yml) -h, --help help for lokalise2 - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO @@ -37,4 +33,3 @@ Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2 * [lokalise2 translation-status](lokalise2_translation-status.md) - Manage custom translation statuses * [lokalise2 webhook](lokalise2_webhook.md) - Manage webhooks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_branch.md b/docs/lokalise2_branch.md index c5cee74..c550bcc 100644 --- a/docs/lokalise2_branch.md +++ b/docs/lokalise2_branch.md @@ -2,10 +2,6 @@ Manage branches -### Synopsis - -Manage branches - ### Options ``` @@ -17,14 +13,13 @@ Manage branches ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 branch create](lokalise2_branch_create.md) - Create a branch * [lokalise2 branch delete](lokalise2_branch_delete.md) - Delete a branch * [lokalise2 branch list](lokalise2_branch_list.md) - List all branches -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_branch_create.md b/docs/lokalise2_branch_create.md index a43fbe0..de5bd49 100644 --- a/docs/lokalise2_branch_create.md +++ b/docs/lokalise2_branch_create.md @@ -22,11 +22,10 @@ lokalise2 branch create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 branch](lokalise2_branch.md) - Manage branches -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_branch_delete.md b/docs/lokalise2_branch_delete.md index 82ae418..1bc5277 100644 --- a/docs/lokalise2_branch_delete.md +++ b/docs/lokalise2_branch_delete.md @@ -22,11 +22,10 @@ lokalise2 branch delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 branch](lokalise2_branch.md) - Manage branches -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_branch_list.md b/docs/lokalise2_branch_list.md index 169b12b..94c3933 100644 --- a/docs/lokalise2_branch_list.md +++ b/docs/lokalise2_branch_list.md @@ -21,11 +21,10 @@ lokalise2 branch list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 branch](lokalise2_branch.md) - Manage branches -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_comment.md b/docs/lokalise2_comment.md index afc0324..4463852 100644 --- a/docs/lokalise2_comment.md +++ b/docs/lokalise2_comment.md @@ -17,16 +17,15 @@ Comments can be used to give translators a context about the key, or as a discus ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 comment create](lokalise2_comment_create.md) - Add a comment * [lokalise2 comment delete](lokalise2_comment_delete.md) - Delete a comment * [lokalise2 comment list](lokalise2_comment_list.md) - List project comments * [lokalise2 comment list-key](lokalise2_comment_list-key.md) - List key comments * [lokalise2 comment retrieve](lokalise2_comment_retrieve.md) - Retrieve a comment -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_comment_create.md b/docs/lokalise2_comment_create.md index abba475..56df0d6 100644 --- a/docs/lokalise2_comment_create.md +++ b/docs/lokalise2_comment_create.md @@ -23,11 +23,10 @@ lokalise2 comment create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 comment](lokalise2_comment.md) - Manage key comments -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_comment_delete.md b/docs/lokalise2_comment_delete.md index 8ed0318..613cd3e 100644 --- a/docs/lokalise2_comment_delete.md +++ b/docs/lokalise2_comment_delete.md @@ -23,11 +23,10 @@ lokalise2 comment delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 comment](lokalise2_comment.md) - Manage key comments -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_comment_list-key.md b/docs/lokalise2_comment_list-key.md index 3b0a224..f0f6031 100644 --- a/docs/lokalise2_comment_list-key.md +++ b/docs/lokalise2_comment_list-key.md @@ -22,11 +22,10 @@ lokalise2 comment list-key [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 comment](lokalise2_comment.md) - Manage key comments -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_comment_list.md b/docs/lokalise2_comment_list.md index 0d2a872..3a7558a 100644 --- a/docs/lokalise2_comment_list.md +++ b/docs/lokalise2_comment_list.md @@ -21,11 +21,10 @@ lokalise2 comment list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 comment](lokalise2_comment.md) - Manage key comments -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_comment_retrieve.md b/docs/lokalise2_comment_retrieve.md index ef12220..ee001ec 100644 --- a/docs/lokalise2_comment_retrieve.md +++ b/docs/lokalise2_comment_retrieve.md @@ -2,10 +2,6 @@ Retrieve a comment -### Synopsis - -Retrieve a comment - ``` lokalise2 comment retrieve [flags] ``` @@ -23,11 +19,10 @@ lokalise2 comment retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 comment](lokalise2_comment.md) - Manage key comments -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_contributor.md b/docs/lokalise2_contributor.md index 1790e2b..e8aa1fe 100644 --- a/docs/lokalise2_contributor.md +++ b/docs/lokalise2_contributor.md @@ -17,16 +17,15 @@ You may add unlimited number of contributors to your project. User roles include ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 contributor create](lokalise2_contributor_create.md) - Create a contributor * [lokalise2 contributor delete](lokalise2_contributor_delete.md) - Delete a contributor * [lokalise2 contributor list](lokalise2_contributor_list.md) - List all contributors * [lokalise2 contributor retrieve](lokalise2_contributor_retrieve.md) - Retrieve a contributor * [lokalise2 contributor update](lokalise2_contributor_update.md) - Update a contributor -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_contributor_create.md b/docs/lokalise2_contributor_create.md index 0535d40..eee2601 100644 --- a/docs/lokalise2_contributor_create.md +++ b/docs/lokalise2_contributor_create.md @@ -33,11 +33,10 @@ lokalise2 contributor create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 contributor](lokalise2_contributor.md) - Manage project contributors -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_contributor_delete.md b/docs/lokalise2_contributor_delete.md index b24c6fd..f8ed625 100644 --- a/docs/lokalise2_contributor_delete.md +++ b/docs/lokalise2_contributor_delete.md @@ -22,11 +22,10 @@ lokalise2 contributor delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 contributor](lokalise2_contributor.md) - Manage project contributors -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_contributor_list.md b/docs/lokalise2_contributor_list.md index fbf9a23..1842986 100644 --- a/docs/lokalise2_contributor_list.md +++ b/docs/lokalise2_contributor_list.md @@ -21,11 +21,10 @@ lokalise2 contributor list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 contributor](lokalise2_contributor.md) - Manage project contributors -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_contributor_retrieve.md b/docs/lokalise2_contributor_retrieve.md index 5ccf1d6..0e3c4a4 100644 --- a/docs/lokalise2_contributor_retrieve.md +++ b/docs/lokalise2_contributor_retrieve.md @@ -2,10 +2,6 @@ Retrieve a contributor -### Synopsis - -Retrieve a contributor - ``` lokalise2 contributor retrieve [flags] ``` @@ -22,11 +18,10 @@ lokalise2 contributor retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 contributor](lokalise2_contributor.md) - Manage project contributors -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_contributor_update.md b/docs/lokalise2_contributor_update.md index 1c3efa1..79760bf 100644 --- a/docs/lokalise2_contributor_update.md +++ b/docs/lokalise2_contributor_update.md @@ -31,11 +31,10 @@ lokalise2 contributor update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 contributor](lokalise2_contributor.md) - Manage project contributors -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_file.md b/docs/lokalise2_file.md index 621da46..e95a776 100644 --- a/docs/lokalise2_file.md +++ b/docs/lokalise2_file.md @@ -4,7 +4,7 @@ Upload and download files ### Synopsis -Lokalise is a project-oriented translation management system, which means we store all keys and translations in the database and can generate files in any format you require. Assigning a key to one or more platforms means including the key in the export routine for file formats, associated with this platform, e.g. if a key is assigned to iOS platform it would get included with strings and xliff format exports. In addition to assign keys to platforms you may assign keys to files and have different filename depending on the platform. List of supported file formats is available here https://docs.lokalise.com/supported-file-formats. +Lokalise is a project-oriented translation management system, which means we store all keys and translations in the database and can generate files in any format you require. Assigning a key to one or more platforms means including the key in the export routine for file formats, associated with this platform, e.g. if a key is assigned to iOS platform it would get included with strings and xliff format exports. In addition to assign keys to platforms you may assign keys to files and have different filename depending on the platform. List of supported file formats is available here https://docs.lokalise.com/en/collections/2909121-keys-and-files#supported-file-formats. ### Options @@ -17,14 +17,13 @@ Lokalise is a project-oriented translation management system, which means we sto ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 file download](lokalise2_file_download.md) - Download files * [lokalise2 file list](lokalise2_file_list.md) - List all files * [lokalise2 file upload](lokalise2_file_upload.md) - Upload a file -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_file_download.md b/docs/lokalise2_file_download.md index 411eba5..b3c54dc 100644 --- a/docs/lokalise2_file_download.md +++ b/docs/lokalise2_file_download.md @@ -58,11 +58,10 @@ lokalise2 file download [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 file](lokalise2_file.md) - Upload and download files -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_file_list.md b/docs/lokalise2_file_list.md index b250ea3..ff2feb0 100644 --- a/docs/lokalise2_file_list.md +++ b/docs/lokalise2_file_list.md @@ -22,11 +22,10 @@ lokalise2 file list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 file](lokalise2_file.md) - Upload and download files -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_file_upload.md b/docs/lokalise2_file_upload.md index 45a1a54..67bbff0 100644 --- a/docs/lokalise2_file_upload.md +++ b/docs/lokalise2_file_upload.md @@ -4,7 +4,7 @@ Upload a file ### Synopsis -Imports a localization file to the project. Requires Upload files admin right. List of supported file formats is available here https://docs.lokalise.com/supported-file-formats +Imports a localization file to the project. Requires Upload files admin right. List of supported file formats is available here https://docs.lokalise.com/en/collections/2909121-keys-and-files#supported-file-formats. ``` lokalise2 file upload [flags] @@ -45,11 +45,10 @@ lokalise2 file upload [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 file](lokalise2_file.md) - Upload and download files -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_key.md b/docs/lokalise2_key.md index 3818693..4e283f6 100644 --- a/docs/lokalise2_key.md +++ b/docs/lokalise2_key.md @@ -20,16 +20,15 @@ Each phrase that is used in your app or website must be identified by a key and ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 key create](lokalise2_key_create.md) - Create keys * [lokalise2 key delete](lokalise2_key_delete.md) - Delete a key * [lokalise2 key list](lokalise2_key_list.md) - List all keys * [lokalise2 key retrieve](lokalise2_key_retrieve.md) - Retrieve a key * [lokalise2 key update](lokalise2_key_update.md) - Update a key -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_key_create.md b/docs/lokalise2_key_create.md index 7207284..3d111d4 100644 --- a/docs/lokalise2_key_create.md +++ b/docs/lokalise2_key_create.md @@ -36,11 +36,10 @@ lokalise2 key create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 key](lokalise2_key.md) - Manage keys -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_key_delete.md b/docs/lokalise2_key_delete.md index 26c8f47..a763493 100644 --- a/docs/lokalise2_key_delete.md +++ b/docs/lokalise2_key_delete.md @@ -22,11 +22,10 @@ lokalise2 key delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 key](lokalise2_key.md) - Manage keys -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_key_list.md b/docs/lokalise2_key_list.md index c30b845..81115ed 100644 --- a/docs/lokalise2_key_list.md +++ b/docs/lokalise2_key_list.md @@ -33,11 +33,10 @@ lokalise2 key list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 key](lokalise2_key.md) - Manage keys -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_key_retrieve.md b/docs/lokalise2_key_retrieve.md index 8bdd389..534ed74 100644 --- a/docs/lokalise2_key_retrieve.md +++ b/docs/lokalise2_key_retrieve.md @@ -23,11 +23,10 @@ lokalise2 key retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 key](lokalise2_key.md) - Manage keys -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_key_update.md b/docs/lokalise2_key_update.md index b3a66db..13a44d3 100644 --- a/docs/lokalise2_key_update.md +++ b/docs/lokalise2_key_update.md @@ -35,11 +35,10 @@ lokalise2 key update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 key](lokalise2_key.md) - Manage keys -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_language.md b/docs/lokalise2_language.md index edabec5..8343345 100644 --- a/docs/lokalise2_language.md +++ b/docs/lokalise2_language.md @@ -20,12 +20,12 @@ There are situations when it is necessary to export different language codes to ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 language create](lokalise2_language_create.md) - Create languages * [lokalise2 language delete](lokalise2_language_delete.md) - Delete a language * [lokalise2 language list](lokalise2_language_list.md) - List project languages @@ -33,4 +33,3 @@ There are situations when it is necessary to export different language codes to * [lokalise2 language retrieve](lokalise2_language_retrieve.md) - Retrieve a language * [lokalise2 language update](lokalise2_language_update.md) - Update a language -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_language_create.md b/docs/lokalise2_language_create.md index 82508c2..0acc20d 100644 --- a/docs/lokalise2_language_create.md +++ b/docs/lokalise2_language_create.md @@ -28,11 +28,10 @@ lokalise2 language create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 language](lokalise2_language.md) - Manage languages -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_language_delete.md b/docs/lokalise2_language_delete.md index 3cb9c16..253f875 100644 --- a/docs/lokalise2_language_delete.md +++ b/docs/lokalise2_language_delete.md @@ -22,11 +22,10 @@ lokalise2 language delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 language](lokalise2_language.md) - Manage languages -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_language_list-system.md b/docs/lokalise2_language_list-system.md index e75a559..7dd9e9c 100644 --- a/docs/lokalise2_language_list-system.md +++ b/docs/lokalise2_language_list-system.md @@ -21,11 +21,10 @@ lokalise2 language list-system [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 language](lokalise2_language.md) - Manage languages -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_language_list.md b/docs/lokalise2_language_list.md index e47df33..43eb012 100644 --- a/docs/lokalise2_language_list.md +++ b/docs/lokalise2_language_list.md @@ -21,11 +21,10 @@ lokalise2 language list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 language](lokalise2_language.md) - Manage languages -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_language_retrieve.md b/docs/lokalise2_language_retrieve.md index ef598b7..f1c31f2 100644 --- a/docs/lokalise2_language_retrieve.md +++ b/docs/lokalise2_language_retrieve.md @@ -22,11 +22,10 @@ lokalise2 language retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 language](lokalise2_language.md) - Manage languages -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_language_update.md b/docs/lokalise2_language_update.md index d40a52e..ca7e387 100644 --- a/docs/lokalise2_language_update.md +++ b/docs/lokalise2_language_update.md @@ -25,11 +25,10 @@ lokalise2 language update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 language](lokalise2_language.md) - Manage languages -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_order.md b/docs/lokalise2_order.md index dbee2f1..6f61d7e 100644 --- a/docs/lokalise2_order.md +++ b/docs/lokalise2_order.md @@ -17,14 +17,13 @@ Lokalise offers several human-powered translation providers, that can help trans ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 order create](lokalise2_order_create.md) - Create an order * [lokalise2 order list](lokalise2_order_list.md) - List all orders * [lokalise2 order retrieve](lokalise2_order_retrieve.md) - Retrieve an order -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_order_create.md b/docs/lokalise2_order_create.md index 92dd5f4..cc447ea 100644 --- a/docs/lokalise2_order_create.md +++ b/docs/lokalise2_order_create.md @@ -31,11 +31,10 @@ lokalise2 order create [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 order](lokalise2_order.md) - Manage orders -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_order_list.md b/docs/lokalise2_order_list.md index 210bcba..33631dc 100644 --- a/docs/lokalise2_order_list.md +++ b/docs/lokalise2_order_list.md @@ -21,11 +21,10 @@ lokalise2 order list [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 order](lokalise2_order.md) - Manage orders -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_order_retrieve.md b/docs/lokalise2_order_retrieve.md index f8e8306..94b503e 100644 --- a/docs/lokalise2_order_retrieve.md +++ b/docs/lokalise2_order_retrieve.md @@ -22,11 +22,10 @@ lokalise2 order retrieve [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 order](lokalise2_order.md) - Manage orders -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_payment-card.md b/docs/lokalise2_payment-card.md index 87dfd64..9037c5f 100644 --- a/docs/lokalise2_payment-card.md +++ b/docs/lokalise2_payment-card.md @@ -16,15 +16,14 @@ Credit cards are used to pay for translation orders. Each user has their own car ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 payment-card create](lokalise2_payment-card_create.md) - Create a card * [lokalise2 payment-card delete](lokalise2_payment-card_delete.md) - Delete a card * [lokalise2 payment-card list](lokalise2_payment-card_list.md) - Lists all cards * [lokalise2 payment-card retrieve](lokalise2_payment-card_retrieve.md) - Retrieve a card -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_payment-card_create.md b/docs/lokalise2_payment-card_create.md index 035d392..afb25dc 100644 --- a/docs/lokalise2_payment-card_create.md +++ b/docs/lokalise2_payment-card_create.md @@ -24,11 +24,10 @@ lokalise2 payment-card create [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 payment-card](lokalise2_payment-card.md) - Manage payment cards -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_payment-card_delete.md b/docs/lokalise2_payment-card_delete.md index 9f3815d..f3d339a 100644 --- a/docs/lokalise2_payment-card_delete.md +++ b/docs/lokalise2_payment-card_delete.md @@ -21,11 +21,10 @@ lokalise2 payment-card delete [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 payment-card](lokalise2_payment-card.md) - Manage payment cards -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_payment-card_list.md b/docs/lokalise2_payment-card_list.md index bd62aa5..7ed67d9 100644 --- a/docs/lokalise2_payment-card_list.md +++ b/docs/lokalise2_payment-card_list.md @@ -20,11 +20,10 @@ lokalise2 payment-card list [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 payment-card](lokalise2_payment-card.md) - Manage payment cards -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_payment-card_retrieve.md b/docs/lokalise2_payment-card_retrieve.md index f478b31..d0df217 100644 --- a/docs/lokalise2_payment-card_retrieve.md +++ b/docs/lokalise2_payment-card_retrieve.md @@ -21,11 +21,10 @@ lokalise2 payment-card retrieve [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 payment-card](lokalise2_payment-card.md) - Manage payment cards -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_project.md b/docs/lokalise2_project.md index 53c567b..57b0bdd 100644 --- a/docs/lokalise2_project.md +++ b/docs/lokalise2_project.md @@ -16,12 +16,12 @@ Lokalise is a project-based translation management system. We recommend to keep ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 project create](lokalise2_project_create.md) - Create a project * [lokalise2 project delete](lokalise2_project_delete.md) - Delete a project * [lokalise2 project empty](lokalise2_project_empty.md) - Empty a project @@ -29,4 +29,3 @@ Lokalise is a project-based translation management system. We recommend to keep * [lokalise2 project retrieve](lokalise2_project_retrieve.md) - Retrieve a project * [lokalise2 project update](lokalise2_project_update.md) - Update a project -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_project_create.md b/docs/lokalise2_project_create.md index a4404f0..a96f633 100644 --- a/docs/lokalise2_project_create.md +++ b/docs/lokalise2_project_create.md @@ -26,11 +26,10 @@ lokalise2 project create [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 project](lokalise2_project.md) - Manage projects -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_project_delete.md b/docs/lokalise2_project_delete.md index 5eb8564..0d3ced7 100644 --- a/docs/lokalise2_project_delete.md +++ b/docs/lokalise2_project_delete.md @@ -21,11 +21,10 @@ lokalise2 project delete [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 project](lokalise2_project.md) - Manage projects -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_project_empty.md b/docs/lokalise2_project_empty.md index e60454e..1fcfd12 100644 --- a/docs/lokalise2_project_empty.md +++ b/docs/lokalise2_project_empty.md @@ -21,11 +21,10 @@ lokalise2 project empty [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 project](lokalise2_project.md) - Manage projects -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_project_list.md b/docs/lokalise2_project_list.md index 839c147..20178ed 100644 --- a/docs/lokalise2_project_list.md +++ b/docs/lokalise2_project_list.md @@ -24,11 +24,10 @@ lokalise2 project list [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 project](lokalise2_project.md) - Manage projects -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_project_retrieve.md b/docs/lokalise2_project_retrieve.md index 2715b9c..e73e1a7 100644 --- a/docs/lokalise2_project_retrieve.md +++ b/docs/lokalise2_project_retrieve.md @@ -21,11 +21,10 @@ lokalise2 project retrieve [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 project](lokalise2_project.md) - Manage projects -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_project_update.md b/docs/lokalise2_project_update.md index 3f7e1b9..4d54a5a 100644 --- a/docs/lokalise2_project_update.md +++ b/docs/lokalise2_project_update.md @@ -23,11 +23,10 @@ lokalise2 project update [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 project](lokalise2_project.md) - Manage projects -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_queued-process.md b/docs/lokalise2_queued-process.md index 5e4adc5..c0fcbe7 100644 --- a/docs/lokalise2_queued-process.md +++ b/docs/lokalise2_queued-process.md @@ -17,13 +17,12 @@ Manage queued processes. Some heavy actions are processed asynchronously. Queued ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 queued-process list](lokalise2_queued-process_list.md) - Lists all queued processes for a project * [lokalise2 queued-process retrieve](lokalise2_queued-process_retrieve.md) - Retrieve a process for a project -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_queued-process_list.md b/docs/lokalise2_queued-process_list.md index 5f723d6..95416f3 100644 --- a/docs/lokalise2_queued-process_list.md +++ b/docs/lokalise2_queued-process_list.md @@ -2,10 +2,6 @@ Lists all queued processes for a project -### Synopsis - -Lists all queued processes for a project - ``` lokalise2 queued-process list [flags] ``` @@ -21,11 +17,10 @@ lokalise2 queued-process list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 queued-process](lokalise2_queued-process.md) - Manage queued processes -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_queued-process_retrieve.md b/docs/lokalise2_queued-process_retrieve.md index 1f628bf..dfaf90a 100644 --- a/docs/lokalise2_queued-process_retrieve.md +++ b/docs/lokalise2_queued-process_retrieve.md @@ -2,10 +2,6 @@ Retrieve a process for a project -### Synopsis - -Retrieve a process for a project - ``` lokalise2 queued-process retrieve [flags] ``` @@ -22,11 +18,10 @@ lokalise2 queued-process retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 queued-process](lokalise2_queued-process.md) - Manage queued processes -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_screenshot.md b/docs/lokalise2_screenshot.md index 5a36a9e..f74476f 100644 --- a/docs/lokalise2_screenshot.md +++ b/docs/lokalise2_screenshot.md @@ -2,10 +2,6 @@ Manage screenshots -### Synopsis - -Manage screenshots - ### Options ``` @@ -17,16 +13,15 @@ Manage screenshots ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 screenshot create](lokalise2_screenshot_create.md) - Create a screenshot * [lokalise2 screenshot delete](lokalise2_screenshot_delete.md) - Delete a screenshot * [lokalise2 screenshot list](lokalise2_screenshot_list.md) - List all screenshots * [lokalise2 screenshot retrieve](lokalise2_screenshot_retrieve.md) - Retrieve a screenshot * [lokalise2 screenshot update](lokalise2_screenshot_update.md) - Updates a screenshot -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_screenshot_create.md b/docs/lokalise2_screenshot_create.md index ed0389d..f4c530e 100644 --- a/docs/lokalise2_screenshot_create.md +++ b/docs/lokalise2_screenshot_create.md @@ -27,11 +27,10 @@ lokalise2 screenshot create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 screenshot](lokalise2_screenshot.md) - Manage screenshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_screenshot_delete.md b/docs/lokalise2_screenshot_delete.md index 7ac5c6e..23756cc 100644 --- a/docs/lokalise2_screenshot_delete.md +++ b/docs/lokalise2_screenshot_delete.md @@ -22,11 +22,10 @@ lokalise2 screenshot delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 screenshot](lokalise2_screenshot.md) - Manage screenshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_screenshot_list.md b/docs/lokalise2_screenshot_list.md index a76bb58..a537837 100644 --- a/docs/lokalise2_screenshot_list.md +++ b/docs/lokalise2_screenshot_list.md @@ -21,11 +21,10 @@ lokalise2 screenshot list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 screenshot](lokalise2_screenshot.md) - Manage screenshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_screenshot_retrieve.md b/docs/lokalise2_screenshot_retrieve.md index 224d3a3..1e2c1e5 100644 --- a/docs/lokalise2_screenshot_retrieve.md +++ b/docs/lokalise2_screenshot_retrieve.md @@ -22,11 +22,10 @@ lokalise2 screenshot retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 screenshot](lokalise2_screenshot.md) - Manage screenshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_screenshot_update.md b/docs/lokalise2_screenshot_update.md index 8e285fb..a21e6e4 100644 --- a/docs/lokalise2_screenshot_update.md +++ b/docs/lokalise2_screenshot_update.md @@ -26,11 +26,10 @@ lokalise2 screenshot update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 screenshot](lokalise2_screenshot.md) - Manage screenshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_snapshot.md b/docs/lokalise2_snapshot.md index f377b41..00b2400 100644 --- a/docs/lokalise2_snapshot.md +++ b/docs/lokalise2_snapshot.md @@ -2,10 +2,6 @@ Manage snapshots -### Synopsis - -Manage snapshots - ### Options ``` @@ -17,15 +13,14 @@ Manage snapshots ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 snapshot create](lokalise2_snapshot_create.md) - Create a snapshot * [lokalise2 snapshot delete](lokalise2_snapshot_delete.md) - Delete a snapshot * [lokalise2 snapshot list](lokalise2_snapshot_list.md) - List all snapshots * [lokalise2 snapshot restore](lokalise2_snapshot_restore.md) - Restore a snapshot -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_snapshot_create.md b/docs/lokalise2_snapshot_create.md index 0e2333f..41994d9 100644 --- a/docs/lokalise2_snapshot_create.md +++ b/docs/lokalise2_snapshot_create.md @@ -22,11 +22,10 @@ lokalise2 snapshot create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 snapshot](lokalise2_snapshot.md) - Manage snapshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_snapshot_delete.md b/docs/lokalise2_snapshot_delete.md index 0517a8d..4aed280 100644 --- a/docs/lokalise2_snapshot_delete.md +++ b/docs/lokalise2_snapshot_delete.md @@ -22,11 +22,10 @@ lokalise2 snapshot delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 snapshot](lokalise2_snapshot.md) - Manage snapshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_snapshot_list.md b/docs/lokalise2_snapshot_list.md index eb1bdf9..d47c63a 100644 --- a/docs/lokalise2_snapshot_list.md +++ b/docs/lokalise2_snapshot_list.md @@ -21,11 +21,10 @@ lokalise2 snapshot list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 snapshot](lokalise2_snapshot.md) - Manage snapshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_snapshot_restore.md b/docs/lokalise2_snapshot_restore.md index 413b944..f86ca1f 100644 --- a/docs/lokalise2_snapshot_restore.md +++ b/docs/lokalise2_snapshot_restore.md @@ -22,11 +22,10 @@ lokalise2 snapshot restore [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 snapshot](lokalise2_snapshot.md) - Manage snapshots -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_task.md b/docs/lokalise2_task.md index 01c1623..b850c9d 100644 --- a/docs/lokalise2_task.md +++ b/docs/lokalise2_task.md @@ -2,10 +2,6 @@ Manage tasks -### Synopsis - -Manage tasks - ### Options ``` @@ -17,16 +13,15 @@ Manage tasks ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 task create](lokalise2_task_create.md) - Create a task * [lokalise2 task delete](lokalise2_task_delete.md) - Delete a task * [lokalise2 task list](lokalise2_task_list.md) - List all tasks * [lokalise2 task retrieve](lokalise2_task_retrieve.md) - Retrieve a task * [lokalise2 task update](lokalise2_task_update.md) - Update a task -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_task_create.md b/docs/lokalise2_task_create.md index 662a6b8..351d900 100644 --- a/docs/lokalise2_task_create.md +++ b/docs/lokalise2_task_create.md @@ -34,11 +34,10 @@ lokalise2 task create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 task](lokalise2_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_task_delete.md b/docs/lokalise2_task_delete.md index 07f8372..f0ad39f 100644 --- a/docs/lokalise2_task_delete.md +++ b/docs/lokalise2_task_delete.md @@ -22,11 +22,10 @@ lokalise2 task delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 task](lokalise2_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_task_list.md b/docs/lokalise2_task_list.md index 7d48e5a..12abb01 100644 --- a/docs/lokalise2_task_list.md +++ b/docs/lokalise2_task_list.md @@ -22,11 +22,10 @@ lokalise2 task list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 task](lokalise2_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_task_retrieve.md b/docs/lokalise2_task_retrieve.md index 1d97ccf..bcb7d99 100644 --- a/docs/lokalise2_task_retrieve.md +++ b/docs/lokalise2_task_retrieve.md @@ -22,11 +22,10 @@ lokalise2 task retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 task](lokalise2_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_task_update.md b/docs/lokalise2_task_update.md index 70c5d35..f2c77ab 100644 --- a/docs/lokalise2_task_update.md +++ b/docs/lokalise2_task_update.md @@ -31,11 +31,10 @@ lokalise2 task update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 task](lokalise2_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group.md b/docs/lokalise2_team-user-group.md index 2730b2b..71a8b09 100644 --- a/docs/lokalise2_team-user-group.md +++ b/docs/lokalise2_team-user-group.md @@ -2,10 +2,6 @@ Manage team user groups -### Synopsis - -Manage team user groups - ### Options ``` @@ -17,12 +13,12 @@ Manage team user groups ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 team-user-group add-members](lokalise2_team-user-group_add-members.md) - Add members to the group * [lokalise2 team-user-group add-projects](lokalise2_team-user-group_add-projects.md) - Add projects to the group * [lokalise2 team-user-group create](lokalise2_team-user-group_create.md) - Create a new user group @@ -33,4 +29,3 @@ Manage team user groups * [lokalise2 team-user-group retrieve](lokalise2_team-user-group_retrieve.md) - Retrieves a user group * [lokalise2 team-user-group update](lokalise2_team-user-group_update.md) - Update a user group -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_add-members.md b/docs/lokalise2_team-user-group_add-members.md index f323999..913469c 100644 --- a/docs/lokalise2_team-user-group_add-members.md +++ b/docs/lokalise2_team-user-group_add-members.md @@ -2,10 +2,6 @@ Add members to the group -### Synopsis - -Add members to the group - ``` lokalise2 team-user-group add-members [flags] ``` @@ -23,11 +19,10 @@ lokalise2 team-user-group add-members [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_add-projects.md b/docs/lokalise2_team-user-group_add-projects.md index 4ce1d9e..0a69cd7 100644 --- a/docs/lokalise2_team-user-group_add-projects.md +++ b/docs/lokalise2_team-user-group_add-projects.md @@ -2,10 +2,6 @@ Add projects to the group -### Synopsis - -Add projects to the group - ``` lokalise2 team-user-group add-projects [flags] ``` @@ -23,11 +19,10 @@ lokalise2 team-user-group add-projects [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_create.md b/docs/lokalise2_team-user-group_create.md index bdd17cf..2d536f9 100644 --- a/docs/lokalise2_team-user-group_create.md +++ b/docs/lokalise2_team-user-group_create.md @@ -26,11 +26,10 @@ lokalise2 team-user-group create [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_delete.md b/docs/lokalise2_team-user-group_delete.md index 3e92cee..e1ed6be 100644 --- a/docs/lokalise2_team-user-group_delete.md +++ b/docs/lokalise2_team-user-group_delete.md @@ -22,11 +22,10 @@ lokalise2 team-user-group delete [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_list.md b/docs/lokalise2_team-user-group_list.md index 0b99297..ead4ea3 100644 --- a/docs/lokalise2_team-user-group_list.md +++ b/docs/lokalise2_team-user-group_list.md @@ -2,10 +2,6 @@ Lists all user groups -### Synopsis - -Lists all user groups - ``` lokalise2 team-user-group list [flags] ``` @@ -21,11 +17,10 @@ lokalise2 team-user-group list [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_remove-members.md b/docs/lokalise2_team-user-group_remove-members.md index 983eab4..fb43ff3 100644 --- a/docs/lokalise2_team-user-group_remove-members.md +++ b/docs/lokalise2_team-user-group_remove-members.md @@ -2,10 +2,6 @@ Remove members from the group -### Synopsis - -Remove members from the group - ``` lokalise2 team-user-group remove-members [flags] ``` @@ -23,11 +19,10 @@ lokalise2 team-user-group remove-members [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_remove-projects.md b/docs/lokalise2_team-user-group_remove-projects.md index 90a8baf..50d0e2b 100644 --- a/docs/lokalise2_team-user-group_remove-projects.md +++ b/docs/lokalise2_team-user-group_remove-projects.md @@ -2,10 +2,6 @@ Add projects to the group -### Synopsis - -Add projects to the group - ``` lokalise2 team-user-group remove-projects [flags] ``` @@ -23,11 +19,10 @@ lokalise2 team-user-group remove-projects [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_retrieve.md b/docs/lokalise2_team-user-group_retrieve.md index e1d5783..83c3532 100644 --- a/docs/lokalise2_team-user-group_retrieve.md +++ b/docs/lokalise2_team-user-group_retrieve.md @@ -2,10 +2,6 @@ Retrieves a user group -### Synopsis - -Retrieves a user group - ``` lokalise2 team-user-group retrieve [flags] ``` @@ -22,11 +18,10 @@ lokalise2 team-user-group retrieve [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user-group_update.md b/docs/lokalise2_team-user-group_update.md index 6ddb48b..3aad272 100644 --- a/docs/lokalise2_team-user-group_update.md +++ b/docs/lokalise2_team-user-group_update.md @@ -27,11 +27,10 @@ lokalise2 team-user-group update [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user-group](lokalise2_team-user-group.md) - Manage team user groups -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user.md b/docs/lokalise2_team-user.md index 1c6b836..8c4426b 100644 --- a/docs/lokalise2_team-user.md +++ b/docs/lokalise2_team-user.md @@ -2,10 +2,6 @@ Manage team users -### Synopsis - -Manage team users - ### Options ``` @@ -17,15 +13,14 @@ Manage team users ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 team-user delete](lokalise2_team-user_delete.md) - Delete a team user * [lokalise2 team-user list](lokalise2_team-user_list.md) - List all team users * [lokalise2 team-user retrieve](lokalise2_team-user_retrieve.md) - Retrieves a team user * [lokalise2 team-user update](lokalise2_team-user_update.md) - Update a team user -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user_delete.md b/docs/lokalise2_team-user_delete.md index 29c0d98..b411fbe 100644 --- a/docs/lokalise2_team-user_delete.md +++ b/docs/lokalise2_team-user_delete.md @@ -22,11 +22,10 @@ lokalise2 team-user delete [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user](lokalise2_team-user.md) - Manage team users -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user_list.md b/docs/lokalise2_team-user_list.md index 78f012b..99ee7e7 100644 --- a/docs/lokalise2_team-user_list.md +++ b/docs/lokalise2_team-user_list.md @@ -21,11 +21,10 @@ lokalise2 team-user list [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user](lokalise2_team-user.md) - Manage team users -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user_retrieve.md b/docs/lokalise2_team-user_retrieve.md index d981417..da92e74 100644 --- a/docs/lokalise2_team-user_retrieve.md +++ b/docs/lokalise2_team-user_retrieve.md @@ -22,11 +22,10 @@ lokalise2 team-user retrieve [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user](lokalise2_team-user.md) - Manage team users -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team-user_update.md b/docs/lokalise2_team-user_update.md index 7695385..6d26461 100644 --- a/docs/lokalise2_team-user_update.md +++ b/docs/lokalise2_team-user_update.md @@ -23,11 +23,10 @@ lokalise2 team-user update [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team-user](lokalise2_team-user.md) - Manage team users -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team.md b/docs/lokalise2_team.md index f9adadf..fe38b71 100644 --- a/docs/lokalise2_team.md +++ b/docs/lokalise2_team.md @@ -2,10 +2,6 @@ List teams -### Synopsis - -List teams - ### Options ``` @@ -16,12 +12,11 @@ List teams ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 team list](lokalise2_team_list.md) - List all teams -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_team_list.md b/docs/lokalise2_team_list.md index fe8cf2c..e1d7737 100644 --- a/docs/lokalise2_team_list.md +++ b/docs/lokalise2_team_list.md @@ -20,11 +20,10 @@ lokalise2 team list [flags] ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 team](lokalise2_team.md) - List teams -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-provider.md b/docs/lokalise2_translation-provider.md index da70d3e..d67f55c 100644 --- a/docs/lokalise2_translation-provider.md +++ b/docs/lokalise2_translation-provider.md @@ -17,13 +17,12 @@ Translation providers are used for translation orders. ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 translation-provider list](lokalise2_translation-provider_list.md) - List all providers * [lokalise2 translation-provider retrieve](lokalise2_translation-provider_retrieve.md) - Retrieve a provider -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-provider_list.md b/docs/lokalise2_translation-provider_list.md index e8b4149..e8951ae 100644 --- a/docs/lokalise2_translation-provider_list.md +++ b/docs/lokalise2_translation-provider_list.md @@ -21,11 +21,10 @@ lokalise2 translation-provider list [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-provider](lokalise2_translation-provider.md) - List translation providers -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-provider_retrieve.md b/docs/lokalise2_translation-provider_retrieve.md index c134de3..3e99ff5 100644 --- a/docs/lokalise2_translation-provider_retrieve.md +++ b/docs/lokalise2_translation-provider_retrieve.md @@ -22,11 +22,10 @@ lokalise2 translation-provider retrieve [flags] ``` --config string config file (default is ./config.yml) --team-id int A unique identifier of the team (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-provider](lokalise2_translation-provider.md) - List translation providers -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-status.md b/docs/lokalise2_translation-status.md index a3709f6..2cd36bf 100644 --- a/docs/lokalise2_translation-status.md +++ b/docs/lokalise2_translation-status.md @@ -17,12 +17,12 @@ Custom translation statuses are used to provide a more efficient translation wor ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 translation-status create](lokalise2_translation-status_create.md) - Create a status * [lokalise2 translation-status delete](lokalise2_translation-status_delete.md) - Delete a status * [lokalise2 translation-status list](lokalise2_translation-status_list.md) - List all statuses @@ -30,4 +30,3 @@ Custom translation statuses are used to provide a more efficient translation wor * [lokalise2 translation-status retrieve-colors](lokalise2_translation-status_retrieve-colors.md) - Retrieve available colors * [lokalise2 translation-status update](lokalise2_translation-status_update.md) - Update a status -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-status_create.md b/docs/lokalise2_translation-status_create.md index 318cb97..f44f158 100644 --- a/docs/lokalise2_translation-status_create.md +++ b/docs/lokalise2_translation-status_create.md @@ -23,11 +23,10 @@ lokalise2 translation-status create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-status](lokalise2_translation-status.md) - Manage custom translation statuses -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-status_delete.md b/docs/lokalise2_translation-status_delete.md index dd9be08..af3f57d 100644 --- a/docs/lokalise2_translation-status_delete.md +++ b/docs/lokalise2_translation-status_delete.md @@ -22,11 +22,10 @@ lokalise2 translation-status delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-status](lokalise2_translation-status.md) - Manage custom translation statuses -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-status_list.md b/docs/lokalise2_translation-status_list.md index 8185089..03ea303 100644 --- a/docs/lokalise2_translation-status_list.md +++ b/docs/lokalise2_translation-status_list.md @@ -21,11 +21,10 @@ lokalise2 translation-status list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-status](lokalise2_translation-status.md) - Manage custom translation statuses -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-status_retrieve-colors.md b/docs/lokalise2_translation-status_retrieve-colors.md index 2520822..1f3466f 100644 --- a/docs/lokalise2_translation-status_retrieve-colors.md +++ b/docs/lokalise2_translation-status_retrieve-colors.md @@ -21,11 +21,10 @@ lokalise2 translation-status retrieve-colors [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-status](lokalise2_translation-status.md) - Manage custom translation statuses -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-status_retrieve.md b/docs/lokalise2_translation-status_retrieve.md index 9c2b1bc..0e658d9 100644 --- a/docs/lokalise2_translation-status_retrieve.md +++ b/docs/lokalise2_translation-status_retrieve.md @@ -22,11 +22,10 @@ lokalise2 translation-status retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-status](lokalise2_translation-status.md) - Manage custom translation statuses -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation-status_update.md b/docs/lokalise2_translation-status_update.md index b25658f..275d747 100644 --- a/docs/lokalise2_translation-status_update.md +++ b/docs/lokalise2_translation-status_update.md @@ -24,11 +24,10 @@ lokalise2 translation-status update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation-status](lokalise2_translation-status.md) - Manage custom translation statuses -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation.md b/docs/lokalise2_translation.md index 1c0ed3e..4823164 100644 --- a/docs/lokalise2_translation.md +++ b/docs/lokalise2_translation.md @@ -2,10 +2,6 @@ Manage translations -### Synopsis - -Manage translations - ### Options ``` @@ -17,14 +13,13 @@ Manage translations ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 translation list](lokalise2_translation_list.md) - List all translations * [lokalise2 translation retrieve](lokalise2_translation_retrieve.md) - Retrieve a translation * [lokalise2 translation update](lokalise2_translation_update.md) - Update a translation -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation_list.md b/docs/lokalise2_translation_list.md index 28e740d..a3101d6 100644 --- a/docs/lokalise2_translation_list.md +++ b/docs/lokalise2_translation_list.md @@ -26,11 +26,10 @@ lokalise2 translation list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation](lokalise2_translation.md) - Manage translations -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation_retrieve.md b/docs/lokalise2_translation_retrieve.md index 03006e2..6c7ed76 100644 --- a/docs/lokalise2_translation_retrieve.md +++ b/docs/lokalise2_translation_retrieve.md @@ -22,11 +22,10 @@ lokalise2 translation retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation](lokalise2_translation.md) - Manage translations -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_translation_update.md b/docs/lokalise2_translation_update.md index 0388b09..1122ffb 100644 --- a/docs/lokalise2_translation_update.md +++ b/docs/lokalise2_translation_update.md @@ -26,11 +26,10 @@ lokalise2 translation update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 translation](lokalise2_translation.md) - Manage translations -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_webhook.md b/docs/lokalise2_webhook.md index f81425d..f464e36 100644 --- a/docs/lokalise2_webhook.md +++ b/docs/lokalise2_webhook.md @@ -2,10 +2,6 @@ Manage webhooks -### Synopsis - -Manage webhooks - ### Options ``` @@ -17,16 +13,15 @@ Manage webhooks ``` --config string config file (default is ./config.yml) - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO -* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.8. Read the docs at https://github.com/lokalise/lokalise-cli-2-go +* [lokalise2](lokalise2.md) - Lokalise CLI v2.6.11. Read the docs at https://github.com/lokalise/lokalise-cli-2-go * [lokalise2 webhook create](lokalise2_webhook_create.md) - Create a webhook * [lokalise2 webhook delete](lokalise2_webhook_delete.md) - Delete a webhook * [lokalise2 webhook list](lokalise2_webhook_list.md) - List all webhooks * [lokalise2 webhook retrieve](lokalise2_webhook_retrieve.md) - Retrieve a webhook * [lokalise2 webhook update](lokalise2_webhook_update.md) - Update a webhook -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_webhook_create.md b/docs/lokalise2_webhook_create.md index 72393d3..f36aa14 100644 --- a/docs/lokalise2_webhook_create.md +++ b/docs/lokalise2_webhook_create.md @@ -15,7 +15,7 @@ lokalise2 webhook create [flags] ``` --branch string If webhook is limited to a single branch --event-lang-map string Map the event with an array of languages iso codes. Omit this parameter for all languages in the project. JSON, see https://lokalise.com/api2docs/curl/#resource-webhooks - --events strings List of events to subscribe to (required, see https://docs.lokalise.com/en/articles/3184756-webhooks). + --events strings List of events to subscribe to (required, see https://developers.lokalise.com/docs/webhook-events). -h, --help help for create --url string Specify the URL to your endpoint (required). ``` @@ -25,11 +25,10 @@ lokalise2 webhook create [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 webhook](lokalise2_webhook.md) - Manage webhooks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_webhook_delete.md b/docs/lokalise2_webhook_delete.md index 5b42f73..64322c5 100644 --- a/docs/lokalise2_webhook_delete.md +++ b/docs/lokalise2_webhook_delete.md @@ -22,11 +22,10 @@ lokalise2 webhook delete [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 webhook](lokalise2_webhook.md) - Manage webhooks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_webhook_list.md b/docs/lokalise2_webhook_list.md index 5ac7809..b251ecb 100644 --- a/docs/lokalise2_webhook_list.md +++ b/docs/lokalise2_webhook_list.md @@ -21,11 +21,10 @@ lokalise2 webhook list [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 webhook](lokalise2_webhook.md) - Manage webhooks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_webhook_retrieve.md b/docs/lokalise2_webhook_retrieve.md index 996d492..501233d 100644 --- a/docs/lokalise2_webhook_retrieve.md +++ b/docs/lokalise2_webhook_retrieve.md @@ -22,11 +22,10 @@ lokalise2 webhook retrieve [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 webhook](lokalise2_webhook.md) - Manage webhooks -###### Auto generated by spf13/cobra on 21-Oct-2021 diff --git a/docs/lokalise2_webhook_update.md b/docs/lokalise2_webhook_update.md index 664fe05..6d7ffc7 100644 --- a/docs/lokalise2_webhook_update.md +++ b/docs/lokalise2_webhook_update.md @@ -15,7 +15,7 @@ lokalise2 webhook update [flags] ``` --branch string If webhook is limited to a single branch --event-lang-map string Map the event with an array of languages iso codes. Omit this parameter for all languages in the project. - --events strings Replace list of events, see https://docs.lokalise.com/en/articles/3184756-webhooks. + --events strings Replace list of events, see https://developers.lokalise.com/docs/webhook-events. -h, --help help for update --url string Update the URL to your endpoint. ``` @@ -25,11 +25,10 @@ lokalise2 webhook update [flags] ``` --config string config file (default is ./config.yml) --project-id string Unique project identifier (required). - -t, --token string API token. You can create API tokens at https://lokalise.com/profile. + -t, --token string API token. You can create API tokens at https://app.lokalise.com/profile. ``` ### SEE ALSO * [lokalise2 webhook](lokalise2_webhook.md) - Manage webhooks -###### Auto generated by spf13/cobra on 21-Oct-2021