]> sourceware.org Git - systemtap.git/commitdiff
PR3823: Added gettext functionality so several files
authorLukas Berk <lberk@redhat.com>
Fri, 18 Feb 2011 14:24:18 +0000 (09:24 -0500)
committerLukas Berk <lberk@redhat.com>
Fri, 18 Feb 2011 14:24:18 +0000 (09:24 -0500)
Updated corresponding po files
Added macro keywords to po makefiles
Removed some uneeded comments

13 files changed:
Makefile.am
Makefile.in
buildrun.cxx
coveragedb.cxx
main.cxx
modsign.cxx
po/Makevars
po/en.gmo
po/en.po
po/pl.gmo
po/pl.po
po/systemtap.pot
session.cxx

index e59b2b1acc2bb41940eb35ed87f17e720432b58e..b477e8516160060c3b48463e91bde0f7802800e6 100644 (file)
@@ -166,7 +166,7 @@ CLEANFILES +=  $(pkglibexec_PROGRAMS)
 
 if BUILD_TRANSLATOR
 if HAVE_NSS
-stap_sign_module_SOURCES = modsign.cxx nsscommon.c
+stap_sign_module_SOURCES = modsign.cxx nsscommon.c util.cxx
 stap_sign_module_CPPFLAGS = $(AM_CPPFLAGS)
 stap_sign_module_CXXFLAGS = $(AM_CXXFLAGS) @PIECXXFLAGS@ $(nss_CFLAGS) $(nspr_CFLAGS)
 stap_sign_module_CFLAGS = $(AM_CFLAGS) @PIECFLAGS@ $(nss_CFLAGS) $(nspr_CFLAGS)
index d6b77848c49562a00a8a8806781a1b5609a5ea02..a5bc5a5200319a5a911041e4959bedae1f02abf2 100644 (file)
@@ -149,8 +149,8 @@ stap_server_connect_OBJECTS = $(am_stap_server_connect_OBJECTS)
 stap_server_connect_DEPENDENCIES =
 stap_server_connect_LINK = $(CCLD) $(stap_server_connect_CFLAGS) \
        $(CFLAGS) $(stap_server_connect_LDFLAGS) $(LDFLAGS) -o $@
-@BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@am_stap_sign_module_OBJECTS = stap_sign_module-modsign.$(OBJEXT) \
-@BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@ stap_sign_module-nsscommon.$(OBJEXT)
+@BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@am_stap_sign_module_OBJECTS = stap_sign_module-modsign.$(OBJEXT) stap-util.$(OBJEXT) \
+@BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@ stap_sign_module-nsscommon.$(OBJEXT) 
 stap_sign_module_OBJECTS = $(am_stap_sign_module_OBJECTS)
 stap_sign_module_DEPENDENCIES =
 stap_sign_module_LINK = $(CXXLD) $(stap_sign_module_CXXFLAGS) \
@@ -442,7 +442,7 @@ PHONIES = $(am__append_18) $(am__append_24) runcheck update-po \
 @BUILD_TRANSLATOR_TRUE@        $(am__append_20)
 @BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@stap_server_connect_LDFLAGS = $(AM_LDFLAGS)
 @BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@stap_sign_module_LDFLAGS = $(AM_LDFLAGS)
-@BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@stap_sign_module_SOURCES = modsign.cxx nsscommon.c
+@BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@stap_sign_module_SOURCES = modsign.cxx nsscommon.c util.cxx
 @BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@stap_sign_module_CPPFLAGS = $(AM_CPPFLAGS)
 @BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@stap_sign_module_CXXFLAGS = $(AM_CXXFLAGS) @PIECXXFLAGS@ $(nss_CFLAGS) $(nspr_CFLAGS)
 @BUILD_TRANSLATOR_TRUE@@HAVE_NSS_TRUE@stap_sign_module_CFLAGS = $(AM_CFLAGS) @PIECFLAGS@ $(nss_CFLAGS) $(nspr_CFLAGS)
index 728d34b8d8c06affaca951e5ed470d0e95e04830..ca4515e1d9ef0d8634b18493a334a3426c89c6af 100644 (file)
@@ -269,7 +269,7 @@ compile_pass (systemtap_session& s)
   rc = stat(module_dir_makefile.c_str(), &st);
   if (rc != 0)
     {
-        clog << _F("Checking \" %s \" failed: %s \nEnsure kernel development headers & makefiles are installed.",
+        clog << _F("Checking \" %s \" failed: %s\nEnsure kernel development headers & makefiles are installed.",
                    module_dir_makefile.c_str(), strerror(errno)) << endl;
        s.set_try_server ();
        return rc;
index 28f19eccaef7cd75235eed5dbf56bf1d19f7f234..02c8ea0fedce51c516e3cc46be9eab7ea2e22ac3 100644 (file)
@@ -25,43 +25,43 @@ using namespace std;
 void print_coverage_info(systemtap_session &s)
 {
   // print out used probes
-  clog << "---- used probes-----" << endl;
+  clog << _("---- used probes-----") << endl;
   for (unsigned i=0; i<s.probes.size(); i++) {
     // walk through the chain of probes
     vector<probe*> used_probe_list;
     s.probes[i]->collect_derivation_chain(used_probe_list);
     for (unsigned j=0; j<used_probe_list.size(); ++j) {
       for (unsigned k=0; k< used_probe_list[j]->locations.size(); ++k)
-        clog << "probe: "
+        clog << _("probe: ")
             << used_probe_list[j]->locations[k]->components.front()->tok->location << endl;
     }
 
     clog << "----" << endl;
     // for each probe print used and unused variables
     for (unsigned j=0; j<s.probes[i]->locals.size(); ++j) {
-           clog << "local: " << s.probes[i]->locals[j]->tok->location << endl;
+           clog << _("local: ") << s.probes[i]->locals[j]->tok->location << endl;
     }
     for (unsigned j=0; j<s.probes[i]->unused_locals.size(); ++j) {
-           clog << "unused_local: "
+           clog << _("unused_local: ")
                 << s.probes[i]->unused_locals[j]->tok->location
                 << endl;
     }
   }
   // print out unused probes
-  clog << "---- unused probes----- " << endl;
+  clog << _("---- unused probes----- ") << endl;
   for (unsigned i=0; i<s.unused_probes.size(); i++) {
     // walk through the chain of probes
     vector<probe*> unused_probe_list;
     s.unused_probes[i]->collect_derivation_chain(unused_probe_list);
     for (unsigned j=0; j<unused_probe_list.size(); ++j) {
       for (unsigned k=0; k< unused_probe_list[j]->locations.size(); ++k)
-        clog << "probe: "
+        clog << _("probe: ")
             << unused_probe_list[j]->locations[k]->components.front()->tok->location << endl;
     }
 
   }
   // print out used functions
-  clog << "---- used functions----- " << endl;
+  clog << _("---- used functions----- ") << endl;
   for (map<string,functiondecl*>::iterator it = s.functions.begin(); it != s.functions.end(); it++)
     {
       clog << "function: " << it->second->tok->location
@@ -69,23 +69,23 @@ void print_coverage_info(systemtap_session &s)
            << endl;
     }
   // print out unused functions
-  clog << "---- unused functions----- " << endl;
+  clog << _("---- unused functions----- ") << endl;
   for (unsigned i=0; i<s.unused_functions.size(); i++) {
-     clog << "unused_function: " << s.unused_functions[i]->tok->location
+     clog << _("unused_function: ") << s.unused_functions[i]->tok->location
          << " "  << s.unused_functions[i]->name
          << endl;
   }
   // print out used globals
-  clog << "---- used globals----- " << endl;
+  clog << _("---- used globals----- ") << endl;
   for (unsigned i=0; i<s.globals.size(); i++) {
-     clog << "globals: " << s.globals[i]->tok->location
+     clog << _("globals: ") << s.globals[i]->tok->location
          << " " << s.globals[i]->name
          << endl;
   }
   // print out unused globals
-  clog << "---- unused globals----- " << endl;
+  clog << _("---- unused globals----- ") << endl;
   for (unsigned i=0; i<s.unused_globals.size(); i++) {
-     clog << "globals: " << s.unused_globals[i]->tok->location
+     clog << _("globals: ") << s.unused_globals[i]->tok->location
          << " " << s.unused_globals[i]->name
          << endl;
   }
@@ -107,7 +107,7 @@ has_table(sqlite3 *db, const char * table)
                         &results, &rows, &columns, &errmsg);
 
   if(rc != SQLITE_OK) {
-    cerr << "Error in statement: " << command << " [" << errmsg << "]."
+    cerr << _("Error in statement: ") << command << " [" << errmsg << "]."
                                 << endl;
   }
   sqlite3_free_table(results);
@@ -130,7 +130,7 @@ has_index(sqlite3 *db, const char * index)
                         &results, &rows, &columns, &errmsg);
 
   if(rc != SQLITE_OK) {
-    cerr << "Error in statement: " << command << " [" << errmsg << "]."
+    cerr << _("Error in statement: ") << command << " [" << errmsg << "]."
                                 << endl;
   }
   sqlite3_free_table(results);
@@ -148,7 +148,7 @@ void sql_stmt(sqlite3 *db, const char* stmt)
   ret = sqlite3_exec(db, stmt, 0, 0, &errmsg);
 
   if(ret != SQLITE_OK) {
-    cerr << "Error in statement: " << stmt << " [" << errmsg << "]."
+    cerr << _("Error in statement: ") << stmt << " [" << errmsg << "]."
                                 << endl;
   }
 }
@@ -156,7 +156,7 @@ void sql_stmt(sqlite3 *db, const char* stmt)
 void enter_element(sqlite3 *db, coverage_element &x)
 {
   ostringstream command;
-  command << "insert or ignore into counts values ('"
+  command << _("insert or ignore into counts values ('")
           << x.file << "', '"
           << x.line << "', '"
           << x.col  << "', '"
@@ -172,7 +172,7 @@ void increment_element(sqlite3 *db, coverage_element &x)
 {
   ostringstream command;
   // make sure value in table
-  command << "insert or ignore into counts values ('"
+  command << _("insert or ignore into counts values ('")
           << x.file << "', '"
           << x.line << "', '"
           << x.col  << "', '"
index 4b56af64b691bd53e5f06aea3078a06752377d0b..acdea18fc39409f3b14e901c223c30b2bc5d51ad 100644 (file)
--- a/main.cxx
+++ b/main.cxx
@@ -300,7 +300,6 @@ int parse_kernel_config (systemtap_session &s)
     {
         clog << _F("Checking \"%s\" failed with error: %s",
                    kernel_config_file.c_str(), strerror(errno)) << endl;
-       //clog << "Checking \"" << kernel_config_file << "\" failed: " << strerror(errno) << endl;
        find_devel_rpms(s, s.kernel_build_tree.c_str());
        missing_rpm_list_print(s,"-devel");
        return rc;
@@ -319,9 +318,8 @@ int parse_kernel_config (systemtap_session &s)
     }
   if (s.verbose > 2)
     clog << _F("Parsed kernel \"%s\", ", kernel_config_file.c_str())
-         << _NF("containing %zu tuple", "containing %zu tuples",
-                s.kernel_config.size(), s.kernel_config.size()) << endl;
-    //clog << "Parsed kernel \"" << kernel_config_file << "\", number of tuples: " << s.kernel_config.size() << endl;
+         << _F(ngettext("containing %zu tuple", "containing %zu tuples",
+                s.kernel_config.size()), s.kernel_config.size()) << endl;
 
   kcf.close();
   return 0;
@@ -335,10 +333,8 @@ int parse_kernel_exports (systemtap_session &s)
   int rc = stat(kernel_exports_file.c_str(), &st);
   if (rc != 0)
     {
-        clog << _F("Checking \"%s\" failed with error: %s",
-                   kernel_exports_file.c_str(), strerror(errno)) << endl
-       //clog << "Checking \"" << kernel_exports_file << "\" failed: " << strerror(errno) << endl
-            << _("Ensure kernel development headers & makefiles are installed.") << endl;
+        clog << _F("Checking \"%s\" failed with error: %s\nEnsure kernel development headers & makefiles are installed",
+                   kernel_exports_file.c_str(), strerror(errno)) << endl;
        return rc;
     }
 
@@ -355,9 +351,8 @@ int parse_kernel_exports (systemtap_session &s)
     }
   if (s.verbose > 2)
     clog << _F("Parsed kernel \"%s\", ", kernel_exports_file.c_str())
-         << _NF("which contained one vmlinux export", "which contained %zu vmlinux exports",
-                s.kernel_exports.size(), s.kernel_exports.size()) << endl;
-    //clog << "Parsed kernel \"" << kernel_exports_file << "\", number of vmlinux exports: " << s.kernel_exports.size() << endl;
+         << _F(ngettext("which contained one vmlinux export", "which contained %zu vmlinux exports",
+                s.kernel_exports.size()), s.kernel_exports.size()) << endl;
 
   kef.close();
   return 0;
@@ -384,9 +379,8 @@ create_temp_dir (systemtap_session &s)
   if (! tmpdir_name)
     {
       const char* e = strerror (errno);
-      //we can't make the directory due to the error
+      //TRANSLATORS: we can't make the directory due to the error
       cerr << _F("ERROR: cannot create temporary directory (\" %s \"): %s", tmpdirt.c_str(), e) << endl;
-      //cerr << "ERROR: cannot create temporary directory (\"" << tmpdirt << "\"): " << e << endl;
       return 1;
     }
   else
@@ -394,7 +388,6 @@ create_temp_dir (systemtap_session &s)
 
   if (s.verbose>1)
     clog << _F("Created temporary directory \"%s\"", s.tmpdir.c_str()) << endl;
-    //clog << "Created temporary directory \"" << s.tmpdir << "\"" << endl;
   return 0;
 }
 
