[glom] export_po_all: Fix some typos.



commit eab6fc8ff9be8469baa5eb6ab0ec483e5e0e97d2
Author: Murray Cumming <murrayc murrayc com>
Date:   Mon Jan 9 10:43:12 2012 +0100

    export_po_all: Fix some typos.
    
    	* glom/glom_export_po_all.cc: Fix some typos.

 ChangeLog                  |    6 ++++++
 glom/glom_export_po_all.cc |    8 ++++----
 2 files changed, 10 insertions(+), 4 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 17a6b15..df244c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2012-01-09  Murray Cumming  <murrayc murrayc com>
 
+	export_po_all: Fix some typos.
+
+	* glom/glom_export_po_all.cc: Fix some typos.
+
+2012-01-09  Murray Cumming  <murrayc murrayc com>
+
 	test_document_load_translations: Test more fallbacks.
 
 	* examples/example_film_manager.glom: Remove the useless en_GB translations.
diff --git a/glom/glom_export_po_all.cc b/glom/glom_export_po_all.cc
index d6bdc46..4914916 100644
--- a/glom/glom_export_po_all.cc
+++ b/glom/glom_export_po_all.cc
@@ -46,13 +46,13 @@ public:
 };
 
 GlomCreateOptionGroup::GlomCreateOptionGroup()
-: Glib::OptionGroup("glom_export_po", _("Glom options"), _("Command-line options")),
+: Glib::OptionGroup("glom_export_po_all", _("Glom options"), _("Command-line options")),
   m_arg_version(false)
 {
   Glib::OptionEntry entry; 
   entry.set_long_name("output-path");
   entry.set_short_name('o');
-  entry.set_description(_("The directory path at which to save the created .po files, such as /home/someuser/ ."));
+  entry.set_description(_("The directory path at which to save the created .po files, such as /home/someuser/po_files/ ."));
   add_entry_filename(entry, m_arg_filepath_output);
 
   entry.set_long_name("version");
@@ -118,7 +118,7 @@ int main(int argc, char* argv[])
 
   if(!file_input->query_exists())
   {
-    std::cerr << _("The directory does not exist.") << std::endl;
+    std::cerr << _("The Glom file does not exist.") << std::endl;
     std::cerr << "uri: " << input_uri << std::endl;
 
     std::cerr << std::endl << context.get_help() << std::endl;
@@ -157,7 +157,7 @@ int main(int argc, char* argv[])
   file_type = file_output->query_file_type();
   if(file_type != Gio::FILE_TYPE_DIRECTORY)
   {
-    std::cerr << _("Glom: The output file path is not directory.") << std::endl;
+    std::cerr << _("Glom: The output file path is not a directory.") << std::endl;
     std::cerr << std::endl << context.get_help() << std::endl;
     return EXIT_FAILURE;
   }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]