Skip to content

Commit 6063175

Browse files
author
Yoshito Umaoka
committed
Fixed some editorial issues in CLI user guide.
1 parent 9d06f1a commit 6063175

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

gp-cli.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
* [Overview](#TOC-Overview)
2121
* [Prerequisites](#TOC-Prerequisites)
22-
* [Commands](#TOC-Commands)
22+
* [Command Reference](#TOC-Command-Reference)
2323
* [Help Command](#TOC-Cmd-Help)
2424
* [Bundle Commands](#TOC-Cmd-Bundle)
2525
* [User Commands](#TOC-Cmd-User)
@@ -41,7 +41,7 @@ Globalization Pipeline CLI Tool is distributed in a single jar package.
4141
You need Java SE Runtime Environment 7 or later version to run the tool.
4242

4343
---
44-
## <a name="TOC-Commands"></a>Commands
44+
## <a name="TOC-Command-Reference"></a>Command Reference
4545

4646
Most of commands takes user credentials for a Globalization Pipeline service
4747
instance. The common command options for specifying user credentials are
@@ -315,28 +315,28 @@ You may already have resource bundles translated from English to several
315315
different languages. If you want to import the already translated contents to
316316
a Globalization Pipeline service bundle, then you can follow the steps below.
317317

318-
1. Create a new bundle with English as the source language. In this example,
318+
1\. Create a new bundle with English as the source language. In this example,
319319
we use *com.ibm.example.MyBundle* as the bundle ID.
320320
```
321321
java -jar gp-cli.jar create -b com.ibm.example.MyBundle -l en -j mycreds.json
322322
```
323323

324-
2. Import the English(en) resource bundle contents to *MyBundle*. The resource bundle
324+
2\. Import the English(en) resource bundle contents to *MyBundle*. The resource bundle
325325
file in this example is a Java properties fiel - MyBundle.properties
326326
```
327327
java -jar gp-cli.jar import -b com.ibm.example.MyBundle -l en -t JAVA -f MyBundle.properties -j mycreds.json
328328
```
329329
At this point, the bundle *com.ibm.example.MyBundle* in the Globalization
330330
Pipeline service instance contains only English resource strings.
331331

332-
3. Import the corresponding translated version. In this example, the operation
332+
3\. Import the corresponding translated version. In this example, the operation
333333
below imports French(fr) translation from MyBundle_fr.properties.
334334
```
335335
java -jar gp-cli.jar import -b com.ibm.example.MyBundle -l fr -t JAVA -f MyBundle_fr.properties -j mycreds.json
336336
```
337337
This operation automatically adds French to the bundle *com.ibm.example.MyBundle*.
338338

339-
4. Repeat step 3 above for other translated versions.
339+
4\. Repeat step 3 above for other translated versions.
340340

341341

342342

0 commit comments

Comments
 (0)