From kde-i18n-doc Fri May 20 14:10:10 2011 From: Alexander Potashev Date: Fri, 20 May 2011 14:10:10 +0000 To: kde-i18n-doc Subject: =?utf-8?q?=5Bkdepim=5D_console/kabcclient/src=3A_Make_the_comman?= Message-Id: <20110520141010.05157A60A4 () git ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-i18n-doc&m=130590067531647 Git commit ee0b54f8e24e27834ac4bc80e901a049b9af69e9 by Alexander Potashev. Committed on 20/05/2011 at 16:05. Pushed by aspotashev into branch 'master'. Make the command line placeholder "+[input data]" translatable CCMAIL:kde-i18n-doc@kde.org M +1 -1 console/kabcclient/src/main.cpp http://commits.kde.org/kdepim/ee0b54f8e24e27834ac4bc80e901a049b9af69e9 diff --git a/console/kabcclient/src/main.cpp b/console/kabcclient/src/main.cpp index e2c3ecf..cff5dfa 100644 --- a/console/kabcclient/src/main.cpp +++ b/console/kabcclient/src/main.cpp @@ -117,7 +117,7 @@ int main(int argc, char** argv) cmdLineOptions.add("match-case", ki18n("Match key fields case sensitive. UID is always matched case sensitive")); - cmdLineOptions.add("+[input data]", ki18n("Input to use instead of reading stdin")); + cmdLineOptions.add(ki18n("+[input data]"), ki18n("Input to use instead of reading stdin")); KCmdLineArgs::addCmdLineOptions(cmdLineOptions); KCmdLineArgs::init(argc, argv, &aboutData);