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.
4141You 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
4646Most of commands takes user credentials for a Globalization Pipeline service
4747instance. The common command options for specifying user credentials are
@@ -315,28 +315,28 @@ You may already have resource bundles translated from English to several
315315different languages. If you want to import the already translated contents to
316316a 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,
319319we use * com.ibm.example.MyBundle* as the bundle ID.
320320```
321321java -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
325325file in this example is a Java properties fiel - MyBundle.properties
326326```
327327java -jar gp-cli.jar import -b com.ibm.example.MyBundle -l en -t JAVA -f MyBundle.properties -j mycreds.json
328328```
329329At this point, the bundle * com.ibm.example.MyBundle* in the Globalization
330330Pipeline 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
333333below imports French(fr) translation from MyBundle_fr.properties.
334334```
335335java -jar gp-cli.jar import -b com.ibm.example.MyBundle -l fr -t JAVA -f MyBundle_fr.properties -j mycreds.json
336336```
337337This 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