@@ -407,7 +400,6 @@ remove_temp_dir (systemtap_session &s)
         // NB: the format of this message needs to match the expectations
         // of stap-server-connect.c.
         clog << _F("Keeping temporary directory \"%s\"", s.tmpdir.c_str()) << endl;
-        //clog << "Keeping temporary directory \"" << s.tmpdir << "\"" << endl;
       else
         {
          // Ignore signals while we're deleting the temporary directory.
@@ -480,9 +472,6 @@ passes_0_4 (systemtap_session &s)
     {
       s.version ();
       clog << _F("Session arch: %s release: %s", s.architecture.c_str(), s.kernel_release.c_str()) << endl;
-      //clog << "Session arch: " << s.architecture
-           //<< " release: " << s.kernel_release
-           //<< endl;
     }
 
   // Now that no further changes to s.kernel_build_tree can occur, let's use it.
@@ -602,8 +591,6 @@ passes_0_4 (systemtap_session &s)
                   cerr 
                   << _F("usage error: tapset file '%s' cannot be run directly as a session script.",
                         globbuf.gl_pathv[j]) << endl;
-                  //cerr << "usage error: tapset file '" << globbuf.gl_pathv[j]
-                  //     << "' cannot be run directly as a session script." << endl;
                   rc ++;
                 }
 
@@ -632,9 +619,6 @@ passes_0_4 (systemtap_session &s)
             clog << _F("Searched: \" %s \", found: %zu, processed: %u",
                        dir.c_str(), globbuf.gl_pathc,
                        (next_s_library_files-prev_s_library_files)) << endl;
-            //clog << "Searched \"" << dir << "\","
-            //     << " found " << globbuf.gl_pathc 
-            //     << " processed " << (next_s_library_files-prev_s_library_files) << endl;
 
           globfree (& globbuf);
         }
index 26772fdf56886f3fda041e9276e7b10b8daae69e..13e2e6259e1a212d4877fc6bddfbf3acb60312c9 100644 (file)
 */
 
 #include "util.h"
+#include "config.h"
 #include <iostream>
 #include <string>
