From 6efd08473f05178672e3377b14dc2675fefd3955 Mon Sep 17 00:00:00 2001 From: Alex Eng Date: Thu, 4 Jun 2015 13:46:16 +1000 Subject: [PATCH] Fix help message for file type --- .../org/zanata/client/commands/push/PushOptionsImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PushOptionsImpl.java b/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PushOptionsImpl.java index cccbe084..4a9a4ac1 100644 --- a/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PushOptionsImpl.java +++ b/zanata-client-commands/src/main/java/org/zanata/client/commands/push/PushOptionsImpl.java @@ -191,17 +191,17 @@ public ImmutableList getFileTypes() { private static final String fileTypeHelp = "File types to locate and transmit to the server. \n" + "Default file extension will be used unless it is being specified. \n" + - "Pattern: Type[file extension;file extension],Type[file extension;file extension] \n" + + "Pattern: TYPE[extension;extension] \n" + "Supported types: \n" + - "\t XML_DOCUMENT_TYPE_DEFINITION[xml]) \n" + + "\t XML_DOCUMENT_TYPE_DEFINITION[xml] \n" + "\t PLAIN_TEXT[txt] \n" + "\t IDML[idml] \n" + - "\t HTML[html,htm] \n" + + "\t HTML[html;htm] \n" + "\t OPEN_DOCUMENT_TEXT[odt] \n" + "\t OPEN_DOCUMENT_PRESENTATION[odp] \n" + "\t OPEN_DOCUMENT_GRAPHICS[odg] \n" + "\t OPEN_DOCUMENT_SPREADSHEET[ods] \n" + - "\t SUBTITLE[srt,sbt,sub,vtt] \n" + + "\t SUBTITLE[srt;sbt;sub;vtt] \n" + "\t GETTEXT[pot] \n" + "\t PROPERTIES[properties] \n" + "\t PROPERTIES_UTF8[properties] \n" +