Marcus Rueckert
f270973a6c
Accepted submit request 57745 from user jeff_mahoney OBS-URL: https://build.opensuse.org/request/show/57745 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/apparmor?expand=0&rev=1
55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
From: Jeff Mahoney <jeffm@suse.com>
|
|
Subject: apparmor-utils: Translation unification
|
|
References: bnc#586072
|
|
|
|
This patch removes small inconsistencies between identical strings to
|
|
allow for easier translation.
|
|
|
|
Reported-by: Isis Binder <isis.binder@gmail.com>
|
|
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
---
|
|
utils/Reports.pm | 6 +++---
|
|
utils/unconfined | 2 +-
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- a/utils/Reports.pm
|
|
+++ b/utils/Reports.pm
|
|
@@ -967,7 +967,7 @@ sub getEssStats {
|
|
};
|
|
|
|
if ($@) {
|
|
- ycp::y2error(sprintf(gettext("DBI Execution failed: %s"), $DBI::errstr));
|
|
+ ycp::y2error(sprintf(gettext("DBI Execution failed: %s."), $DBI::errstr));
|
|
return;
|
|
}
|
|
|
|
@@ -980,7 +980,7 @@ sub getEssStats {
|
|
};
|
|
|
|
if ($@) {
|
|
- ycp::y2error(sprintf(gettext("DBI Execution failed: %s"), $DBI::errstr));
|
|
+ ycp::y2error(sprintf(gettext("DBI Execution failed: %s."), $DBI::errstr));
|
|
return;
|
|
}
|
|
|
|
@@ -988,7 +988,7 @@ sub getEssStats {
|
|
eval { $ret = $dbh->selectall_arrayref("$query"); };
|
|
|
|
if ($@) {
|
|
- ycp::y2error(sprintf(gettext("DBI Execution failed: %s"), $DBI::errstr));
|
|
+ ycp::y2error(sprintf(gettext("DBI Execution failed: %s."), $DBI::errstr));
|
|
return;
|
|
}
|
|
|
|
--- a/utils/unconfined
|
|
+++ b/utils/unconfined
|
|
@@ -54,7 +54,7 @@ sub usage {
|
|
|
|
my $subdomainfs = check_for_subdomain();
|
|
|
|
-die gettext("AppArmor does not appear to be started. Please enable AppArmor and try again.") . "\n"
|
|
+die gettext("AppArmor does not appear to be started. Please enable AppArmor and try again.") . "\n"
|
|
unless $subdomainfs;
|
|
|
|
my @pids;
|