+#include <libintl.h>
+#include <locale.h>
 
 extern "C" {
 #include "nsscommon.h"
@@ -41,6 +44,19 @@ extern "C" {
 #include <pwd.h>
 }
 
+#if ENABLE_NLS
+#define _(string) gettext(string)
+#define _N(string, string_plural, count) \
+        ngettext((string), (string_plural), (count))
+#else
+#define _(string) (string)
+#define _N(string, string_plural, count) \
+        ( (count) == 1 ? (string) : (string_plural) )
+#endif
+#define _F(format, ...) autosprintf(_(format), __VA_ARGS__)
+#define _NF(format, format_plural, count, ...) \
+        autosprintf(_N((format), (format_plural), (count)), __VA_ARGS__)
+
 using namespace std;
 
 /* Function: int init_cert_db_path (const string &cert_db_path);
@@ -119,7 +135,7 @@ get_password (const string &fileName)
   prStatus = PR_GetFileInfo (fileName.c_str(), &fileInfo);
   if (prStatus != PR_SUCCESS || fileInfo.type != PR_FILE_FILE || fileInfo.size < 0)
     {
-      cerr << "Could not obtain information on password file " << fileName << "." << endl;
+      cerr << _("Could not obtain information on password file ") << fileName << "." << endl;
       nssError ();
       return NULL;
     }
@@ -127,7 +143,7 @@ get_password (const string &fileName)
   local_file_fd = PR_Open (fileName.c_str(), PR_RDONLY, 0);
   if (local_file_fd == NULL)
     {
-      cerr << "Could not open password file " << fileName << "." << endl;
+      cerr << _("Could not open password file ") << fileName << "." << endl;
       nssError ();
       return NULL;
     }
@@ -135,7 +151,11 @@ get_password (const string &fileName)
   password = (char*)PORT_Alloc (fileInfo.size + 1);
   if (! password)
     {
-      cerr << "Unable to allocate " << (fileInfo.size + 1) << " bytes." << endl;
+      //cerr << "Unable to allocate " << (fileInfo.size + 1) << " bytes." << endl;
+      //cerr << autosprintf(ngettext("Unable to allocate one byte", "Unable to allocate %#x bytes",
+      //            (fileInfo.size + 1)), (fileInfo.size + 1)) << endl;
+      cerr << _F(ngettext("Unable to allocate %#x byte", "Unable to allocate %#x bytes",
+                  (fileInfo.size + 1)), (fileInfo.size + 1)) << endl;
       nssError ();
       return NULL;
     }
@@ -143,7 +163,7 @@ get_password (const string &fileName)
   numBytesRead = PR_Read (local_file_fd, password, fileInfo.size);
   if (numBytesRead <= 0)
     {
-      cerr << "Error reading password file " << fileName << "." << endl;
+      cerr << _("Error reading password file ") << fileName << "." << endl;
       nssError ();
       return 0;
     }
@@ -175,14 +195,14 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
   sgn = SGN_NewContext (SEC_OID_PKCS1_SHA1_WITH_RSA_ENCRYPTION, privKey);
   if (! sgn) 
     {
-      cerr << "Could not create signing context." << endl;
+      cerr << _("Could not create signing context.") << endl;
       nssError ();
       return;
     }
   secStatus = SGN_Begin (sgn);
   if (secStatus != SECSuccess)
     {
-      cerr << "Could not initialize signing context." << endl;
+      cerr << _("Could not initialize signing context.") << endl;
       nssError ();
       return;
     }
@@ -191,7 +211,7 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
   local_file_fd = PR_Open (inputName.c_str(), PR_RDONLY, 0);
   if (local_file_fd == NULL)
     {
-      cerr << "Could not open module file " << inputName << "." << endl;
+      cerr << _("Could not open module file ") << inputName << "." << endl;
       nssError ();
       return;
     }
@@ -204,7 +224,7 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
 
       if (numBytes < 0)
        {
-         cerr << "Error reading module file " << inputName << "." << endl;
+         cerr << _("Error reading module file ") << inputName << "." << endl;
          nssError ();
          return;
        }
@@ -213,7 +233,7 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
       secStatus = SGN_Update (sgn, buffer, numBytes);
       if (secStatus != SECSuccess)
        {
-         cerr << "Error while signing module file " << inputName << "." << endl;
+         cerr << _("Error while signing module file ") << inputName << "." << endl;
          nssError ();
          return;
        }
@@ -225,7 +245,7 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
   secStatus = SGN_End (sgn, & signedData);
   if (secStatus != SECSuccess)
     {
-      cerr << "Could not complete signature of module file " << inputName << "." << endl;
+      cerr << _("Could not complete signature of module file ") << inputName << "." << endl;
       nssError ();
       return;
     }
@@ -237,7 +257,7 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
                           PR_IRUSR | PR_IWUSR | PR_IRGRP | PR_IWGRP | PR_IROTH);
   if (local_file_fd == NULL)
     {
-      cerr << "Could not open signature file " << outputName << "." << endl;
+      cerr << _("Could not open signature file ") << outputName << "." << endl;
       nssError ();
       return;
     }
@@ -245,7 +265,7 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
   numBytes = PR_Write (local_file_fd, signedData.data, signedData.len);
   if (numBytes < 0 || numBytes != signedData.len)
     {
-      cerr << "Error writing to signature file " << outputName << "." << endl;
+      cerr << _("Error writing to signature file ") << outputName << "." << endl;
       nssError ();
       return;
     }
@@ -256,6 +276,10 @@ sign_it (const string &inputName, const string &outputName, SECKEYPrivateKey *pr
 int
 main(int argc, char **argv)
 {
+  setlocale (LC_ALL, "");
+  bindtextdomain (PACKAGE, LOCALEDIR);
+  textdomain (PACKAGE);
+
   const char *nickName = "stap-server";
   string module_name;
   string cert_db_path;
@@ -267,7 +291,7 @@ main(int argc, char **argv)
   struct passwd *pwd;
 
   if (argc < 2) {
-      cerr << "Module name was not specified." << endl;
+      cerr << _("Module name was not specified.") << endl;
       return 1;
   }
   module_name = argv[1];
@@ -284,7 +308,7 @@ main(int argc, char **argv)
        if (pwd)
          stap_dir = pwd->pw_dir;
        else {
-         cerr << "Unable to determine the certificate database path." << endl;
+         cerr << _("Unable to determine the certificate database path.") << endl;
          return 1;
        }
       }
@@ -300,7 +324,7 @@ main(int argc, char **argv)
   password = get_password (cert_db_path + "/pw");
   if (! password)
     {
-      cerr << "Unable to obtain certificate database password." << endl;
+      cerr << _("Unable to obtain certificate database password.") << endl;
       return 1;
     }
 
@@ -314,7 +338,7 @@ main(int argc, char **argv)
   secStatus = NSS_Init (cert_db_path.c_str());
   if (secStatus != SECSuccess)
     {
-      cerr << "Unable to initialize nss library." << endl;
+      cerr << _("Unable to initialize nss library.") << endl;
       nssError ();
       return 1;
     }
@@ -323,8 +347,8 @@ main(int argc, char **argv)
   cert = PK11_FindCertFromNickname (nickName, password);
   if (cert == NULL)
     {
-      cerr << "Unable to find certificate with nickname " << nickName
-          << " in " << cert_db_path << "." << endl;
+      cerr << _F("Unable to find certificate with nickname %s in %s.",
+                            nickName, cert_db_path.c_str()) << endl;
       nssError ();
       return 1;
     }
@@ -332,8 +356,8 @@ main(int argc, char **argv)
   privKey = PK11_FindKeyByAnyCert (cert, password);
   if (privKey == NULL)
     {
-      cerr << "Unable to obtain private key from the certificate with nickname " << nickName
-          << " in " << cert_db_path << "." << endl;
+      cerr << _F("Unable to obtain private key from the certificate with nickname %s, in %s.",
+                    nickName, cert_db_path.c_str()) << endl;
       nssError ();
       return 1;
     }
index 473cea5e18481d42bed512a4f954655e33c5ac37..09ad17b0158395160e19bcbe2acad73fd2cd0f90 100644 (file)
@@ -8,7 +8,7 @@ subdir = po
 top_builddir = ..
 
 # These options get passed to xgettext.
-XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
+XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ --keyword=_F --keyword=_NF --keyword=_N
 
 # This is the copyright holder that gets inserted into the header of the
 # $(DOMAIN).pot file.  Set this to the copyright holder of the surrounding
index 6f67a48da1f7d70dda705518bb88adf016948bf7..97c6bd65475caa3ef263da1af9b38731ac6b263f 100644 (file)
Binary files a/po/en.gmo and b/po/en.gmo differ
index c4dd43f2cd8063649eaa6bb89e4c8829da8b40db..a72aa348ee58a5104c74366e5fe81a8d72728d3c 100644 (file)
--- a/po/en.po
+++ b/po/en.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: systemtap 1.5\n"
 "Report-Msgid-Bugs-To: systemtap@sources.redhat.com\n"
-"POT-Creation-Date: 2011-02-15 15:01-0500\n"
+"POT-Creation-Date: 2011-02-18 09:14-0500\n"
 "PO-Revision-Date: 2011-02-15 10:51-0500\n"
 "Last-Translator: Frank Ch. Eigler <fche@redhat.com>\n"
 "Language-Team: English\n"
@@ -20,7 +20,7 @@ msgstr ""
 #: buildrun.cxx:272
 #, fuzzy, c-format
 msgid ""
-"Checking \" %s \" failed: %s \n"
+"Checking \" %s \" failed: %s\n"
 "Ensure kernel development headers & makefiles are installed."
 msgstr "Ensure kernel development headers & makefiles are installed."
 
@@ -488,59 +488,63 @@ msgstr "  # locals"
 msgid "# probes"
 msgstr "# probes"
 
-#: main.cxx:301 main.cxx:338
+#: main.cxx:301
 #, c-format
 msgid "Checking \"%s\" failed with error: %s"
 msgstr "Checking \"%s\" failed with error: %s"
 
-#: main.cxx:321 main.cxx:357
+#: main.cxx:320 main.cxx:353
 #, c-format
 msgid "Parsed kernel \"%s\", "
 msgstr "Parsed kernel \"%s\", "
 
-#: main.cxx:322
-#, c-format
+#: main.cxx:321
+#, fuzzy, c-format
 msgid "containing %zu tuple"
 msgid_plural "containing %zu tuples"
 msgstr[0] "containing %zu tuple"
-msgstr[1] "containing %zu tuples"
+msgstr[1] "containing %zu tuple"
 
-#: main.cxx:341
-msgid "Ensure kernel development headers & makefiles are installed."
+#: main.cxx:336
+#, fuzzy, c-format
+msgid ""
+"Checking \"%s\" failed with error: %s\n"
+" Ensure kernel development headers & makefiles are installed"
 msgstr "Ensure kernel development headers & makefiles are installed."
 
-#: main.cxx:358
-#, c-format
+#: main.cxx:354
+#, fuzzy, c-format
 msgid "which contained one vmlinux export"
 msgid_plural "which contained %zu vmlinux exports"
 msgstr[0] "which contained one vmlinux export"
-msgstr[1] "which contained %zu vmlinux exports"
+msgstr[1] "which contained one vmlinux export"
 
-#: main.cxx:388
+#. TRANSLATORS: we can't make the directory due to the error
+#: main.cxx:383
 #, c-format
 msgid "ERROR: cannot create temporary directory (\" %s \"): %s"
 msgstr "ERROR: cannot create temporary directory (\" %s \"): %s"
 
-#: main.cxx:396
+#: main.cxx:390
 #, c-format
 msgid "Created temporary directory \"%s\""
 msgstr "Created temporary directory \"%s\""
 
-#: main.cxx:409
+#: main.cxx:402
 #, c-format
 msgid "Keeping temporary directory \"%s\""
 msgstr "Keeping temporary directory \"%s\""
 
-#: main.cxx:438
+#: main.cxx:430
 msgid "ERROR: kernel release isn't specified"
 msgstr "ERROR: kernel release isn't specified"
 
-#: main.cxx:440
+#: main.cxx:432
 #, c-format
 msgid "ERROR: kernel release isn't found in \"%s\""
 msgstr "ERROR: kernel release isn't found in \"%s\""
 
-#: main.cxx:458
+#: main.cxx:450
 msgid ""
 "WARNING: Without NSS, using a compile-server is not supported by this "
 "version of systemtap"
@@ -548,117 +552,135 @@ msgstr ""
 "WARNING: Without NSS, using a compile-server is not supported by this "
 "version of systemtap"
 
-#: main.cxx:482
+#: main.cxx:474
 #, c-format
 msgid "Session arch: %s release: %s"
 msgstr "Session arch: %s release: %s"
 
-#: main.cxx:603
+#: main.cxx:592
 #, c-format
 msgid ""
 "usage error: tapset file '%s' cannot be run directly as a session script."
 msgstr ""
 "usage error: tapset file '%s' cannot be run directly as a session script."
 
-#: main.cxx:632
+#: main.cxx:619
 #, c-format
 msgid "Searched: \" %s \", found: %zu, processed: %u"
 msgstr "Searched: \" %s \", found: %zu, processed: %u"
 
-#: main.cxx:646
+#: main.cxx:631
 msgid "# parse tree dump"
 msgstr "# parse tree dump"
 
-#: main.cxx:683
+#: main.cxx:668
 msgid "Pass 1: parse failed.  Try again with another '--vp 1' option."
 msgstr "Pass 1: parse failed.  Try again with another '--vp 1' option."
 
-#: main.cxx:716
+#: main.cxx:701
 msgid "Pass 2: analysis failed.  Try again with another '--vp 01' option."
 msgstr "Pass 2: analysis failed.  Try again with another '--vp 01' option."
 
-#: main.cxx:787
+#: main.cxx:772
 msgid "Pass 3: translation failed.  Try again with another '--vp 001' option."
 msgstr "Pass 3: translation failed.  Try again with another '--vp 001' option."
 
-#: main.cxx:824
+#: main.cxx:809
 msgid "Pass 4: compilation failed.  Try again with another '--vp 0001' option."
 msgstr ""
 "Pass 4: compilation failed.  Try again with another '--vp 0001' option."
 
-#: main.cxx:868
+#: main.cxx:853
 msgid "Pass 5: starting run."
 msgstr "Pass 5: starting run."
 
-#: main.cxx:880
+#: main.cxx:865
 msgid "Pass 5: run failed.  Try again with another '--vp 00001' option."
 msgstr "Pass 5: run failed.  Try again with another '--vp 00001' option."
 
-#: main.cxx:908
+#: main.cxx:893
 msgid "Coverage database not available without libsqlite3"
 msgstr "Coverage database not available without libsqlite3"
 
-#: modsign.cxx:131
+#: modsign.cxx:138
 msgid "Could not obtain information on password file "
 msgstr ""
 
-#: modsign.cxx:139
+#: modsign.cxx:146
 msgid "Could not open password file "
 msgstr ""
 
-#: modsign.cxx:155
+#: modsign.cxx:157
+#, c-format
+msgid "Unable to allocate %#x byte"
+msgid_plural "Unable to allocate %#x bytes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: modsign.cxx:166
 msgid "Error reading password file "
 msgstr ""
 
-#: modsign.cxx:187
+#: modsign.cxx:198
 msgid "Could not create signing context."
 msgstr ""
 
-#: modsign.cxx:194
+#: modsign.cxx:205
 msgid "Could not initialize signing context."
 msgstr ""
 
-#: modsign.cxx:203
+#: modsign.cxx:214
 msgid "Could not open module file "
 msgstr ""
 
-#: modsign.cxx:216
+#: modsign.cxx:227
 msgid "Error reading module file "
 msgstr ""
 
-#: modsign.cxx:225
+#: modsign.cxx:236
 msgid "Error while signing module file "
 msgstr ""
 
-#: modsign.cxx:237
+#: modsign.cxx:248
 msgid "Could not complete signature of module file "
 msgstr ""
 
-#: modsign.cxx:249
+#: modsign.cxx:260
 msgid "Could not open signature file "
 msgstr ""
 
-#: modsign.cxx:257
+#: modsign.cxx:268
 msgid "Error writing to signature file "
 msgstr ""
 
-#: modsign.cxx:279
+#: modsign.cxx:294
 #, fuzzy
 msgid "Module name was not specified."
 msgstr "Module name cannot be empty."
 
-#: modsign.cxx:296
+#: modsign.cxx:311
 msgid "Unable to determine the certificate database path."
 msgstr ""
 
-#: modsign.cxx:312
+#: modsign.cxx:327
 msgid "Unable to obtain certificate database password."
 msgstr ""
 
-#: modsign.cxx:326
+#: modsign.cxx:341
 msgid "Unable to initialize nss library."
 msgstr ""
 
+#: modsign.cxx:350
+#, c-format
+msgid "Unable to find certificate with nickname %s in %s."
+msgstr ""
+
+#: modsign.cxx:359
+#, c-format
+msgid ""
+"Unable to obtain private key from the certificate with nickname %s, in %s."
+msgstr ""
+
 #: parse.cxx:261
 #, fuzzy
 msgid "parse error: "
@@ -983,7 +1005,7 @@ msgstr ""
 "Warning: failed to create systemtap data driector \"%s\":%s, disablig cache "
 "support."
 
-#: session.cxx:194
+#: session.cxx:191
 #, c-format
 msgid ""
 "Warning: failed to create cache directory (\" %s \"): %s, disabling cache "
@@ -992,482 +1014,485 @@ msgstr ""
 "Warning: failed to create cache directory (\" %s \"): %s, disabling cache "
 "support."
 
-#: session.cxx:358
+#: session.cxx:352
 msgid "SystemTap translator/driver "
 msgstr "SystemTap translator/driver "
 
-#: session.cxx:359
+#: session.cxx:353
 msgid "(version "
 msgstr "(version "
 
-#: session.cxx:361
+#: session.cxx:355
 msgid "Copyright (C) 2005-2011 Red Hat, Inc. and others"
 msgstr "Copyright (C) 2005-2011 Red Hat, Inc. and others"
 
-#: session.cxx:362
+#: session.cxx:356
 msgid "This is free software; see the source for copying conditions."
 msgstr "This is free software; see the source for copying conditions."
 
-#: session.cxx:363
+#: session.cxx:357
 msgid "enabled features:"
 msgstr "enabled features:"
 
-#: session.cxx:395
+#: session.cxx:392
 msgid "Usage: stap [options] FILE         Run script in file."
 msgstr "Usage: stap [options] FILE         Run script in file."
 
-#: session.cxx:397
+#: session.cxx:394
 msgid "   or: stap [options] -            Run script on stdin."
 msgstr "   or: stap [options] -            Run script on stdin."
 
-#: session.cxx:399
+#: session.cxx:396
 msgid "   or: stap [options] -e SCRIPT    Run given script."
 msgstr "   or: stap [options] -e SCRIPT    Run given script."
 
-#: session.cxx:401
+#: session.cxx:398
 msgid "   or: stap [options] -l PROBE     List matching probes."
 msgstr "   or: stap [options] -l PROBE     List matching probes."
 
-#: session.cxx:403
+#: session.cxx:400
 msgid ""
 "   or: stap [options] -L PROBE     List matching probes and local variables."
 msgstr ""
 "   or: stap [options] -L PROBE     List matching probes and local variables."
 
-#: session.cxx:406
+#: session.cxx:403
 msgid "Options:"
 msgstr "Options:"
 
-#: session.cxx:407
+#: session.cxx:404
 msgid "   --         end of translator options, script options follow"
 msgstr "   --         end of translator options, script options follow"
 
-#: session.cxx:408
+#: session.cxx:405
 msgid "   -h --help  show help"
 msgstr "   -h --help  show help"
 
-#: session.cxx:409
+#: session.cxx:406
 #, fuzzy
 msgid "   -V --version  show version"
 msgstr "   -V         show version"
 
-#: session.cxx:410
+#: session.cxx:407
 msgid "   -p NUM     stop after pass NUM 1-5, instead of "
 msgstr "   -p NUM     stop after pass NUM 1-5, instead of "
 
-#: session.cxx:411
+#: session.cxx:408
 msgid "              (parse, elaborate, translate, compile, run)"
 msgstr "              (parse, elaborate, translate, compile, run)"
 
-#: session.cxx:412
+#: session.cxx:409
 msgid "   -v         add verbosity to all passes"
 msgstr "   -v         add verbosity to all passes"
 
-#: session.cxx:413
+#: session.cxx:410
 msgid "   --vp {N}+  add per-pass verbosity ["
 msgstr "   --vp {N}+  add per-pass verbosity ["
 
-#: session.cxx:417
+#: session.cxx:414
 msgid "]"
 msgstr "]"
 
-#: session.cxx:418
+#: session.cxx:415
 msgid "   -k         keep temporary directory"
 msgstr "   -k         keep temporary directory"
 
-#: session.cxx:419
+#: session.cxx:416 session.cxx:417 session.cxx:418 session.cxx:419
+#: session.cxx:421 session.cxx:422
+msgid " [set]"
+msgstr " [set]"
+
+#: session.cxx:416
 #, c-format
 msgid "   -u         unoptimized translation %s"
 msgstr "   -u         unoptimized translation %s"
 
-#: session.cxx:419 session.cxx:421 session.cxx:422 session.cxx:423
-#: session.cxx:425 session.cxx:426
-msgid " [set]"
-msgstr " [set]"
-
-#: session.cxx:421
+#: session.cxx:417
 #, c-format
 msgid "   -w         suppress warnings %s"
 msgstr "   -w         suppress warnings %s"
 
-#: session.cxx:422
+#: session.cxx:418
 #, c-format
 msgid "   -W         turn warnings into errors %s"
 msgstr "   -W         turn warnings into errors %s"
 
-#: session.cxx:423
+#: session.cxx:419
 #, c-format
 msgid "   -g         guru mode %s"
 msgstr "   -g         guru mode %s"
 
-#: session.cxx:424
+#: session.cxx:420
 #, c-format
 msgid "   -P         prologue-searching for function probes %s"
 msgstr "   -P         prologue-searching for function probes %s"
 
-#: session.cxx:426
+#: session.cxx:422
 #, c-format
 msgid "   -b         bulk (percpu file) mode %s"
 msgstr "   -b         bulk (percpu file) mode %s"
 
-#: session.cxx:427
+#: session.cxx:423
 #, c-format
 msgid "   -s NUM     buffer size in megabytes, instead of %d"
 msgstr "   -s NUM     buffer size in megabytes, instead of %d"
 
-#: session.cxx:428
+#: session.cxx:424
 msgid "   -I DIR     look in DIR for additional .stp script files"
 msgstr "   -I DIR     look in DIR for additional .stp script files"
 
-#: session.cxx:432 session.cxx:458
+#: session.cxx:428 session.cxx:454
 msgid ", in addition to"
 msgstr ", in addition to"
 
-#: session.cxx:434 session.cxx:440 session.cxx:443 session.cxx:446
-#: session.cxx:462
+#: session.cxx:430 session.cxx:436 session.cxx:439 session.cxx:442
+#: session.cxx:458
 #, c-format
 msgid "              %s"
 msgstr "              %s"
 
-#: session.cxx:436
+#: session.cxx:432
 msgid "   -D NM=VAL  emit macro definition into generated C code"
 msgstr "   -D NM=VAL  emit macro definition into generated C code"
 
-#: session.cxx:437
+#: session.cxx:433
 msgid "   -B NM=VAL  pass option to kbuild make"
 msgstr "   -B NM=VAL  pass option to kbuild make"
 
-#: session.cxx:438
+#: session.cxx:434
 msgid "   -G VAR=VAL set global variable to value"
 msgstr "   -G VAR=VAL set global variable to value"
 
-#: session.cxx:439
+#: session.cxx:435
 msgid "   -R DIR     look in DIR for runtime, instead of"
 msgstr "   -R DIR     look in DIR for runtime, instead of"
 
-#: session.cxx:441
+#: session.cxx:437
 msgid "   -r DIR     cross-compile to kernel with given build tree; or else"
 msgstr "   -r DIR     cross-compile to kernel with given build tree; or else"
 
-#: session.cxx:442
+#: session.cxx:438
 msgid ""
 "   -r RELEASE cross-compile to kernel /lib/modules/RELEASE/build, instead of"
 msgstr ""
 "   -r RELEASE cross-compile to kernel /lib/modules/RELEASE/build, instead of"
 
-#: session.cxx:444
+#: session.cxx:440
 #, c-format
 msgid "   -a ARCH    cross-compile to given architecture, instead of %s"
 msgstr "   -a ARCH    cross-compile to given architecture, instead of %s"
 
-#: session.cxx:445
+#: session.cxx:441
 msgid "   -m MODULE  set probe module name, instead of "
 msgstr "   -m MODULE  set probe module name, instead of "
 
-#: session.cxx:447
+#: session.cxx:443
 msgid ""
 "   -o FILE    send script output to file, instead of stdout. This supports"
 msgstr ""
 "   -o FILE    send script output to file, instead of stdout. This supports"
 
-#: session.cxx:448
+#: session.cxx:444
 msgid "              strftime(3) formats for FILE"
 msgstr "              strftime(3) formats for FILE"
 
-#: session.cxx:449
+#: session.cxx:445
 msgid "   -c CMD     start the probes, run CMD, and exit when it finishes"
 msgstr "   -c CMD     start the probes, run CMD, and exit when it finishes"
 
-#: session.cxx:450
+#: session.cxx:446
 msgid "   -x PID     sets target() to PID"
 msgstr "   -x PID     sets target() to PID"
 
-#: session.cxx:451
+#: session.cxx:447
 msgid "   -F         run as on-file flight recorder with -o."
 msgstr "   -F         run as on-file flight recorder with -o."
 
-#: session.cxx:452
+#: session.cxx:448
 msgid "              run as on-memory flight recorder without -o."
 msgstr "              run as on-memory flight recorder without -o."
 
-#: session.cxx:453
+#: session.cxx:449
 msgid "   -S size[,n] set maximum of the size and the number of files."
 msgstr "   -S size[,n] set maximum of the size and the number of files."
 
-#: session.cxx:454
+#: session.cxx:450
 msgid "   -d OBJECT  add unwind/symbol data for OBJECT file"
 msgstr "   -d OBJECT  add unwind/symbol data for OBJECT file"
 
-#: session.cxx:465
+#: session.cxx:461
 msgid "   --ldd      add unwind/symbol data for all referenced OBJECT files."
 msgstr "   --ldd      add unwind/symbol data for all referenced OBJECT files."
 
-#: session.cxx:466
+#: session.cxx:462
 msgid "   --all-modules"
 msgstr "   --all-modules"
 
-#: session.cxx:467
+#: session.cxx:463
 msgid "              add unwind/symbol data for all loaded kernel objects."
 msgstr "              add unwind/symbol data for all loaded kernel objects."
 
-#: session.cxx:468
+#: session.cxx:464
 msgid "   -t         collect probe timing information"
 msgstr "   -t         collect probe timing information"
 
-#: session.cxx:470
+#: session.cxx:466
 msgid "   -q         generate information on tapset coverage"
 msgstr "   -q         generate information on tapset coverage"
 
-#: session.cxx:472
+#: session.cxx:468
 msgid "   --unprivileged"
 msgstr "   --unprivileged"
 
-#: session.cxx:473
+#: session.cxx:469
 msgid ""
 "              restrict usage to features available to unprivileged users"
 msgstr ""
 "              restrict usage to features available to unprivileged users"
 
-#: session.cxx:481
+#: session.cxx:477
 msgid "   --compatible=VERSION"
 msgstr "   --compatible=VERSION"
 
-#: session.cxx:482
+#: session.cxx:478
 msgid ""
 "              suppress incompatible language/tapset changes beyond VERSION,"
 msgstr ""
 "              suppress incompatible language/tapset changes beyond VERSION,"
 
-#: session.cxx:483
+#: session.cxx:479
 #, c-format
 msgid "              instead of %s"
 msgstr "              instead of %s"
 
-#: session.cxx:484
+#: session.cxx:480
 msgid "   --check-version"
 msgstr "   --check-version"
 
-#: session.cxx:485
+#: session.cxx:481
 msgid "              displays warnings where a syntax element may be "
 msgstr "              displays warnings where a syntax element may be "
 
-#: session.cxx:486
+#: session.cxx:482
 msgid "              version dependent"
 msgstr "              version dependent"
 
-#: session.cxx:487
+#: session.cxx:483
 msgid "   --skip-badvars"
 msgstr "   --skip-badvars"
 
-#: session.cxx:488
+#: session.cxx:484
 msgid "              substitute zero for bad context $variables"
 msgstr "              substitute zero for bad context $variables"
 
-#: session.cxx:489
+#: session.cxx:485
 msgid "   --use-server[=SERVER-SPEC]"
 msgstr "   --use-server[=SERVER-SPEC]"
 
-#: session.cxx:490
+#: session.cxx:486
 msgid "              specify systemtap compile-servers"
 msgstr "              specify systemtap compile-servers"
 
-#: session.cxx:491
+#: session.cxx:487
 msgid "   --list-servers[=PROPERTIES]"
 msgstr "   --list-servers[=PROPERTIES]"
 
-#: session.cxx:492
+#: session.cxx:488
 msgid "              report on the status of the specified compile-servers"
 msgstr "              report on the status of the specified compile-servers"
 
-#: session.cxx:494
+#: session.cxx:490
 msgid "   --trust-servers[=TRUST-SPEC]"
 msgstr "   --trust-servers[=TRUST-SPEC]"
 
-#: session.cxx:495
+#: session.cxx:491
 msgid "              add/revoke trust of specified compile-servers"
 msgstr "              add/revoke trust of specified compile-servers"
 
-#: session.cxx:496
+#: session.cxx:492
 msgid "   --use-server-on-error[=yes/no]"
 msgstr "   --use-server-on-error[=yes/no]"
 
-#: session.cxx:497
+#: session.cxx:493
 msgid ""
 "              retry compilation using a compile server upon compilation error"
 msgstr ""
 "              retry compilation using a compile server upon compilation error"
 
-#: session.cxx:499
+#: session.cxx:495
 msgid "   --remote=HOSTNAME"
 msgstr "   --remote=HOSTNAME"
 
-#: session.cxx:500
+#: session.cxx:496
 msgid "              run pass 5 on the specified ssh host (EXPERIMENTAL)"
 msgstr "              run pass 5 on the specified ssh host (EXPERIMENTAL)"
 
-#: session.cxx:628
+#: session.cxx:624
 msgid "Invalid pass number (should be 1-5)."
 msgstr "Invalid pass number (should be 1-5)."
 
-#: session.cxx:633
+#: session.cxx:629
 msgid "Listing (-l) mode implies pass 2."
 msgstr "Listing (-l) mode implies pass 2."
 
-#: session.cxx:670 session.cxx:833
+#: session.cxx:666 session.cxx:829
 msgid "Only one script can be given on the command line."
 msgstr "Only one script can be given on the command line."
 
-#: session.cxx:686
+#: session.cxx:682
 msgid "ERROR: -R invalid with --client-options"
 msgstr "ERROR: -R invalid with --client-options"
 
-#: session.cxx:702 session.cxx:720
+#: session.cxx:698 session.cxx:716
 #, c-format
 msgid "Truncating module name to '%s'"
 msgstr "Truncating module name to '%s'"
 
-#: session.cxx:708
+#: session.cxx:704
 msgid "Module name cannot be empty."
 msgstr "Module name cannot be empty."
 
-#: session.cxx:771
+#: session.cxx:767
 msgid "Invalid buffer size (should be 1-4095)."
 msgstr "Invalid buffer size (should be 1-4095)."
 
-#: session.cxx:784
+#: session.cxx:780
 msgid "Empty CMD string invalid."
 msgstr "Empty CMD string invalid."
 
-#: session.cxx:793
+#: session.cxx:789
 msgid "Invalid target process ID number."
 msgstr "Invalid target process ID number."
 
-#: session.cxx:814
+#: session.cxx:810
 msgid "ERROR: -q invalid with --client-options"
 msgstr "ERROR: -q invalid with --client-options"
 
-#: session.cxx:848
+#: session.cxx:844
 msgid "ERROR: -B invalid with --client-options"
 msgstr "ERROR: -B invalid with --client-options"
 
-#: session.cxx:869
+#: session.cxx:865
 msgid "You can't specify multiple --kmap options."
 msgstr "You can't specify multiple --kmap options."
 
-#: session.cxx:900
+#: session.cxx:896
 msgid "Invalid --vp argument: it takes 1 to 5 digits."
 msgstr "Invalid --vp argument: it takes 1 to 5 digits."
 
-#: session.cxx:973
+#: session.cxx:969
 msgid "ERROR: --disable-cache is invalid with --client-options"
 msgstr "ERROR: --disable-cache is invalid with --client-options"
 
-#: session.cxx:980
+#: session.cxx:976
 msgid "ERROR: --poison-cache is invalid with --client-options"
 msgstr "ERROR: --poison-cache is invalid with --client-options"
 
-#: session.cxx:987
+#: session.cxx:983
 msgid "ERROR: --clean-cache is invalid with --client-options"
 msgstr "ERROR: --clean-cache is invalid with --client-options"
 
-#: session.cxx:1000
+#: session.cxx:996
 msgid "ERROR: --ldd is invalid with --client-options"
 msgstr "ERROR: --ldd is invalid with --client-options"
 
-#: session.cxx:1009
+#: session.cxx:1005
 msgid "ERROR: --all-modules is invalid with --client-options"
 msgstr "ERROR: --all-modules is invalid with --client-options"
 
-#: session.cxx:1017
+#: session.cxx:1013
 msgid "ERROR: --remote is invalid with --client-options"
 msgstr "ERROR: --remote is invalid with --client-options"
 
-#: session.cxx:1031
+#: session.cxx:1027
 #, c-format
 msgid "Unhandled long argument id %d"
 msgstr "Unhandled long argument id %d"
 
-#: session.cxx:1045
+#: session.cxx:1041
 #, c-format
 msgid "Unhandled argument code %d"
 msgstr "Unhandled argument code %d"
 
-#: session.cxx:1087
+#: session.cxx:1083
 msgid "A script must be specified."
 msgstr "A script must be specified."
 
-#: session.cxx:1094
+#: session.cxx:1090
 msgid "WARNING: --client-options is not supported by this version of systemtap"
 msgstr ""
 "WARNING: --client-options is not supported by this version of systemtap"
 
-#: session.cxx:1100
+#: session.cxx:1096
 msgid "WARNING: --trust-servers is not supported by this version of systemtap"
 msgstr "WARNING: --trust-servers is not supported by this version of systemtap"
 
-#: session.cxx:1107
+#: session.cxx:1103
 msgid "Warning: Ignoring --use-server due to the use of -R"
 msgstr "Warning: Ignoring --use-server due to the use of -R"
 
-#: session.cxx:1131
+#: session.cxx:1127
 msgid "Using --unprivileged for member of the group stapusr"
 msgstr "Using --unprivileged for member of the group stapusr"
 
-#: session.cxx:1138
+#: session.cxx:1134
 msgid "Using --use-server for member of the group stapusr"
 msgstr "Using --use-server for member of the group stapusr"
 
-#: session.cxx:1147
+#: session.cxx:1143
 #, c-format
 msgid "You can't specify %s when --unprivileged is specified."
 msgstr "You can't specify %s when --unprivileged is specified."
 
-#: session.cxx:1153
+#: session.cxx:1149
 msgid "You can't specify -c and -x options together."
 msgstr "You can't specify -c and -x options together."
 
-#: session.cxx:1158
+#: session.cxx:1154
 msgid "You can't specify -g and --unprivileged together."
 msgstr "You can't specify -g and --unprivileged together."
 
-#: session.cxx:1165
+#: session.cxx:1161
 msgid "You can't specify --kelf and --kmap together."
 msgstr "You can't specify --kelf and --kmap together."
 
-#: session.cxx:1178
+#: session.cxx:1174
 msgid ""
 "WARNING: kernel release/architecture mismatch with host forces last-pass 4."
 msgstr ""
 "WARNING: kernel release/architecture mismatch with host forces last-pass 4."
 
-#: session.cxx:1253
+#: session.cxx:1249
 #, c-format
 msgid "Missing %s"
 msgstr "Missing %s"
 
-#: session.cxx:1275
+#: session.cxx:1271
 #, c-format
 msgid "Located kernel source tree (COPYING) at '%s'"
 msgstr "Located kernel source tree (COPYING) at '%s'"
 
-#: session.cxx:1320
+#: session.cxx:1313
 #, c-format
 msgid "alias component %s contains illegal parameter"
 msgstr "alias component %s contains illegal parameter"
 
-#: session.cxx:1332
+#: session.cxx:1325
 msgid " while registering probe alias "
 msgstr " while registering probe alias "
 
-#: session.cxx:1385
+#: session.cxx:1378
 #, c-format
 msgid "semantic error: %s"
 msgstr "semantic error: %s"
 
-#: session.cxx:1464
+#: session.cxx:1457
 msgid "WARNING: "
 msgstr "WARNING: "
 
 #, fuzzy
 #~ msgid " while resolving probe point "
 #~ msgstr " while registering probe alias "
+
+#~ msgid "Ensure kernel development headers & makefiles are installed."
+#~ msgstr "Ensure kernel development headers & makefiles are installed."
index 715174870603d8c920ef73242e4d809cf0038ebb..b598fbbdde62e67fb8826ce06559b7c88d8294d6 100644 (file)
Binary files a/po/pl.gmo and b/po/pl.gmo differ
index f8e409498c2abfd0ee0555c12cad1a6a4aac4b88..b7d670740511239d76464ef9e7884b7d48d06e6d 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: systemtap 1.5\n"
 "Report-Msgid-Bugs-To: systemtap@sources.redhat.com\n"
-"POT-Creation-Date: 2011-02-15 15:01-0500\n"
+"POT-Creation-Date: 2011-02-18 09:14-0500\n"
 "PO-Revision-Date: \n"
 "Last-Translator: PrzemysÅ‚aw PaweÅ‚czyk <przemyslaw@pawelczyk.it>\n"
 "Language-Team: Polish\n"
@@ -22,7 +22,7 @@ msgstr ""
 #: buildrun.cxx:272
 #, c-format
 msgid ""
-"Checking \" %s \" failed: %s \n"
+"Checking \" %s \" failed: %s\n"
 "Ensure kernel development headers & makefiles are installed."
 msgstr ""
 
@@ -479,172 +479,197 @@ msgstr ""
 msgid "# probes"
 msgstr ""
 
-#: main.cxx:301 main.cxx:338
+#: main.cxx:301
 #, c-format
 msgid "Checking \"%s\" failed with error: %s"
 msgstr ""
 
-#: main.cxx:321 main.cxx:357
+#: main.cxx:320 main.cxx:353
 #, c-format
 msgid "Parsed kernel \"%s\", "
 msgstr ""
 
-#: main.cxx:322
+#: main.cxx:321
 #, c-format
 msgid "containing %zu tuple"
 msgid_plural "containing %zu tuples"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
-#: main.cxx:341
-msgid "Ensure kernel development headers & makefiles are installed."
+#: main.cxx:336
+#, c-format
+msgid ""
+"Checking \"%s\" failed with error: %s\n"
+" Ensure kernel development headers & makefiles are installed"
 msgstr ""
 
-#: main.cxx:358
+#: main.cxx:354
 #, c-format
 msgid "which contained one vmlinux export"
 msgid_plural "which contained %zu vmlinux exports"
 msgstr[0] ""
 msgstr[1] ""
+msgstr[2] ""
 
-#: main.cxx:388
+#. TRANSLATORS: we can't make the directory due to the error
+#: main.cxx:383
 #, c-format
 msgid "ERROR: cannot create temporary directory (\" %s \"): %s"
 msgstr ""
 
-#: main.cxx:396
+#: main.cxx:390
 #, c-format
 msgid "Created temporary directory \"%s\""
 msgstr ""
 
-#: main.cxx:409
+#: main.cxx:402
 #, c-format
 msgid "Keeping temporary directory \"%s\""
 msgstr ""
 
-#: main.cxx:438
+#: main.cxx:430
 msgid "ERROR: kernel release isn't specified"
 msgstr ""
 
-#: main.cxx:440
+#: main.cxx:432
 #, c-format
 msgid "ERROR: kernel release isn't found in \"%s\""
 msgstr ""
 
-#: main.cxx:458
+#: main.cxx:450
 msgid ""
 "WARNING: Without NSS, using a compile-server is not supported by this "
 "version of systemtap"
 msgstr ""
 
-#: main.cxx:482
+#: main.cxx:474
 #, c-format
 msgid "Session arch: %s release: %s"
 msgstr ""
 
-#: main.cxx:603
+#: main.cxx:592
 #, c-format
 msgid ""
 "usage error: tapset file '%s' cannot be run directly as a session script."
 msgstr ""
 
-#: main.cxx:632
+#: main.cxx:619
 #, c-format
 msgid "Searched: \" %s \", found: %zu, processed: %u"
 msgstr ""
 
-#: main.cxx:646
+#: main.cxx:631
 msgid "# parse tree dump"
 msgstr ""
 
-#: main.cxx:683
+#: main.cxx:668
 msgid "Pass 1: parse failed.  Try again with another '--vp 1' option."
 msgstr ""
 
-#: main.cxx:716
+#: main.cxx:701
 msgid "Pass 2: analysis failed.  Try again with another '--vp 01' option."
 msgstr ""
 
-#: main.cxx:787
+#: main.cxx:772
 msgid "Pass 3: translation failed.  Try again with another '--vp 001' option."
 msgstr ""
 
-#: main.cxx:824
+#: main.cxx:809
 msgid "Pass 4: compilation failed.  Try again with another '--vp 0001' option."
 msgstr ""
 
-#: main.cxx:868
+#: main.cxx:853
 msgid "Pass 5: starting run."
 msgstr ""
 
-#: main.cxx:880
+#: main.cxx:865
 msgid "Pass 5: run failed.  Try again with another '--vp 00001' option."
 msgstr ""
 
-#: main.cxx:908
+#: main.cxx:893
 msgid "Coverage database not available without libsqlite3"
 msgstr ""
 
-#: modsign.cxx:131
+#: modsign.cxx:138
 msgid "Could not obtain information on password file "
 msgstr ""
 
-#: modsign.cxx:139
+#: modsign.cxx:146
 msgid "Could not open password file "
 msgstr ""
 
-#: modsign.cxx:155
+#: modsign.cxx:157
+#, c-format
+msgid "Unable to allocate %#x byte"
+msgid_plural "Unable to allocate %#x bytes"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
+
+#: modsign.cxx:166
 msgid "Error reading password file "
 msgstr ""
 
-#: modsign.cxx:187
+#: modsign.cxx:198
 msgid "Could not create signing context."
 msgstr ""
 
-#: modsign.cxx:194
+#: modsign.cxx:205
 msgid "Could not initialize signing context."
 msgstr ""
 
-#: modsign.cxx:203
+#: modsign.cxx:214
 msgid "Could not open module file "
 msgstr ""
 
-#: modsign.cxx:216
+#: modsign.cxx:227
 msgid "Error reading module file "
 msgstr ""
 
-#: modsign.cxx:225
+#: modsign.cxx:236
 msgid "Error while signing module file "
 msgstr ""
 
-#: modsign.cxx:237
+#: modsign.cxx:248
 msgid "Could not complete signature of module file "
 msgstr ""
 
-#: modsign.cxx:249
+#: modsign.cxx:260
 msgid "Could not open signature file "
 msgstr ""
 
-#: modsign.cxx:257
+#: modsign.cxx:268
 msgid "Error writing to signature file "
 msgstr ""
 
-#: modsign.cxx:279
+#: modsign.cxx:294
 msgid "Module name was not specified."
 msgstr ""
 
-#: modsign.cxx:296
+#: modsign.cxx:311
 msgid "Unable to determine the certificate database path."
 msgstr ""
 
-#: modsign.cxx:312
+#: modsign.cxx:327
 msgid "Unable to obtain certificate database password."
 msgstr ""
 
-#: modsign.cxx:326
+#: modsign.cxx:341
 msgid "Unable to initialize nss library."
 msgstr ""
 
+#: modsign.cxx:350
+#, c-format
+msgid "Unable to find certificate with nickname %s in %s."
+msgstr ""
+
+#: modsign.cxx:359
+#, c-format
+msgid ""
+"Unable to obtain private key from the certificate with nickname %s, in %s."
+msgstr ""
+
 #: parse.cxx:261
 msgid "parse error: "
 msgstr ""
@@ -941,477 +966,477 @@ msgid ""
 "cache support."
 msgstr ""
 
-#: session.cxx:194
+#: session.cxx:191
 #, c-format
 msgid ""
 "Warning: failed to create cache directory (\" %s \"): %s, disabling cache "
 "support."
 msgstr ""
 
-#: session.cxx:358
+#: session.cxx:352
 msgid "SystemTap translator/driver "
 msgstr ""
 
-#: session.cxx:359
+#: session.cxx:353
 msgid "(version "
 msgstr "(wersja "
 
-#: session.cxx:361
+#: session.cxx:355
 msgid "Copyright (C) 2005-2011 Red Hat, Inc. and others"
 msgstr ""
 
-#: session.cxx:362
+#: session.cxx:356
 msgid "This is free software; see the source for copying conditions."
 msgstr ""
 "To oprogramowanie jest darmowe; warunki kopiowania sÄ… opisane w ÅºródÅ‚ach."
 
-#: session.cxx:363
+#: session.cxx:357
 msgid "enabled features:"
 msgstr ""
 
-#: session.cxx:395
+#: session.cxx:392
 msgid "Usage: stap [options] FILE         Run script in file."
 msgstr ""
 
-#: session.cxx:397
+#: session.cxx:394
 msgid "   or: stap [options] -            Run script on stdin."
 msgstr ""
 
-#: session.cxx:399
+#: session.cxx:396
 msgid "   or: stap [options] -e SCRIPT    Run given script."
 msgstr ""
 
-#: session.cxx:401
+#: session.cxx:398
 msgid "   or: stap [options] -l PROBE     List matching probes."
 msgstr ""
 
-#: session.cxx:403
+#: session.cxx:400
 msgid ""
 "   or: stap [options] -L PROBE     List matching probes and local variables."
 msgstr ""
 
-#: session.cxx:406
+#: session.cxx:403
 msgid "Options:"
 msgstr ""
 
-#: session.cxx:407
+#: session.cxx:404
 msgid "   --         end of translator options, script options follow"
 msgstr ""
 
-#: session.cxx:408
+#: session.cxx:405
 msgid "   -h --help  show help"
 msgstr ""
 
-#: session.cxx:409
+#: session.cxx:406
 msgid "   -V --version  show version"
 msgstr ""
 
-#: session.cxx:410
+#: session.cxx:407
 msgid "   -p NUM     stop after pass NUM 1-5, instead of "
 msgstr ""
 
-#: session.cxx:411
+#: session.cxx:408
 msgid "              (parse, elaborate, translate, compile, run)"
 msgstr ""
 
-#: session.cxx:412
+#: session.cxx:409
 msgid "   -v         add verbosity to all passes"
 msgstr ""
 
-#: session.cxx:413
+#: session.cxx:410
 msgid "   --vp {N}+  add per-pass verbosity ["
 msgstr ""
 
-#: session.cxx:417
+#: session.cxx:414
 msgid "]"
 msgstr ""
 
-#: session.cxx:418
+#: session.cxx:415
 msgid "   -k         keep temporary directory"
 msgstr ""
 
-#: session.cxx:419
-#, c-format
-msgid "   -u         unoptimized translation %s"
+#: session.cxx:416 session.cxx:417 session.cxx:418 session.cxx:419
+#: session.cxx:421 session.cxx:422
+msgid " [set]"
 msgstr ""
 
-#: session.cxx:419 session.cxx:421 session.cxx:422 session.cxx:423
-#: session.cxx:425 session.cxx:426
-msgid " [set]"
+#: session.cxx:416
+#, c-format
+msgid "   -u         unoptimized translation %s"
 msgstr ""
 
-#: session.cxx:421
+#: session.cxx:417
 #, c-format
 msgid "   -w         suppress warnings %s"
 msgstr ""
 
-#: session.cxx:422
+#: session.cxx:418
 #, c-format
 msgid "   -W         turn warnings into errors %s"
 msgstr ""
 
-#: session.cxx:423
+#: session.cxx:419
 #, c-format
 msgid "   -g         guru mode %s"
 msgstr ""
 
-#: session.cxx:424
+#: session.cxx:420
 #, c-format
 msgid "   -P         prologue-searching for function probes %s"
 msgstr ""
 
-#: session.cxx:426
+#: session.cxx:422
 #, c-format
 msgid "   -b         bulk (percpu file) mode %s"
 msgstr ""
 
-#: session.cxx:427
+#: session.cxx:423
 #, c-format
 msgid "   -s NUM     buffer size in megabytes, instead of %d"
 msgstr ""
 
-#: session.cxx:428
+#: session.cxx:424
 msgid "   -I DIR     look in DIR for additional .stp script files"
 msgstr ""
 
-#: session.cxx:432 session.cxx:458
+#: session.cxx:428 session.cxx:454
 msgid ", in addition to"
 msgstr ""
 
-#: session.cxx:434 session.cxx:440 session.cxx:443 session.cxx:446
-#: session.cxx:462
+#: session.cxx:430 session.cxx:436 session.cxx:439 session.cxx:442
+#: session.cxx:458
 #, c-format
 msgid "              %s"
 msgstr ""
 
-#: session.cxx:436
+#: session.cxx:432
 msgid "   -D NM=VAL  emit macro definition into generated C code"
 msgstr ""
 
-#: session.cxx:437
+#: session.cxx:433
 msgid "   -B NM=VAL  pass option to kbuild make"
 msgstr ""
 
-#: session.cxx:438
+#: session.cxx:434
 msgid "   -G VAR=VAL set global variable to value"
 msgstr ""
 
-#: session.cxx:439
+#: session.cxx:435
 msgid "   -R DIR     look in DIR for runtime, instead of"
 msgstr ""
 
-#: session.cxx:441
+#: session.cxx:437
 msgid "   -r DIR     cross-compile to kernel with given build tree; or else"
 msgstr ""
 
-#: session.cxx:442
+#: session.cxx:438
 msgid ""
 "   -r RELEASE cross-compile to kernel /lib/modules/RELEASE/build, instead of"
 msgstr ""
 
-#: session.cxx:444
+#: session.cxx:440
 #, c-format
 msgid "   -a ARCH    cross-compile to given architecture, instead of %s"
 msgstr ""
 
-#: session.cxx:445
+#: session.cxx:441
 msgid "   -m MODULE  set probe module name, instead of "
 msgstr ""
 
-#: session.cxx:447
+#: session.cxx:443
 msgid ""
 "   -o FILE    send script output to file, instead of stdout. This supports"
 msgstr ""
 
-#: session.cxx:448
+#: session.cxx:444
 msgid "              strftime(3) formats for FILE"
 msgstr ""
 
-#: session.cxx:449
+#: session.cxx:445
 msgid "   -c CMD     start the probes, run CMD, and exit when it finishes"
 msgstr ""
 
-#: session.cxx:450
+#: session.cxx:446
 msgid "   -x PID     sets target() to PID"
 msgstr ""
 
-#: session.cxx:451
+#: session.cxx:447
 msgid "   -F         run as on-file flight recorder with -o."
 msgstr ""
 
-#: session.cxx:452
+#: session.cxx:448
 msgid "              run as on-memory flight recorder without -o."
 msgstr ""
 
-#: session.cxx:453
+#: session.cxx:449
 msgid "   -S size[,n] set maximum of the size and the number of files."
 msgstr ""
 
-#: session.cxx:454
+#: session.cxx:450
 msgid "   -d OBJECT  add unwind/symbol data for OBJECT file"
 msgstr ""
 
-#: session.cxx:465
+#: session.cxx:461
 msgid "   --ldd      add unwind/symbol data for all referenced OBJECT files."
 msgstr ""
 
-#: session.cxx:466
+#: session.cxx:462
 msgid "   --all-modules"
 msgstr ""
 
-#: session.cxx:467
+#: session.cxx:463
 msgid "              add unwind/symbol data for all loaded kernel objects."
 msgstr ""
 
-#: session.cxx:468
+#: session.cxx:464
 msgid "   -t         collect probe timing information"
 msgstr ""
 
-#: session.cxx:470
+#: session.cxx:466
 msgid "   -q         generate information on tapset coverage"
 msgstr ""
 
-#: session.cxx:472
+#: session.cxx:468
 msgid "   --unprivileged"
 msgstr ""
 
-#: session.cxx:473
+#: session.cxx:469
 msgid ""
 "              restrict usage to features available to unprivileged users"
 msgstr ""
 
-#: session.cxx:481
+#: session.cxx:477
 msgid "   --compatible=VERSION"
 msgstr ""
 
-#: session.cxx:482
+#: session.cxx:478
 msgid ""
 "              suppress incompatible language/tapset changes beyond VERSION,"
 msgstr ""
 
-#: session.cxx:483
+#: session.cxx:479
 #, c-format
 msgid "              instead of %s"
 msgstr ""
 
-#: session.cxx:484
+#: session.cxx:480
 msgid "   --check-version"
 msgstr ""
 
-#: session.cxx:485
+#: session.cxx:481
 msgid "              displays warnings where a syntax element may be "
 msgstr ""
 
-#: session.cxx:486
+#: session.cxx:482
 msgid "              version dependent"
 msgstr ""
 
-#: session.cxx:487
+#: session.cxx:483
 msgid "   --skip-badvars"
 msgstr ""
 
-#: session.cxx:488
+#: session.cxx:484
 msgid "              substitute zero for bad context $variables"
 msgstr ""
 
-#: session.cxx:489
+#: session.cxx:485
 msgid "   --use-server[=SERVER-SPEC]"
 msgstr ""
 
-#: session.cxx:490
+#: session.cxx:486
 msgid "              specify systemtap compile-servers"
 msgstr ""
 
-#: session.cxx:491
+#: session.cxx:487
 msgid "   --list-servers[=PROPERTIES]"
 msgstr ""
 
-#: session.cxx:492
+#: session.cxx:488
 msgid "              report on the status of the specified compile-servers"
 msgstr ""
 
-#: session.cxx:494
+#: session.cxx:490
 msgid "   --trust-servers[=TRUST-SPEC]"
 msgstr ""
 
-#: session.cxx:495
+#: session.cxx:491
 msgid "              add/revoke trust of specified compile-servers"
 msgstr ""
 
-#: session.cxx:496
+#: session.cxx:492
 msgid "   --use-server-on-error[=yes/no]"
 msgstr ""
 
-#: session.cxx:497
+#: session.cxx:493
 msgid ""
 "              retry compilation using a compile server upon compilation error"
 msgstr ""
 
-#: session.cxx:499
+#: session.cxx:495
 msgid "   --remote=HOSTNAME"
 msgstr ""
 
-#: session.cxx:500
+#: session.cxx:496
 msgid "              run pass 5 on the specified ssh host (EXPERIMENTAL)"
 msgstr ""
 
-#: session.cxx:628
+#: session.cxx:624
 msgid "Invalid pass number (should be 1-5)."
 msgstr ""
 
-#: session.cxx:633
+#: session.cxx:629
 msgid "Listing (-l) mode implies pass 2."
 msgstr ""
 
-#: session.cxx:670 session.cxx:833
+#: session.cxx:666 session.cxx:829
 msgid "Only one script can be given on the command line."
 msgstr ""
 
-#: session.cxx:686
+#: session.cxx:682
 msgid "ERROR: -R invalid with --client-options"
 msgstr ""
 
-#: session.cxx:702 session.cxx:720
+#: session.cxx:698 session.cxx:716
 #, c-format
 msgid "Truncating module name to '%s'"
 msgstr ""
 
-#: session.cxx:708
+#: session.cxx:704
 msgid "Module name cannot be empty."
 msgstr ""
 
-#: session.cxx:771
+#: session.cxx:767
 msgid "Invalid buffer size (should be 1-4095)."
 msgstr ""
 
-#: session.cxx:784
+#: session.cxx:780
 msgid "Empty CMD string invalid."
 msgstr ""
 
-#: session.cxx:793
+#: session.cxx:789
 msgid "Invalid target process ID number."
 msgstr ""
 
-#: session.cxx:814
+#: session.cxx:810
 msgid "ERROR: -q invalid with --client-options"
 msgstr ""
 
-#: session.cxx:848
+#: session.cxx:844
 msgid "ERROR: -B invalid with --client-options"
 msgstr ""
 
-#: session.cxx:869
+#: session.cxx:865
 msgid "You can't specify multiple --kmap options."
 msgstr ""
 
-#: session.cxx:900
+#: session.cxx:896
 msgid "Invalid --vp argument: it takes 1 to 5 digits."
 msgstr ""
 
-#: session.cxx:973
+#: session.cxx:969
 msgid "ERROR: --disable-cache is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:980
+#: session.cxx:976
 msgid "ERROR: --poison-cache is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:987
+#: session.cxx:983
 msgid "ERROR: --clean-cache is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1000
+#: session.cxx:996
 msgid "ERROR: --ldd is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1009
+#: session.cxx:1005
 msgid "ERROR: --all-modules is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1017
+#: session.cxx:1013
 msgid "ERROR: --remote is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1031
+#: session.cxx:1027
 #, c-format
 msgid "Unhandled long argument id %d"
 msgstr ""
 
-#: session.cxx:1045
+#: session.cxx:1041
 #, c-format
 msgid "Unhandled argument code %d"
 msgstr ""
 
-#: session.cxx:1087
+#: session.cxx:1083
 msgid "A script must be specified."
 msgstr ""
 
-#: session.cxx:1094
+#: session.cxx:1090
 msgid "WARNING: --client-options is not supported by this version of systemtap"
 msgstr ""
 
-#: session.cxx:1100
+#: session.cxx:1096
 msgid "WARNING: --trust-servers is not supported by this version of systemtap"
 msgstr ""
 
-#: session.cxx:1107
+#: session.cxx:1103
 msgid "Warning: Ignoring --use-server due to the use of -R"
 msgstr ""
 
-#: session.cxx:1131
+#: session.cxx:1127
 msgid "Using --unprivileged for member of the group stapusr"
 msgstr ""
 
-#: session.cxx:1138
+#: session.cxx:1134
 msgid "Using --use-server for member of the group stapusr"
 msgstr ""
 
-#: session.cxx:1147
+#: session.cxx:1143
 #, c-format
 msgid "You can't specify %s when --unprivileged is specified."
 msgstr ""
 
-#: session.cxx:1153
+#: session.cxx:1149
 msgid "You can't specify -c and -x options together."
 msgstr ""
 
-#: session.cxx:1158
+#: session.cxx:1154
 msgid "You can't specify -g and --unprivileged together."
 msgstr ""
 
-#: session.cxx:1165
+#: session.cxx:1161
 msgid "You can't specify --kelf and --kmap together."
 msgstr ""
 
-#: session.cxx:1178
+#: session.cxx:1174
 msgid ""
 "WARNING: kernel release/architecture mismatch with host forces last-pass 4."
 msgstr ""
 
-#: session.cxx:1253
+#: session.cxx:1249
 #, c-format
 msgid "Missing %s"
 msgstr ""
 
-#: session.cxx:1275
+#: session.cxx:1271
 #, c-format
 msgid "Located kernel source tree (COPYING) at '%s'"
 msgstr ""
 
-#: session.cxx:1320
+#: session.cxx:1313
 #, c-format
 msgid "alias component %s contains illegal parameter"
 msgstr ""
 
-#: session.cxx:1332
+#: session.cxx:1325
 msgid " while registering probe alias "
 msgstr ""
 
-#: session.cxx:1385
+#: session.cxx:1378
 #, c-format
 msgid "semantic error: %s"
 msgstr ""
 
-#: session.cxx:1464
+#: session.cxx:1457
 msgid "WARNING: "
 msgstr "UWAGA: "
index 9d8397fe4315ec3c5249343cc648dde58c712bb4..0fdd5a8af9f97c634fb8d641662d9affffbd47d3 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: systemtap 1.5\n"
 "Report-Msgid-Bugs-To: systemtap@sources.redhat.com\n"
-"POT-Creation-Date: 2011-02-15 15:01-0500\n"
+"POT-Creation-Date: 2011-02-18 09:14-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21,7 +21,7 @@ msgstr ""
 #: buildrun.cxx:272
 #, c-format
 msgid ""
-"Checking \" %s \" failed: %s \n"
+"Checking \" %s \" failed: %s\n"
 "Ensure kernel development headers & makefiles are installed."
 msgstr ""
 
@@ -478,172 +478,194 @@ msgstr ""
 msgid "# probes"
 msgstr ""
 
-#: main.cxx:301 main.cxx:338
+#: main.cxx:301
 #, c-format
 msgid "Checking \"%s\" failed with error: %s"
 msgstr ""
 
-#: main.cxx:321 main.cxx:357
+#: main.cxx:320 main.cxx:353
 #, c-format
 msgid "Parsed kernel \"%s\", "
 msgstr ""
 
-#: main.cxx:322
+#: main.cxx:321
 #, c-format
 msgid "containing %zu tuple"
 msgid_plural "containing %zu tuples"
 msgstr[0] ""
 msgstr[1] ""
 
-#: main.cxx:341
-msgid "Ensure kernel development headers & makefiles are installed."
+#: main.cxx:336
+#, c-format
+msgid ""
+"Checking \"%s\" failed with error: %s\n"
+" Ensure kernel development headers & makefiles are installed"
 msgstr ""
 
-#: main.cxx:358
+#: main.cxx:354
 #, c-format
 msgid "which contained one vmlinux export"
 msgid_plural "which contained %zu vmlinux exports"
 msgstr[0] ""
 msgstr[1] ""
 
-#: main.cxx:388
+#. TRANSLATORS: we can't make the directory due to the error
+#: main.cxx:383
 #, c-format
 msgid "ERROR: cannot create temporary directory (\" %s \"): %s"
 msgstr ""
 
-#: main.cxx:396
+#: main.cxx:390
 #, c-format
 msgid "Created temporary directory \"%s\""
 msgstr ""
 
-#: main.cxx:409
+#: main.cxx:402
 #, c-format
 msgid "Keeping temporary directory \"%s\""
 msgstr ""
 
-#: main.cxx:438
+#: main.cxx:430
 msgid "ERROR: kernel release isn't specified"
 msgstr ""
 
-#: main.cxx:440
+#: main.cxx:432
 #, c-format
 msgid "ERROR: kernel release isn't found in \"%s\""
 msgstr ""
 
-#: main.cxx:458
+#: main.cxx:450
 msgid ""
 "WARNING: Without NSS, using a compile-server is not supported by this "
 "version of systemtap"
 msgstr ""
 
-#: main.cxx:482
+#: main.cxx:474
 #, c-format
 msgid "Session arch: %s release: %s"
 msgstr ""
 
-#: main.cxx:603
+#: main.cxx:592
 #, c-format
 msgid ""
 "usage error: tapset file '%s' cannot be run directly as a session script."
 msgstr ""
 
-#: main.cxx:632
+#: main.cxx:619
 #, c-format
 msgid "Searched: \" %s \", found: %zu, processed: %u"
 msgstr ""
 
-#: main.cxx:646
+#: main.cxx:631
 msgid "# parse tree dump"
 msgstr ""
 
-#: main.cxx:683
+#: main.cxx:668
 msgid "Pass 1: parse failed.  Try again with another '--vp 1' option."
 msgstr ""
 
-#: main.cxx:716
+#: main.cxx:701
 msgid "Pass 2: analysis failed.  Try again with another '--vp 01' option."
 msgstr ""
 
-#: main.cxx:787
+#: main.cxx:772
 msgid "Pass 3: translation failed.  Try again with another '--vp 001' option."
 msgstr ""
 
-#: main.cxx:824
+#: main.cxx:809
 msgid "Pass 4: compilation failed.  Try again with another '--vp 0001' option."
 msgstr ""
 
-#: main.cxx:868
+#: main.cxx:853
 msgid "Pass 5: starting run."
 msgstr ""
 
-#: main.cxx:880
+#: main.cxx:865
 msgid "Pass 5: run failed.  Try again with another '--vp 00001' option."
 msgstr ""
 
-#: main.cxx:908
+#: main.cxx:893
 msgid "Coverage database not available without libsqlite3"
 msgstr ""
 
-#: modsign.cxx:131
+#: modsign.cxx:138
 msgid "Could not obtain information on password file "
 msgstr ""
 
-#: modsign.cxx:139
+#: modsign.cxx:146
 msgid "Could not open password file "
 msgstr ""
 
-#: modsign.cxx:155
+#: modsign.cxx:157
+#, c-format
+msgid "Unable to allocate %#x byte"
+msgid_plural "Unable to allocate %#x bytes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: modsign.cxx:166
 msgid "Error reading password file "
 msgstr ""
 
-#: modsign.cxx:187
+#: modsign.cxx:198
 msgid "Could not create signing context."
 msgstr ""
 
-#: modsign.cxx:194
+#: modsign.cxx:205
 msgid "Could not initialize signing context."
 msgstr ""
 
-#: modsign.cxx:203
+#: modsign.cxx:214
 msgid "Could not open module file "
 msgstr ""
 
-#: modsign.cxx:216
+#: modsign.cxx:227
 msgid "Error reading module file "
 msgstr ""
 
-#: modsign.cxx:225
+#: modsign.cxx:236
 msgid "Error while signing module file "
 msgstr ""
 
-#: modsign.cxx:237
+#: modsign.cxx:248
 msgid "Could not complete signature of module file "
 msgstr ""
 
-#: modsign.cxx:249
+#: modsign.cxx:260
 msgid "Could not open signature file "
 msgstr ""
 
-#: modsign.cxx:257
+#: modsign.cxx:268
 msgid "Error writing to signature file "
 msgstr ""
 
-#: modsign.cxx:279
+#: modsign.cxx:294
 msgid "Module name was not specified."
 msgstr ""
 
-#: modsign.cxx:296
+#: modsign.cxx:311
 msgid "Unable to determine the certificate database path."
 msgstr ""
 
-#: modsign.cxx:312
+#: modsign.cxx:327
 msgid "Unable to obtain certificate database password."
 msgstr ""
 
-#: modsign.cxx:326
+#: modsign.cxx:341
 msgid "Unable to initialize nss library."
 msgstr ""
 
+#: modsign.cxx:350
+#, c-format
+msgid "Unable to find certificate with nickname %s in %s."
+msgstr ""
+
+#: modsign.cxx:359
+#, c-format
+msgid ""
+"Unable to obtain private key from the certificate with nickname %s, in %s."
+msgstr ""
+
 #: parse.cxx:261
 msgid "parse error: "
 msgstr ""
@@ -940,476 +962,476 @@ msgid ""
 "cache support."
 msgstr ""
 
-#: session.cxx:194
+#: session.cxx:191
 #, c-format
 msgid ""
 "Warning: failed to create cache directory (\" %s \"): %s, disabling cache "
 "support."
 msgstr ""
 
-#: session.cxx:358
+#: session.cxx:352
 msgid "SystemTap translator/driver "
 msgstr ""
 
-#: session.cxx:359
+#: session.cxx:353
 msgid "(version "
 msgstr ""
 
-#: session.cxx:361
+#: session.cxx:355
 msgid "Copyright (C) 2005-2011 Red Hat, Inc. and others"
 msgstr ""
 
-#: session.cxx:362
+#: session.cxx:356
 msgid "This is free software; see the source for copying conditions."
 msgstr ""
 
-#: session.cxx:363
+#: session.cxx:357
 msgid "enabled features:"
 msgstr ""
 
-#: session.cxx:395
+#: session.cxx:392
 msgid "Usage: stap [options] FILE         Run script in file."
 msgstr ""
 
-#: session.cxx:397
+#: session.cxx:394
 msgid "   or: stap [options] -            Run script on stdin."
 msgstr ""
 
-#: session.cxx:399
+#: session.cxx:396
 msgid "   or: stap [options] -e SCRIPT    Run given script."
 msgstr ""
 
-#: session.cxx:401
+#: session.cxx:398
 msgid "   or: stap [options] -l PROBE     List matching probes."
 msgstr ""
 
-#: session.cxx:403
+#: session.cxx:400
 msgid ""
 "   or: stap [options] -L PROBE     List matching probes and local variables."
 msgstr ""
 
-#: session.cxx:406
+#: session.cxx:403
 msgid "Options:"
 msgstr ""
 
-#: session.cxx:407
+#: session.cxx:404
 msgid "   --         end of translator options, script options follow"
 msgstr ""
 
-#: session.cxx:408
+#: session.cxx:405
 msgid "   -h --help  show help"
 msgstr ""
 
-#: session.cxx:409
+#: session.cxx:406
 msgid "   -V --version  show version"
 msgstr ""
 
-#: session.cxx:410
+#: session.cxx:407
 msgid "   -p NUM     stop after pass NUM 1-5, instead of "
 msgstr ""
 
-#: session.cxx:411
+#: session.cxx:408
 msgid "              (parse, elaborate, translate, compile, run)"
 msgstr ""
 
-#: session.cxx:412
+#: session.cxx:409
 msgid "   -v         add verbosity to all passes"
 msgstr ""
 
-#: session.cxx:413
+#: session.cxx:410
 msgid "   --vp {N}+  add per-pass verbosity ["
 msgstr ""
 
-#: session.cxx:417
+#: session.cxx:414
 msgid "]"
 msgstr ""
 
-#: session.cxx:418
+#: session.cxx:415
 msgid "   -k         keep temporary directory"
 msgstr ""
 
-#: session.cxx:419
-#, c-format
-msgid "   -u         unoptimized translation %s"
+#: session.cxx:416 session.cxx:417 session.cxx:418 session.cxx:419
+#: session.cxx:421 session.cxx:422
+msgid " [set]"
 msgstr ""
 
-#: session.cxx:419 session.cxx:421 session.cxx:422 session.cxx:423
-#: session.cxx:425 session.cxx:426
-msgid " [set]"
+#: session.cxx:416
+#, c-format
+msgid "   -u         unoptimized translation %s"
 msgstr ""
 
-#: session.cxx:421
+#: session.cxx:417
 #, c-format
 msgid "   -w         suppress warnings %s"
 msgstr ""
 
-#: session.cxx:422
+#: session.cxx:418
 #, c-format
 msgid "   -W         turn warnings into errors %s"
 msgstr ""
 
-#: session.cxx:423
+#: session.cxx:419
 #, c-format
 msgid "   -g         guru mode %s"
 msgstr ""
 
-#: session.cxx:424
+#: session.cxx:420
 #, c-format
 msgid "   -P         prologue-searching for function probes %s"
 msgstr ""
 
-#: session.cxx:426
+#: session.cxx:422
 #, c-format
 msgid "   -b         bulk (percpu file) mode %s"
 msgstr ""
 
-#: session.cxx:427
+#: session.cxx:423
 #, c-format
 msgid "   -s NUM     buffer size in megabytes, instead of %d"
 msgstr ""
 
-#: session.cxx:428
+#: session.cxx:424
 msgid "   -I DIR     look in DIR for additional .stp script files"
 msgstr ""
 
-#: session.cxx:432 session.cxx:458
+#: session.cxx:428 session.cxx:454
 msgid ", in addition to"
 msgstr ""
 
-#: session.cxx:434 session.cxx:440 session.cxx:443 session.cxx:446
-#: session.cxx:462
+#: session.cxx:430 session.cxx:436 session.cxx:439 session.cxx:442
+#: session.cxx:458
 #, c-format
 msgid "              %s"
 msgstr ""
 
-#: session.cxx:436
+#: session.cxx:432
 msgid "   -D NM=VAL  emit macro definition into generated C code"
 msgstr ""
 
-#: session.cxx:437
+#: session.cxx:433
 msgid "   -B NM=VAL  pass option to kbuild make"
 msgstr ""
 
-#: session.cxx:438
+#: session.cxx:434
 msgid "   -G VAR=VAL set global variable to value"
 msgstr ""
 
-#: session.cxx:439
+#: session.cxx:435
 msgid "   -R DIR     look in DIR for runtime, instead of"
 msgstr ""
 
-#: session.cxx:441
+#: session.cxx:437
 msgid "   -r DIR     cross-compile to kernel with given build tree; or else"
 msgstr ""
 
-#: session.cxx:442
+#: session.cxx:438
 msgid ""
 "   -r RELEASE cross-compile to kernel /lib/modules/RELEASE/build, instead of"
 msgstr ""
 
-#: session.cxx:444
+#: session.cxx:440
 #, c-format
 msgid "   -a ARCH    cross-compile to given architecture, instead of %s"
 msgstr ""
 
-#: session.cxx:445
+#: session.cxx:441
 msgid "   -m MODULE  set probe module name, instead of "
 msgstr ""
 
-#: session.cxx:447
+#: session.cxx:443
 msgid ""
 "   -o FILE    send script output to file, instead of stdout. This supports"
 msgstr ""
 
-#: session.cxx:448
+#: session.cxx:444
 msgid "              strftime(3) formats for FILE"
 msgstr ""
 
-#: session.cxx:449
+#: session.cxx:445
 msgid "   -c CMD     start the probes, run CMD, and exit when it finishes"
 msgstr ""
 
-#: session.cxx:450
+#: session.cxx:446
 msgid "   -x PID     sets target() to PID"
 msgstr ""
 
-#: session.cxx:451
+#: session.cxx:447
 msgid "   -F         run as on-file flight recorder with -o."
 msgstr ""
 
-#: session.cxx:452
+#: session.cxx:448
 msgid "              run as on-memory flight recorder without -o."
 msgstr ""
 
-#: session.cxx:453
+#: session.cxx:449
 msgid "   -S size[,n] set maximum of the size and the number of files."
 msgstr ""
 
-#: session.cxx:454
+#: session.cxx:450
 msgid "   -d OBJECT  add unwind/symbol data for OBJECT file"
 msgstr ""
 
-#: session.cxx:465
+#: session.cxx:461
 msgid "   --ldd      add unwind/symbol data for all referenced OBJECT files."
 msgstr ""
 
-#: session.cxx:466
+#: session.cxx:462
 msgid "   --all-modules"
 msgstr ""
 
-#: session.cxx:467
+#: session.cxx:463
 msgid "              add unwind/symbol data for all loaded kernel objects."
 msgstr ""
 
-#: session.cxx:468
+#: session.cxx:464
 msgid "   -t         collect probe timing information"
 msgstr ""
 
-#: session.cxx:470
+#: session.cxx:466
 msgid "   -q         generate information on tapset coverage"
 msgstr ""
 
-#: session.cxx:472
+#: session.cxx:468
 msgid "   --unprivileged"
 msgstr ""
 
-#: session.cxx:473
+#: session.cxx:469
 msgid ""
 "              restrict usage to features available to unprivileged users"
 msgstr ""
 
-#: session.cxx:481
+#: session.cxx:477
 msgid "   --compatible=VERSION"
 msgstr ""
 
-#: session.cxx:482
+#: session.cxx:478
 msgid ""
 "              suppress incompatible language/tapset changes beyond VERSION,"
 msgstr ""
 
-#: session.cxx:483
+#: session.cxx:479
 #, c-format
 msgid "              instead of %s"
 msgstr ""
 
-#: session.cxx:484
+#: session.cxx:480
 msgid "   --check-version"
 msgstr ""
 
-#: session.cxx:485
+#: session.cxx:481
 msgid "              displays warnings where a syntax element may be "
 msgstr ""
 
-#: session.cxx:486
+#: session.cxx:482
 msgid "              version dependent"
 msgstr ""
 
-#: session.cxx:487
+#: session.cxx:483
 msgid "   --skip-badvars"
 msgstr ""
 
-#: session.cxx:488
+#: session.cxx:484
 msgid "              substitute zero for bad context $variables"
 msgstr ""
 
-#: session.cxx:489
+#: session.cxx:485
 msgid "   --use-server[=SERVER-SPEC]"
 msgstr ""
 
-#: session.cxx:490
+#: session.cxx:486
 msgid "              specify systemtap compile-servers"
 msgstr ""
 
-#: session.cxx:491
+#: session.cxx:487
 msgid "   --list-servers[=PROPERTIES]"
 msgstr ""
 
-#: session.cxx:492
+#: session.cxx:488
 msgid "              report on the status of the specified compile-servers"
 msgstr ""
 
-#: session.cxx:494
+#: session.cxx:490
 msgid "   --trust-servers[=TRUST-SPEC]"
 msgstr ""
 
-#: session.cxx:495
+#: session.cxx:491
 msgid "              add/revoke trust of specified compile-servers"
 msgstr ""
 
-#: session.cxx:496
+#: session.cxx:492
 msgid "   --use-server-on-error[=yes/no]"
 msgstr ""
 
-#: session.cxx:497
+#: session.cxx:493
 msgid ""
 "              retry compilation using a compile server upon compilation error"
 msgstr ""
 
-#: session.cxx:499
+#: session.cxx:495
 msgid "   --remote=HOSTNAME"
 msgstr ""
 
-#: session.cxx:500
+#: session.cxx:496
 msgid "              run pass 5 on the specified ssh host (EXPERIMENTAL)"
 msgstr ""
 
-#: session.cxx:628
+#: session.cxx:624
 msgid "Invalid pass number (should be 1-5)."
 msgstr ""
 
-#: session.cxx:633
+#: session.cxx:629
 msgid "Listing (-l) mode implies pass 2."
 msgstr ""
 
-#: session.cxx:670 session.cxx:833
+#: session.cxx:666 session.cxx:829
 msgid "Only one script can be given on the command line."
 msgstr ""
 
-#: session.cxx:686
+#: session.cxx:682
 msgid "ERROR: -R invalid with --client-options"
 msgstr ""
 
-#: session.cxx:702 session.cxx:720
+#: session.cxx:698 session.cxx:716
 #, c-format
 msgid "Truncating module name to '%s'"
 msgstr ""
 
-#: session.cxx:708
+#: session.cxx:704
 msgid "Module name cannot be empty."
 msgstr ""
 
-#: session.cxx:771
+#: session.cxx:767
 msgid "Invalid buffer size (should be 1-4095)."
 msgstr ""
 
-#: session.cxx:784
+#: session.cxx:780
 msgid "Empty CMD string invalid."
 msgstr ""
 
-#: session.cxx:793
+#: session.cxx:789
 msgid "Invalid target process ID number."
 msgstr ""
 
-#: session.cxx:814
+#: session.cxx:810
 msgid "ERROR: -q invalid with --client-options"
 msgstr ""
 
-#: session.cxx:848
+#: session.cxx:844
 msgid "ERROR: -B invalid with --client-options"
 msgstr ""
 
-#: session.cxx:869
+#: session.cxx:865
 msgid "You can't specify multiple --kmap options."
 msgstr ""
 
-#: session.cxx:900
+#: session.cxx:896
 msgid "Invalid --vp argument: it takes 1 to 5 digits."
 msgstr ""
 
-#: session.cxx:973
+#: session.cxx:969
 msgid "ERROR: --disable-cache is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:980
+#: session.cxx:976
 msgid "ERROR: --poison-cache is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:987
+#: session.cxx:983
 msgid "ERROR: --clean-cache is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1000
+#: session.cxx:996
 msgid "ERROR: --ldd is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1009
+#: session.cxx:1005
 msgid "ERROR: --all-modules is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1017
+#: session.cxx:1013
 msgid "ERROR: --remote is invalid with --client-options"
 msgstr ""
 
-#: session.cxx:1031
+#: session.cxx:1027
 #, c-format
 msgid "Unhandled long argument id %d"
 msgstr ""
 
-#: session.cxx:1045
+#: session.cxx:1041
 #, c-format
 msgid "Unhandled argument code %d"
 msgstr ""
 
-#: session.cxx:1087
+#: session.cxx:1083
 msgid "A script must be specified."
 msgstr ""
 
-#: session.cxx:1094
+#: session.cxx:1090
 msgid "WARNING: --client-options is not supported by this version of systemtap"
 msgstr ""
 
-#: session.cxx:1100
+#: session.cxx:1096
 msgid "WARNING: --trust-servers is not supported by this version of systemtap"
 msgstr ""
 
-#: session.cxx:1107
+#: session.cxx:1103
 msgid "Warning: Ignoring --use-server due to the use of -R"
 msgstr ""
 
-#: session.cxx:1131
+#: session.cxx:1127
 msgid "Using --unprivileged for member of the group stapusr"
 msgstr ""
 
-#: session.cxx:1138
+#: session.cxx:1134
 msgid "Using --use-server for member of the group stapusr"
 msgstr ""
 
-#: session.cxx:1147
+#: session.cxx:1143
 #, c-format
 msgid "You can't specify %s when --unprivileged is specified."
 msgstr ""
 
-#: session.cxx:1153
+#: session.cxx:1149
 msgid "You can't specify -c and -x options together."
 msgstr ""
 
-#: session.cxx:1158
+#: session.cxx:1154
 msgid "You can't specify -g and --unprivileged together."
 msgstr ""
 
-#: session.cxx:1165
+#: session.cxx:1161
 msgid "You can't specify --kelf and --kmap together."
 msgstr ""
 
-#: session.cxx:1178
+#: session.cxx:1174
 msgid ""
 "WARNING: kernel release/architecture mismatch with host forces last-pass 4."
 msgstr ""
 
-#: session.cxx:1253
+#: session.cxx:1249
 #, c-format
 msgid "Missing %s"
 msgstr ""
 
-#: session.cxx:1275
+#: session.cxx:1271
 #, c-format
 msgid "Located kernel source tree (COPYING) at '%s'"
 msgstr ""
 
-#: session.cxx:1320
+#: session.cxx:1313
 #, c-format
 msgid "alias component %s contains illegal parameter"
 msgstr ""
 
-#: session.cxx:1332
+#: session.cxx:1325
 msgid " while registering probe alias "
 msgstr ""
 
-#: session.cxx:1385
+#: session.cxx:1378
 #, c-format
 msgid "semantic error: %s"
 msgstr ""
 
-#: session.cxx:1464
+#: session.cxx:1457
 msgid "WARNING: "
 msgstr ""
index 8bffdd9ac79992968160f1881726c7cec54f68c1..004df2f0e6a8393d2baedd7690d3cd301635da42 100644 (file)
@@ -178,9 +178,6 @@ systemtap_session::systemtap_session ():
       if (! suppress_warnings)
         cerr << _F("Warning: failed to create systemtap data directory \"%s\":%s, disabling cache support.",
                    data_path.c_str(),e) << endl;
-        //cerr << "Warning: failed to create systemtap data directory (\""
-        //     << data_path << "\"): " << e
-        //     << ", disabling cache support." << endl;
       use_cache = use_script_cache = false;
     }
 
@@ -193,9 +190,6 @@ systemtap_session::systemtap_session ():
           if (! suppress_warnings)
             cerr << _F("Warning: failed to create cache directory (\" %s \"): %s, disabling cache support.",
                        cache_path.c_str(),e) << endl;
-            //cerr << "Warning: failed to create cache directory (\""
-            //     << cache_path << "\"): " << e
-            //     << ", disabling cache support." << endl;
          use_cache = use_script_cache = false;
        }
     }
@@ -420,7 +414,6 @@ systemtap_session::usage (int exitcode)
     << _("]") << endl
     << _("   -k         keep temporary directory") << endl
     << _F("   -u         unoptimized translation %s", (unoptimized ? _(" [set]") : "")) << endl
-    //<< "   -u         unoptimized translation" << (unoptimized ? " [set]" : "") << endl
     << _F("   -w         suppress warnings %s", (suppress_warnings ? _(" [set]") : "")) << endl
     << _F("   -W         turn warnings into errors %s", (panic_warnings ? _(" [set]") : "")) << endl
     << _F("   -g         guru mode %s", (guru_mode ? _(" [set]") : "")) << endl
@@ -1317,9 +1310,6 @@ systemtap_session::register_library_aliases()
                       probe_point::component * comp = name->components[c];
                       // XXX: alias parameters
                       if (comp->arg)
-                        //throw semantic_error("alias component "
-                        //                     + comp->functor
-                        //                     + " contains illegal parameter");
                         throw semantic_error(_F("alias component %s contains illegal parameter",
                                                 comp->functor.c_str()));
                       n = n->bind(comp->functor);
This page took 0.141509 seconds and 5 git commands to generate.