From 238bd7f8a5131e9bc51a649553fd2fafaf6337c2 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Wed, 25 Feb 2009 03:51:42 -0400 Subject: Marked all strings needing internationalization These strings are now collected automagically in the file po/ledger.pot. If you'd like to produce a translation, just run this command after building Ledger: msginit -l LOCALE -o LANG.po -i po/ledger.pot Where LOCALE is a string like de or en_GB, and LANG is a short descriptive word for your language. Then send me this .po file so I can commit it to the Ledger sources (alternatively, you could maintain the file in a fork on GitHub), and setup the build script to format and install your new message catalog during a "make install". --- src/global.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/global.h') diff --git a/src/global.h b/src/global.h index a7e5a0db..dcccb214 100644 --- a/src/global.h +++ b/src/global.h @@ -100,11 +100,11 @@ public: void show_version_info(std::ostream& out) { out << - "Ledger " << ledger::version << ", the command-line accounting tool"; + "Ledger " << ledger::version << _(", the command-line accounting tool"); out << - "\n\nCopyright (c) 2003-2009, John Wiegley. All rights reserved.\n\n\ + _("\n\nCopyright (c) 2003-2009, John Wiegley. All rights reserved.\n\n\ This program is made available under the terms of the BSD Public License.\n\ -See LICENSE file included with the distribution for details and disclaimer."; +See LICENSE file included with the distribution for details and disclaimer."); out << std::endl; } -- cgit v1.2.3