@@ -35,7 +35,7 @@ const globPatternHelp = `argument support globbing with following patterns:
3535 > [!xyz] — matches not 'x', 'y' or 'z' charachers;
3636 > {a,b,c} — matches alternatives a, b or c;`
3737
38- const initHelp = `smartling init — create config file interactively.
38+ const initHelp = `smartling-cli init — create config file interactively.
3939
4040Walk down common config file parameters and fill them through dialog.
4141
@@ -46,17 +46,17 @@ is lost.
4646Options like --user, --secret, --account and --project can be used to specify
4747config values prior dialog:
4848
49- smartling init --user=your_user_id
49+ smartling-cli init --user=your_user_id
5050
5151Also, --dry-run option can be used to just look at resulting config without
5252overwritting anything:
5353
54- smartling init --dry-run
54+ smartling-cli init --dry-run
5555
5656By default, smartling.yml file in the local directory will be used as target
5757config file, but it can be overriden by using --config option:
5858
59- smartling init --config=/path/to/project/smartling.yml
59+ smartling-cli init --config=/path/to/project/smartling.yml
6060
6161
6262Available options:
@@ -72,7 +72,7 @@ Default config values can be passed via following options:` +
7272 Specify default project.
7373`
7474
75- const projectsListHelp = `smartling projects list — list projects from account.
75+ const projectsListHelp = `smartling-cli projects list — list projects from account.
7676
7777Command will list projects from specified account in tabular format with
7878following information:
@@ -92,7 +92,7 @@ Available options:
9292 List only project IDs.
9393` + authenticationOptionsHelp
9494
95- const projectsInfoHelp = `smartling projects info — show detailed project info.
95+ const projectsInfoHelp = `smartling-cli projects info — show detailed project info.
9696
9797Displays detailed information for specific project.
9898
@@ -101,7 +101,7 @@ Project should be specified either in config or via --project option.
101101
102102Available options:` + authenticationOptionsHelp
103103
104- const projectsLocalesHelp = `smartling projects locales — list target locales.
104+ const projectsLocalesHelp = `smartling-cli projects locales — list target locales.
105105
106106Lists target locales from specified project.
107107
@@ -125,7 +125,7 @@ Available options:
125125 Use specific output format instead of default.
126126` + authenticationOptionsHelp
127127
128- const filesListHelp = `smartling files list — list files from project.
128+ const filesListHelp = `smartling-cli files list — list files from project.
129129
130130Lists all files from project or only files which matches specified uri.
131131
@@ -160,7 +160,7 @@ Available options:
160160 Override default listing format.
161161` + authenticationOptionsHelp
162162
163- const filesPullHelp = `smartling files pull — downloads translated files from project.
163+ const filesPullHelp = `smartling-cli files pull — downloads translated files from project.
164164
165165Downloads files from specified project into local directory.
166166
@@ -171,7 +171,7 @@ specific locales only.
171171If special value of "-" is specified as <uri>, then program will expect
172172to read files list from stdin:
173173
174- cat files.txt | smartling files pull -
174+ cat files.txt | smartling-cli files pull -
175175
176176<uri> ` + globPatternHelp + `
177177
@@ -219,7 +219,7 @@ Available options:
219219 > contextMatchingInstrumented — to use with Chrome Context Capture;
220220` + authenticationOptionsHelp
221221
222- const filesPushHelp = `smartling files push <file> [<uri>] [--type <type>] [--branch (@auto|<branch name>)] [--authorize|--locale <locale>] [--directory <work dir>] [--directive <smartling directive>]
222+ const filesPushHelp = `smartling-cli files push <file> [<uri>] [--type <type>] [--branch (@auto|<branch name>)] [--authorize|--locale <locale>] [--directory <work dir>] [--directive <smartling directive>]
223223
224224Uploads files designated for translation.
225225
@@ -263,7 +263,7 @@ Available options:
263263 Override automatically detected file type.
264264` + authenticationOptionsHelp
265265
266- const filesStatusHelp = `smartling files status — show files status from project.
266+ const filesStatusHelp = `smartling-cli files status — show files status from project.
267267
268268Lists all files from project along with their translation progress into
269269different locales.
@@ -305,7 +305,7 @@ Available options:
305305 Specify format for listing file names.
306306` + authenticationOptionsHelp
307307
308- const filesDeleteHelp = `smartling files delete — removes files from project.
308+ const filesDeleteHelp = `smartling-cli files delete — removes files from project.
309309
310310Removes files from project according to specified pattern.
311311
@@ -314,14 +314,14 @@ Removes files from project according to specified pattern.
314314If special value of "-" is specified as <uri>, then program will expect
315315to read files list from stdin:
316316
317- cat files.txt | smartling files delete -
317+ cat files.txt | smartling-cli files delete -
318318
319319Available options:
320320 -p --project <project>
321321 Specify project to use.
322322` + authenticationOptionsHelp
323323
324- const filesRenameHelp = `smartling files rename — rename specified file.
324+ const filesRenameHelp = `smartling-cli files rename — rename specified file.
325325
326326Renames specified file URI into new file URI.
327327
@@ -330,7 +330,7 @@ Available options:
330330 Specify project to use.
331331` + authenticationOptionsHelp
332332
333- const importHelp = `smartling import — import file translations.
333+ const importHelp = `smartling-cli import — import file translations.
334334
335335Import pre-existent file translations into Smartling. Note, that
336336original file should be pushed prior file translations are imported.
0 commit comments