summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2010-07-12 13:43:30 +0200
committerKarel Klic <kklic@redhat.com>2010-07-12 13:43:30 +0200
commit39d1eb82b56410e41ee8dccf5b2d6f3cad217996 (patch)
treeb9ebc7eb53eae6ace922406db1d5a1de0b08b106 /lib
parent2ff305d1e59f9683642a58ec29df55fdb8dd2297 (diff)
downloadabrt-39d1eb82b56410e41ee8dccf5b2d6f3cad217996.tar.gz
abrt-39d1eb82b56410e41ee8dccf5b2d6f3cad217996.tar.xz
abrt-39d1eb82b56410e41ee8dccf5b2d6f3cad217996.zip
String updates
Diffstat (limited to 'lib')
-rw-r--r--lib/Plugins/Bugzilla.cpp4
-rw-r--r--lib/Plugins/CCpp.cpp4
-rw-r--r--lib/Plugins/FileTransfer.cpp4
-rw-r--r--lib/Plugins/SOSreport.cpp2
4 files changed, 7 insertions, 7 deletions
diff --git a/lib/Plugins/Bugzilla.cpp b/lib/Plugins/Bugzilla.cpp
index f4068a2d..909a977d 100644
--- a/lib/Plugins/Bugzilla.cpp
+++ b/lib/Plugins/Bugzilla.cpp
@@ -778,7 +778,7 @@ std::string CReporterBugzilla::Report(const map_crash_data_t& pCrashData,
}
else if (all_bugs_size == 0) // Create new bug
{
- update_client(_("Creating new bug..."));
+ update_client(_("Creating a new bug..."));
bug_id = bz_server.new_bug(pCrashData, depend_on_bugno);
if (bug_id < 0)
{
@@ -821,7 +821,7 @@ std::string CReporterBugzilla::Report(const map_crash_data_t& pCrashData,
{
if (ii == MAX_HOPS)
{
- VERB3 log("Bugzilla couldn't find parent of bug %d", (int)original_bug_id);
+ VERB3 log("Bugzilla could not find a parent of bug %d", (int)original_bug_id);
bug_info_destroy(&bz);
throw CABRTException(EXCEP_PLUGIN, _("Bugzilla couldn't find parent of bug %d"), (int)original_bug_id);
}
diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp
index 7a48331b..7eb6072c 100644
--- a/lib/Plugins/CCpp.cpp
+++ b/lib/Plugins/CCpp.cpp
@@ -350,7 +350,7 @@ static void InstallDebugInfos(const char *pDebugDumpDir,
const char *debuginfo_dirs,
string& build_ids)
{
- update_client(_("Starting debuginfo installation"));
+ update_client(_("Starting the debuginfo installation"));
int pipeout[2]; //TODO: can we use ExecVP?
xpipe(pipeout);
@@ -734,7 +734,7 @@ void CAnalyzerCCpp::CreateReport(const char *pDebugDumpDir, int force)
InstallDebugInfos(pDebugDumpDir, m_sDebugInfoDirs.c_str(), build_ids);
}
else
- VERB1 log(_("Skipping debuginfo installation"));
+ VERB1 log(_("Skipping the debuginfo installation"));
/* Create and store backtrace. */
string backtrace_str;
diff --git a/lib/Plugins/FileTransfer.cpp b/lib/Plugins/FileTransfer.cpp
index 76c56705..6668968e 100644
--- a/lib/Plugins/FileTransfer.cpp
+++ b/lib/Plugins/FileTransfer.cpp
@@ -319,7 +319,7 @@ void CFileTransfer::Run(const char *pActionDir, const char *pArgs, int force)
}
catch (CABRTException& e)
{
- error_msg(_("Can't create and send an archive: %s"), e.what());
+ error_msg(_("Cannot create and send an archive: %s"), e.what());
}
unlink(archivename.c_str());
}
@@ -348,7 +348,7 @@ void CFileTransfer::Run(const char *pActionDir, const char *pArgs, int force)
}
catch (CABRTException& e)
{
- error_msg(_("Can't create and send an archive %s"), e.what());
+ error_msg(_("Cannot create and send an archive: %s"), e.what());
}
VERB3 log("Deleting archive '%s'", archivename.c_str());
unlink(archivename.c_str());
diff --git a/lib/Plugins/SOSreport.cpp b/lib/Plugins/SOSreport.cpp
index 2bc927d6..5e62ce78 100644
--- a/lib/Plugins/SOSreport.cpp
+++ b/lib/Plugins/SOSreport.cpp
@@ -100,7 +100,7 @@ void CActionSOSreport::Run(const char *pActionDir, const char *pArgs, int force)
output += '\n';
char *command_out = run_in_shell_and_save_output(/*flags:*/ 0, command.c_str(), /*dir:*/ NULL, /*size_p:*/ NULL);
output += command_out;
- update_client(_("Done running sosreport"));
+ update_client(_("Finished running sosreport"));
VERB3 log("sosreport output:'%s'", output.c_str());
// Not needed: now we use "sosreport --tmp-dir DUMPDIR"