From 8c88187a438a624a1d85a7c4c1298dfc27ad276e Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 15 May 2006 14:06:13 +0000 Subject: [PATCH] * Mon May 15 2006 Dan Walsh 1.30.9-1 - Update to upstream * Fixed audit2allow and po Makefiles for DESTDIR= builds. * Merged .po file patch from Dan Walsh. * Merged bug fix for genhomedircon. --- .cvsignore | 2 + policycoreutils-rhat.patch | 12120 +++++++++++------------------------ policycoreutils.spec | 10 +- sources | 2 +- 4 files changed, 3579 insertions(+), 8555 deletions(-) diff --git a/.cvsignore b/.cvsignore index 2995e18..16fb38a 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,3 +1,4 @@ +.svn policycoreutils-1.17.5.tgz policycoreutils-1.17.6.tgz policycoreutils-1.17.7.tgz @@ -100,3 +101,4 @@ policycoreutils-1.30.5.tgz policycoreutils-1.30.6.tgz policycoreutils-1.30.7.tgz policycoreutils-1.30.8.tgz +policycoreutils-1.30.9.tgz diff --git a/policycoreutils-rhat.patch b/policycoreutils-rhat.patch index 6cfccbe..05a3657 100644 --- a/policycoreutils-rhat.patch +++ b/policycoreutils-rhat.patch @@ -1,65 +1,139 @@ +diff --exclude-from=exclude -N -u -r nsapolicycoreutils/audit2allow/avc.py policycoreutils-1.30.8/audit2allow/avc.py +--- nsapolicycoreutils/audit2allow/avc.py 2006-05-15 09:42:57.000000000 -0400 ++++ policycoreutils-1.30.8/audit2allow/avc.py 2006-05-13 09:46:09.000000000 -0400 +@@ -331,6 +331,7 @@ + self.gen_ref_policy = False + self.verbose = verbose + self.AVCS = [] ++ self.INVALID_SIDS = {} + + def initialize(self): + self.seRules = {} +@@ -348,7 +349,11 @@ + if i == "avc:" or i == "message=avc:" or i == "msg='avc:": + found = 1 + else: +- dict.append(i) ++ if i == "security_compute_sid:": ++ self.security_compute_sid(rec) ++ found = 1 ++ else: ++ dict.append(i) + if found: + self.translate(dict) + found = 0 +@@ -359,9 +364,6 @@ + def translate(self,dict): + AVC = {} + AVC["access"] = [] +- if "security_compute_sid" in dict: +- return +- + if "load_policy" in dict and self.last_reload: + self.initialize() + +@@ -384,13 +386,31 @@ + for i in ("scontext", "tcontext", "tclass"): + if i not in AVC.keys(): + return +- ++ if len(AVC["access"]) == 0: ++ return ++ + except IndexError, e: + warning("Bad AVC Line: %s" % avc) + return + + self.add_allow(AVC) + ++ def security_compute_sid(self, rec): ++ dict={} ++ for i in rec: ++ t = i.split('=') ++ if len(t) < 2: ++ continue ++ dict[t[0]]=t[1] ++ try: ++ r = context(dict["scontext"]).role ++ t = context(dict["tcontext"]).type ++ self.add_type(t) ++ self.add_role(r) ++ self.INVALID_SIDS[(r,t)]=rec ++ except: ++ return ++ + def add_avc(self, AVC): + for a in self.AVCS: + if a["tclass"] == AVC["tclass"] and a["access"] == AVC["access"] and a["tcontext"] == AVC["tcontext"] and a["scontext"] == AVC["scontext"] and a["comm"] == AVC["comm"] and a["name"] == AVC["name"]: +@@ -468,7 +488,8 @@ + keys = self.classes.keys() + keys.sort() + rec = "\n\nrequire {\n" +- for i in keys: ++ if not self.gen_ref_policy: ++ for i in keys: + access = self.classes[i] + if len(access) > 1: + access.sort() +@@ -479,10 +500,13 @@ + else: + rec += "\tclass %s %s;\n" % (i, access[0]) + +- rec += "\n" +- + for i in self.types: + rec += "\ttype %s; \n" % i ++ ++ if not self.gen_ref_policy: ++ for i in self.roles: ++ rec += "\trole %s; \n" % i ++ + rec += "};\n\n" + return rec + +@@ -494,7 +518,7 @@ + + def out(self, require = 0, module = ""): + rec = "" +- if len(self.seRules.keys()) == 0: ++ if len(self.seRules.keys()) == 0 and len(self.INVALID_SIDS) == 0: + raise(ValueError("No AVC messages found.")) + if module != "": + rec += self.gen_module(module) +@@ -503,6 +527,9 @@ + if require: + rec+=self.gen_requires() + ++ for i in self.INVALID_SIDS.keys(): ++ rec += "role %s types %s;\n" % i ++ + keys = self.seRules.keys() + keys.sort() + for i in keys: +diff --exclude-from=exclude -N -u -r nsapolicycoreutils/audit2allow/Makefile policycoreutils-1.30.8/audit2allow/Makefile +--- nsapolicycoreutils/audit2allow/Makefile 2006-05-15 09:42:57.000000000 -0400 ++++ policycoreutils-1.30.8/audit2allow/Makefile 2006-05-08 11:02:47.000000000 -0400 +@@ -1,7 +1,6 @@ + # Installation directories. + PREFIX ?= ${DESTDIR}/usr + BINDIR ?= $(PREFIX)/bin +-LIBDIR ?= $(PREFIX)/lib + MANDIR ?= $(PREFIX)/share/man + LOCALEDIR ?= /usr/share/locale + PYLIBVER ?= python2.4 diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils-1.30.8/po/af.po ---- nsapolicycoreutils/po/af.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/af.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/af.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/af.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -83,7 +157,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -95,67 +169,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils-1.30.8/po/am.po ---- nsapolicycoreutils/po/am.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/am.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/am.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/am.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -179,7 +204,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -191,67 +216,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils-1.30.8/po/ar.po ---- nsapolicycoreutils/po/ar.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/ar.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/ar.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/ar.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -275,7 +251,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -287,67 +263,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils-1.30.8/po/be.po ---- nsapolicycoreutils/po/be.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/be.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/be.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/be.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -371,7 +298,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -383,67 +310,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils-1.30.8/po/bg.po ---- nsapolicycoreutils/po/bg.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/bg.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/bg.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/bg.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -467,7 +345,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -479,93 +357,85 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreutils-1.30.8/po/bn_IN.po ---- nsapolicycoreutils/po/bn_IN.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/bn_IN.po 2006-05-10 15:14:40.000000000 -0400 -@@ -23,6 +23,10 @@ +--- nsapolicycoreutils/po/bn_IN.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/bn_IN.po 2006-05-13 09:45:23.000000000 -0400 +@@ -24,6 +24,9 @@ # translation of bn_IN.po to Bangla (INDIA) # translation of bn_IN.po to Bangla (INDIA) # translation of bn_IN.po to Bangla (INDIA) +# translation of bn_IN.po to Bangla (INDIA) +# translation of bn_IN.po to Bangla (INDIA) -+# translation of bn_IN.po to Bangla (INDIA) +# translation of bn_IN.po to Bangla (INDIA) # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Runa Bhattacharjee , 2006. -@@ -31,8 +35,8 @@ +@@ -32,8 +35,8 @@ msgstr "" "Project-Id-Version: bn_IN\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" --"PO-Revision-Date: 2006-05-05 16:13+0530\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +-"PO-Revision-Date: 2006-05-08 10:53+0530\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" +"PO-Revision-Date: 2006-05-09 18:04+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bangla (INDIA) \n" "MIME-Version: 1.0\n" -@@ -213,12 +217,16 @@ - #: ../newrole/newrole.c:717 - #, c-format - msgid "%s! Could not get current context for %s, not relabeling tty.\n" --msgstr "%s! %s'র ক্ষেত্রে বর্তমান context প্রাপ্ত করা যায়নি, tty'র লেবেল পরিবর্তন করা হবে না।\n" -+msgstr "" -+"%s! %s'র ক্ষেত্রে বর্তমান context প্রাপ্ত করা যায়নি, tty'র লেবেল পরিবর্তন করা হবে " -+"না।\n" - - #: ../newrole/newrole.c:728 - #, c-format - msgid "%s! Could not get new context for %s, not relabeling tty.\n" --msgstr "%s! %s'র ক্ষেত্রে নতুন context প্রাপ্ত করা যায়নি, tty'র লেবেল পরিবর্তন করা হবে না।\n" -+msgstr "" -+"%s! %s'র ক্ষেত্রে নতুন context প্রাপ্ত করা যায়নি, tty'র লেবেল পরিবর্তন করা হবে " -+"না।\n" - - #: ../newrole/newrole.c:740 - #, c-format -@@ -383,6 +391,42 @@ - msgid "chcat -l +CompanyConfidential juser" +@@ -389,42 +392,40 @@ msgstr "chcat -l +CompanyConfidential juser" -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" + #: ../semanage/semanage:122 +-#, fuzzy + msgid "Requires 2 or more arguments" +-msgstr "প্রেফিক্স অথবা ভূমিকা উল্লেখ করা আবশ্যক" +msgstr "২ অথবা অধিক সংখ্যক আর্গুমেন্ট আবশ্যক" -+ -+#: ../semanage/semanage:127 + + #: ../semanage/semanage:127 +-#, fuzzy, c-format +#, c-format -+msgid "%s not defined" + msgid "%s not defined" +-msgstr "%s/%s পোর্ট নির্ধারিত হয়নি" +msgstr "%s পোর্ট নির্ধারিত হয়নি" -+ -+#: ../semanage/semanage:151 + + #: ../semanage/semanage:151 +-#, fuzzy, c-format +#, c-format -+msgid "%s not valid for %s objects\n" + msgid "%s not valid for %s objects\n" +-msgstr "%s বৈধ context নয়\n" +msgstr "%s, %s অবজেক্টের জন্য বৈধ নয়\n" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" + + #: ../semanage/semanage:178 ../semanage/semanage:186 +-#, fuzzy + msgid "range not supported on Non MLS machines" +-msgstr "MLS-বিহীন মেশিনে অনুবাদ সমর্থন করা হয় না" +msgstr "MLS-বিহীন মেশিনে রেঞ্জ সমর্থন করা হয় না" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" + + #: ../semanage/semanage:244 + msgid "You must specify a role" +-msgstr "" +msgstr "ভূমিকা নির্ধারণ করা আবশ্যক" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" + + #: ../semanage/semanage:246 + msgid "You must specify a prefix" +-msgstr "" +msgstr "প্রে-ফিক্স উল্লেখ করা আবশ্যক" -+ -+#: ../semanage/semanage:295 + + #: ../semanage/semanage:295 +-#, fuzzy, c-format +#, c-format -+msgid "Options Error %s " + msgid "Options Error %s " +-msgstr "বিকল্প সংক্রান্ত ত্রুটি: %s " +msgstr "বিকল্প সংক্রান্ত ত্রুটি %s " -+ -+#: ../semanage/semanage:299 + + #: ../semanage/semanage:299 +-#, fuzzy, c-format +#, c-format -+msgid "Invalid value %s" + msgid "Invalid value %s" +-msgstr "স্তর বৈধ নয় '%s' " +msgstr "মান বৈধ নয় %s " -+ + #: ../semanage/seobject.py:124 msgid "translations not supported on non-MLS machines" - msgstr "MLS-বিহীন মেশিনে অনুবাদ সমর্থন করা হয় না" -@@ -469,14 +513,15 @@ +@@ -512,14 +513,15 @@ msgid "Could not set SELinux user for %s" msgstr "%s'র ক্ষেত্রে SELinux ব্যবহারকারী নির্ধারণ করা যায়নি" @@ -589,7 +459,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreut msgid "Could not start semanage transaction" msgstr "semanage আদান-প্রদান আরম্ভ করা যায়নি" -@@ -499,10 +544,6 @@ +@@ -542,10 +544,6 @@ msgid "Could not query seuser for %s" msgstr "%s'র ক্ষেত্রে seuser কোয়েরি করা যায়নি" @@ -600,116 +470,24 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn_IN.po policycoreut #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 #, python-format msgid "Could not modify login mapping for %s" -@@ -511,7 +552,9 @@ - #: ../semanage/seobject.py:355 - #, python-format - msgid "Login mapping for %s is defined in policy, cannot be deleted" --msgstr "%s'র জন্য লগ-ইন ম্যাপিং ব্যবস্থা নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে মুছে ফেলা সম্ভব নয়" -+msgstr "" -+"%s'র জন্য লগ-ইন ম্যাপিং ব্যবস্থা নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে মুছে ফেলা সম্ভব " -+"নয়" - - #: ../semanage/seobject.py:364 ../semanage/seobject.py:368 - #, python-format -@@ -561,7 +604,7 @@ - #: ../semanage/seobject.py:467 ../semanage/seobject.py:471 - #, python-format - msgid "Could not add SELinux user %s" --msgstr "" -+msgstr "SELinux ব্যবহারকারী %s যোগ করা যায়নি" - - #: ../semanage/seobject.py:487 - msgid "Requires prefix, roles, level or range" -@@ -589,7 +632,9 @@ - #: ../semanage/seobject.py:561 - #, python-format - msgid "SELinux user %s is defined in policy, cannot be deleted" --msgstr "SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য নিয়মনীতির মধ্যে নির্ধারিত হয়েছে যার ফলে অপসারণযোগ্য নয়" -+msgstr "" -+"SELinux ব্যবহারকারী %s'র বৈশিষ্ট্য নিয়মনীতির মধ্যে নির্ধারিত হয়েছে যার ফলে " -+"অপসারণযোগ্য নয়" - - #: ../semanage/seobject.py:569 ../semanage/seobject.py:573 - #, python-format -@@ -873,7 +918,8 @@ - #: ../semanage/seobject.py:1131 - #, python-format - msgid "File context for %s is defined in policy, cannot be deleted" --msgstr "%s'র ফাইল context নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে তা অপসারণ করা সম্ভব নয়" -+msgstr "" -+"%s'র ফাইল context নিয়মনীতির মধ্যে নির্ধারিত হওয়ার ফলে তা অপসারণ করা সম্ভব নয়" - - #: ../semanage/seobject.py:1139 ../semanage/seobject.py:1143 - #, python-format -@@ -958,5 +1004,5 @@ - #: ../audit2allow/audit2allow:203 +@@ -1007,3 +1005,4 @@ #, c-format msgid "Options Error: %s " --msgstr "" -+msgstr "বিকল্প সংক্রান্ত ত্রুটি: %s " - + msgstr "বিকল্প সংক্রান্ত ত্রুটি: %s " ++ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils-1.30.8/po/bn.po ---- nsapolicycoreutils/po/bn.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/bn.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/bn.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/bn.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -733,7 +511,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -745,67 +523,259 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils-1.30.8/po/ca.po ---- nsapolicycoreutils/po/ca.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/ca.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/ca.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/ca.po 2006-05-13 09:45:23.000000000 -0400 +@@ -1,17 +1,30 @@ +-# SOME DESCRIPTIVE TITLE. +-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +-# This file is distributed under the same license as the PACKAGE package. +-# FIRST AUTHOR , YEAR. ++# Catalan translation for policycoreutils ++# Copyright © 2006 The Free Software Foundation, Inc. ++# This file is distributed under the same license as the policycoreutils ++# package. ++# ++# Josep Puigdemont Casamajó , 2006. ++# ++# This file is translated according to the glossary and style guide of ++# Softcatalà. If you plan to modify this file, please read first the page ++# of the Catalan translation team for the Fedora project at: ++# http://www.softcatala.org/projectes/fedora/ ++# and contact the previous translator ++# ++# Aquest fitxer s'ha de traduir d'acord amb el recull de termes i la guia ++# d'estil de Softcatalà. Si voleu modificar aquest fitxer, llegiu si ++# us plau la pàgina de catalanització del projecte Fedora a: ++# http://www.softcatala.org/projectes/fedora/ ++# i contacteu l'anterior traductor/a. + # +-#, fuzzy + msgid "" msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" +-"Project-Id-Version: PACKAGE VERSION\n" ++"Project-Id-Version: policycoreutils\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +-"Last-Translator: FULL NAME \n" +-"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" ++"PO-Revision-Date: 2006-05-13 10:34+0200\n" ++"Last-Translator: Josep Puigdemont Casamajó \n" ++"Language-Team: Catalan \n" "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" + "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" - +@@ -19,41 +32,41 @@ #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" + #, c-format + msgid "usage: %s [-bq]\n" +-msgstr "" ++msgstr "Forma d'ús: %s [-bq]\n" -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ + #: ../load_policy/load_policy.c:62 + #, c-format + msgid "%s: Can't load policy: %s\n" +-msgstr "" ++msgstr "%s: No es pot carregar la política: %s\n" + + #: ../newrole/newrole.c:97 + #, c-format + msgid "Out of memory!\n" +-msgstr "" ++msgstr "No hi ha prou memòria!\n" + + #: ../newrole/newrole.c:201 ../run_init/run_init.c:126 + #, c-format + msgid "failed to initialize PAM\n" +-msgstr "" ++msgstr "no s'ha pogut inicialitzar el PAM\n" + + #: ../newrole/newrole.c:212 + #, c-format + msgid "failed to set PAM_TTY\n" +-msgstr "" ++msgstr "no s'ha pogut establir PAM_TTY\n" + + #: ../newrole/newrole.c:250 ../run_init/run_init.c:155 + msgid "Password:" +-msgstr "" ++msgstr "Contrasenya:" + + #: ../newrole/newrole.c:282 ../run_init/run_init.c:187 + #, c-format + msgid "Cannot find your entry in the shadow passwd file.\n" +-msgstr "" ++msgstr "No s'ha pogut trobar la vostra entrada en el fitxer passwd ocult.\n" + + #: ../newrole/newrole.c:288 ../run_init/run_init.c:193 + #, c-format + msgid "getpass cannot open /dev/tty\n" +-msgstr "" ++msgstr "El getpass no pot obrir /dev/tty\n" + + #: ../newrole/newrole.c:354 + #, c-format +@@ -143,7 +156,7 @@ + #: ../newrole/newrole.c:607 + #, c-format + msgid "Authenticating %s.\n" +-msgstr "" ++msgstr "S'està autenticant %s.\n" + + #: ../newrole/newrole.c:621 + #, c-format +@@ -178,12 +191,12 @@ + #: ../newrole/newrole.c:698 + #, c-format + msgid "%s is not a valid context\n" +-msgstr "" ++msgstr "%s no és un context vàlid\n" + + #: ../newrole/newrole.c:711 + #, c-format + msgid "Error! Could not open %s.\n" +-msgstr "" ++msgstr "Error. No s'ha pogut obrir %s.\n" + + #: ../newrole/newrole.c:717 + #, c-format +@@ -213,7 +226,7 @@ + #: ../newrole/newrole.c:774 + #, c-format + msgid "%s changed labels.\n" +-msgstr "" ++msgstr "S'han canviat %s etiquetes.\n" + + #: ../newrole/newrole.c:798 + #, c-format +@@ -259,12 +272,12 @@ + #: ../run_init/run_init.c:295 + #, c-format + msgid "Could not open file %s\n" +-msgstr "" ++msgstr "No s'ha pogut obrir el fitxer %s\n" + + #: ../run_init/run_init.c:322 + #, c-format + msgid "No context in file %s\n" +-msgstr "" ++msgstr "No hi ha context al fitxer %s\n" + + #: ../run_init/run_init.c:345 + #, c-format +@@ -274,11 +287,11 @@ + #: ../run_init/run_init.c:364 + #, c-format + msgid "authentication failed.\n" +-msgstr "" ++msgstr "ha fallat l'autenticació.\n" + + #: ../scripts/chcat:70 ../scripts/chcat:140 + msgid "Requires at least one category" +-msgstr "" ++msgstr "Requereix com a mínim una categoria" + + #: ../scripts/chcat:84 ../scripts/chcat:154 + #, c-format +@@ -288,60 +301,60 @@ + #: ../scripts/chcat:88 + #, c-format + msgid "%s is already in %s" +-msgstr "" ++msgstr "%s ja és a %s" + + #: ../scripts/chcat:159 ../scripts/chcat:169 + #, c-format + msgid "%s is not in %s" +-msgstr "" ++msgstr "%s no és a %s" + + #: ../scripts/chcat:232 ../scripts/chcat:237 + msgid "Can not combine +/- with other types of categories" +-msgstr "" ++msgstr "No es pot combinar +/- amb altres tipus de categories" + + #: ../scripts/chcat:282 + msgid "Can not have multiple sensitivities" +-msgstr "" ++msgstr "No pot tenir múltiples sensibilitats" + + #: ../scripts/chcat:288 + #, c-format + msgid "Usage %s CATEGORY File ..." +-msgstr "" ++msgstr "Forma d'ús: %s CATEGORIA fitxer ..." + + #: ../scripts/chcat:289 + #, c-format + msgid "Usage %s -l CATEGORY user ..." +-msgstr "" ++msgstr "Forma d'ús: %s -l CATEGORIA usuari ..." + + #: ../scripts/chcat:290 + #, c-format + msgid "Usage %s [[+|-]CATEGORY],...]q File ..." +-msgstr "" ++msgstr "Forma d'ús: %s [[+|-]CATEGORIA],...]q Fitxer ..." + + #: ../scripts/chcat:291 + #, c-format + msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..." +-msgstr "" ++msgstr "Forma d'ús: %s -1 [[+|-]CATEGORIA],...]q usuari ..." + + #: ../scripts/chcat:292 + #, c-format + msgid "Usage %s -d File ..." +-msgstr "" ++msgstr "Forma d'ús: %s -d Fitxer ..." + + #: ../scripts/chcat:293 + #, c-format + msgid "Usage %s -l -d user ..." +-msgstr "" ++msgstr "Forma d'ús: %s -l -d usuari ..." + + #: ../scripts/chcat:294 + #, c-format + msgid "Usage %s -L" +-msgstr "" ++msgstr "Forma d'ús: %s -L" + + #: ../scripts/chcat:295 + #, c-format + msgid "Usage %s -L -l user" +-msgstr "" ++msgstr "Forma d'ús: %s -L -l usuari" + + #: ../scripts/chcat:296 + msgid "Use -- to end option list. For example" +@@ -362,12 +375,12 @@ + #: ../semanage/semanage:127 + #, c-format + msgid "%s not defined" +-msgstr "" ++msgstr "%s no és definit" + + #: ../semanage/semanage:151 + #, c-format + msgid "%s not valid for %s objects\n" +-msgstr "" ++msgstr "%s no és vàlid per a objectes %s\n" + + #: ../semanage/semanage:178 ../semanage/semanage:186 + msgid "range not supported on Non MLS machines" +@@ -408,7 +421,7 @@ + #: ../semanage/seobject.py:174 + #, python-format + msgid "Invalid Level '%s' " +-msgstr "" ++msgstr "Nivell '%s' invàlid " + + #: ../semanage/seobject.py:177 + #, python-format +@@ -477,14 +490,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -829,7 +799,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +521,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -840,68 +810,104 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 #, python-format msgid "Could not modify login mapping for %s" +@@ -787,31 +797,31 @@ + #: ../semanage/seobject.py:916 ../semanage/seobject.py:953 + #, python-format + msgid "Interface %s is not defined" +-msgstr "" ++msgstr "La interfície %s no és definida" + + #: ../semanage/seobject.py:920 + #, python-format + msgid "Could not query interface %s" +-msgstr "" ++msgstr "No s'ha pogut consultar la initerfície %s" + + #: ../semanage/seobject.py:935 ../semanage/seobject.py:939 + #, python-format + msgid "Could not modify interface %s" +-msgstr "" ++msgstr "No s'ha pogut modificar la interfície %s" + + #: ../semanage/seobject.py:959 + #, python-format + msgid "Interface %s is defined in policy, cannot be deleted" +-msgstr "" ++msgstr "La interfície %s és definida a la política, no es pot suprimir" + + #: ../semanage/seobject.py:967 ../semanage/seobject.py:971 + #, python-format + msgid "Could not delete interface %s" +-msgstr "" ++msgstr "No s'ha pogut suprimir la interfície %s" + + #: ../semanage/seobject.py:979 + msgid "Could not list interfaces" +-msgstr "" ++msgstr "No s'han pogut llistar les interfícies" + + #: ../semanage/seobject.py:1022 ../semanage/seobject.py:1084 + #: ../semanage/seobject.py:1123 ../semanage/seobject.py:1129 +@@ -894,7 +904,7 @@ + + #: ../semanage/seobject.py:1189 + msgid "Requires value" +-msgstr "" ++msgstr "Requereix un valor" + + #: ../semanage/seobject.py:1197 ../semanage/seobject.py:1231 + #: ../semanage/seobject.py:1237 +@@ -905,17 +915,17 @@ + #: ../semanage/seobject.py:1199 ../semanage/seobject.py:1233 + #, python-format + msgid "Boolean %s is not defined" +-msgstr "" ++msgstr "El booleà %s no és definit" + + #: ../semanage/seobject.py:1203 + #, python-format + msgid "Could not query file context %s" +-msgstr "" ++msgstr "No s'ha pogut consultar el context %s del fitxer" + + #: ../semanage/seobject.py:1215 ../semanage/seobject.py:1219 + #, python-format + msgid "Could not modify boolean %s" +-msgstr "" ++msgstr "No s'ha pogut modificar el booleà %s" + + #: ../semanage/seobject.py:1239 + #, python-format +@@ -938,13 +948,15 @@ + + #: ../audit2allow/audit2allow:184 + msgid "Compiling policy" +-msgstr "" ++msgstr "S'està compilant la política" + + #: ../audit2allow/audit2allow:195 + msgid "" + "\n" + "******************** IMPORTANT ***********************\n" + msgstr "" ++"\n" ++"******************** IMPORTANT ***********************\n" + + #: ../audit2allow/audit2allow:196 + #, c-format diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cs.po policycoreutils-1.30.8/po/cs.po ---- nsapolicycoreutils/po/cs.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/cs.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/cs.po 2006-05-15 09:43:11.000000000 -0400 ++++ policycoreutils-1.30.8/po/cs.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -925,7 +931,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cs.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -937,67 +943,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cs.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils-1.30.8/po/cy.po ---- nsapolicycoreutils/po/cy.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/cy.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/cy.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/cy.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -1021,7 +978,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -1033,52 +990,9 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils-1.30.8/po/da.po ---- nsapolicycoreutils/po/da.po 2006-05-08 11:00:58.000000000 -0400 -+++ policycoreutils-1.30.8/po/da.po 2006-05-10 15:14:40.000000000 -0400 -@@ -337,6 +337,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -423,14 +459,15 @@ +--- nsapolicycoreutils/po/da.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/da.po 2006-05-13 09:45:23.000000000 -0400 +@@ -459,14 +459,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -1102,7 +1016,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -453,10 +490,6 @@ +@@ -489,10 +490,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -1114,97 +1028,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils-1.30.8/po/de.po ---- nsapolicycoreutils/po/de.po 2006-05-08 11:00:58.000000000 -0400 -+++ policycoreutils-1.30.8/po/de.po 2006-05-10 15:14:40.000000000 -0400 +--- nsapolicycoreutils/po/de.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/de.po 2006-05-13 09:45:23.000000000 -0400 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: policycoreutils 1.28-4\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: 2006-01-27 19:42+0100\n" "Last-Translator: Holger Wansing \n" "Language-Team: German \n" -@@ -338,9 +338,9 @@ - msgstr "" - - #: ../scripts/chcat:292 --#, c-format -+#, fuzzy, c-format - msgid "Usage %s -d File ..." --msgstr "" -+msgstr "Aufruf: %s -s [-dnqvW] spec-Datei\n" - - #: ../scripts/chcat:293 - #, c-format -@@ -353,9 +353,9 @@ - msgstr "Aufruf: %s -s [-dnqvW] spec-Datei\n" - - #: ../scripts/chcat:295 --#, c-format -+#, fuzzy, c-format - msgid "Usage %s -L -l user" --msgstr "" -+msgstr "Aufruf: %s -s [-dnqvW] spec-Datei\n" - - #: ../scripts/chcat:296 - msgid "Use -- to end option list. For example" -@@ -369,6 +369,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, fuzzy, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "»%s« ist kein gültiger Kontext\n" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -422,9 +458,9 @@ - - #: ../semanage/seobject.py:242 ../semanage/seobject.py:300 - #: ../semanage/seobject.py:347 ../semanage/seobject.py:353 --#, python-format -+#, fuzzy, python-format - msgid "Could not check if login mapping for %s is defined" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:244 - #, python-format -@@ -456,16 +492,18 @@ +@@ -492,14 +492,15 @@ msgid "Could not set SELinux user for %s" msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" @@ -1225,127 +1060,22 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils +#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 +#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 +#: ../semanage/seobject.py:1243 -+#, fuzzy + #, fuzzy msgid "Could not start semanage transaction" --msgstr "" -+msgstr "Konnte exec-Kontext nicht auf »%s« setzen.\n" - - #: ../semanage/seobject.py:273 ../semanage/seobject.py:277 - #, fuzzy, python-format -@@ -486,10 +524,6 @@ + msgstr "Konnte exec-Kontext nicht auf »%s« setzen.\n" +@@ -523,11 +524,6 @@ msgid "Could not query seuser for %s" msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" -#: ../semanage/seobject.py:321 +-#, fuzzy -msgid "Could not srart semanage transaction" --msgstr "" +-msgstr "Konnte exec-Kontext nicht auf »%s« setzen.\n" - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 #, fuzzy, python-format msgid "Could not modify login mapping for %s" -@@ -506,14 +540,15 @@ - msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:382 -+#, fuzzy - msgid "Could not list login mappings" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:428 ../semanage/seobject.py:497 - #: ../semanage/seobject.py:553 ../semanage/seobject.py:559 --#, python-format -+#, fuzzy, python-format - msgid "Could not check if SELinux user %s is defined" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:430 - #, python-format -@@ -584,8 +619,9 @@ - msgstr "Konnte Datei »%s« nicht öffnen\n" - - #: ../semanage/seobject.py:585 -+#, fuzzy - msgid "Could not list SELinux users" --msgstr "" -+msgstr "Konnte Datei »%s« nicht öffnen\n" - - #: ../semanage/seobject.py:591 - #, fuzzy, python-format -@@ -611,9 +647,9 @@ - - #: ../semanage/seobject.py:655 ../semanage/seobject.py:717 - #: ../semanage/seobject.py:751 ../semanage/seobject.py:757 --#, python-format -+#, fuzzy, python-format - msgid "Could not check if port %s/%s is defined" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:657 - #, python-format -@@ -656,9 +692,9 @@ - msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:696 ../semanage/seobject.py:700 --#, python-format -+#, fuzzy, python-format - msgid "Could not add port %s/%s" --msgstr "" -+msgstr "Konnte Deskriptoren nicht schließen.\n" - - #: ../semanage/seobject.py:709 ../semanage/seobject.py:906 - msgid "Requires setype or serange" -@@ -710,9 +746,9 @@ - - #: ../semanage/seobject.py:850 ../semanage/seobject.py:914 - #: ../semanage/seobject.py:951 ../semanage/seobject.py:957 --#, python-format -+#, fuzzy, python-format - msgid "Could not check if interface %s is defined" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:852 - #, python-format -@@ -801,9 +837,9 @@ - msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:1024 --#, python-format -+#, fuzzy, python-format - msgid "File context for %s already defined" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:1028 - #, fuzzy, python-format -@@ -845,9 +881,9 @@ - msgstr "" - - #: ../semanage/seobject.py:1086 ../semanage/seobject.py:1125 --#, python-format -+#, fuzzy, python-format - msgid "File context for %s is not defined" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:1090 - #, fuzzy, python-format -@@ -880,9 +916,9 @@ - - #: ../semanage/seobject.py:1197 ../semanage/seobject.py:1231 - #: ../semanage/seobject.py:1237 --#, python-format -+#, fuzzy, python-format - msgid "Could not check if boolean %s is defined" --msgstr "" -+msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - - #: ../semanage/seobject.py:1199 ../semanage/seobject.py:1233 - #, python-format -@@ -944,6 +980,7 @@ +@@ -984,6 +980,7 @@ msgid "Options Error: %s " msgstr "" @@ -1354,67 +1084,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils #~ msgstr "Aufruf: %s Policy-Datei\n" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils-1.30.8/po/el.po ---- nsapolicycoreutils/po/el.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/el.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/el.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/el.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -1438,7 +1119,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -1450,67 +1131,18 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreutils-1.30.8/po/en_GB.po ---- nsapolicycoreutils/po/en_GB.po 2006-05-08 10:33:18.000000000 -0400 -+++ policycoreutils-1.30.8/po/en_GB.po 2006-05-10 15:14:40.000000000 -0400 -@@ -8,12 +8,12 @@ +--- nsapolicycoreutils/po/en_GB.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/en_GB.po 2006-05-13 09:45:23.000000000 -0400 +@@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-02 20:34-0400\n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" - "MIME-Version: 1.0\n" --"Content-Type: text/plain; charset=CHARSET\n" -+"Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - - #: ../load_policy/load_policy.c:22 -@@ -355,6 +355,42 @@ - msgid "chcat -l +CompanyConfidential juser" - msgstr "" - -+#: ../semanage/semanage:122 -+msgid "Requires 2 or more arguments" -+msgstr "" -+ -+#: ../semanage/semanage:127 -+#, c-format -+msgid "%s not defined" -+msgstr "" -+ -+#: ../semanage/semanage:151 -+#, c-format -+msgid "%s not valid for %s objects\n" -+msgstr "" -+ -+#: ../semanage/semanage:178 ../semanage/semanage:186 -+msgid "range not supported on Non MLS machines" -+msgstr "" -+ -+#: ../semanage/semanage:244 -+msgid "You must specify a role" -+msgstr "" -+ -+#: ../semanage/semanage:246 -+msgid "You must specify a prefix" -+msgstr "" -+ -+#: ../semanage/semanage:295 -+#, c-format -+msgid "Options Error %s " -+msgstr "" -+ -+#: ../semanage/semanage:299 -+#, c-format -+msgid "Invalid value %s" -+msgstr "" -+ - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" - msgstr "" -@@ -441,14 +477,15 @@ +@@ -477,14 +477,15 @@ msgid "Could not set SELinux user for %s" msgstr "" @@ -1534,7 +1166,7 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut msgid "Could not start semanage transaction" msgstr "" -@@ -471,10 +508,6 @@ +@@ -507,10 +508,6 @@ msgid "Could not query seuser for %s" msgstr "" @@ -1546,471 +1178,288 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/en_GB.po policycoreut #, python-format msgid "Could not modify login mapping for %s" diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils-1.30.8/po/es.po ---- nsapolicycoreutils/po/es.po 2006-05-08 11:00:59.000000000 -0400 -+++ policycoreutils-1.30.8/po/es.po 2006-05-10 15:14:40.000000000 -0400 -@@ -1,10 +1,14 @@ -+# Domingo E. Becker , 2006. +--- nsapolicycoreutils/po/es.po 2006-05-15 09:43:12.000000000 -0400 ++++ policycoreutils-1.30.8/po/es.po 2006-05-13 09:45:23.000000000 -0400 +@@ -1,13 +1,13 @@ + # Domingo E. Becker , 2006. +-# +-# +# +# msgid "" msgstr "" "Project-Id-Version: \n" --"POT-Creation-Date: \n" --"PO-Revision-Date: 2006-05-05 00:43-0300\n" -+"Report-Msgid-Bugs-To: \n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2006-05-08 11:22-0400\n" +-"PO-Revision-Date: 2006-05-06 08:15-0400\n" +-"Last-Translator: Guillermo Gmez S. \n" +"POT-Creation-Date: 2006-05-10 08:32-0400\n" -+"PO-Revision-Date: 2006-05-09 14:37-0300\n" - "Last-Translator: Domingo E. Becker \n" --"Language-Team: \n" -+"Language-Team: \n" ++"PO-Revision-Date: 2006-05-11 08:51-0300\n" ++"Last-Translator: Domingo E. Becker \n" + "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -24,8 +28,7 @@ +@@ -28,7 +28,8 @@ msgid "Out of memory!\n" msgstr "Falta memoria!\n" --#: ../newrole/newrole.c:201 --#: ../run_init/run_init.c:126 -+#: ../newrole/newrole.c:201 ../run_init/run_init.c:126 +-#: ../newrole/newrole.c:201 ../run_init/run_init.c:126 ++#: ../newrole/newrole.c:201 ++#: ../run_init/run_init.c:126 #, c-format msgid "failed to initialize PAM\n" msgstr "fallo al inicializar PAM\n" -@@ -35,19 +38,16 @@ +@@ -38,16 +39,19 @@ msgid "failed to set PAM_TTY\n" msgstr "fallo al fijar PAM_TTY\n" --#: ../newrole/newrole.c:250 --#: ../run_init/run_init.c:155 -+#: ../newrole/newrole.c:250 ../run_init/run_init.c:155 +-#: ../newrole/newrole.c:250 ../run_init/run_init.c:155 ++#: ../newrole/newrole.c:250 ++#: ../run_init/run_init.c:155 msgid "Password:" msgstr "Contrasea:" --#: ../newrole/newrole.c:282 --#: ../run_init/run_init.c:187 -+#: ../newrole/newrole.c:282 ../run_init/run_init.c:187 +-#: ../newrole/newrole.c:282 ../run_init/run_init.c:187 ++#: ../newrole/newrole.c:282 ++#: ../run_init/run_init.c:187 #, c-format msgid "Cannot find your entry in the shadow passwd file.\n" msgstr "No se puede encontrar su registro en el archivo shadow passwd.\n" --#: ../newrole/newrole.c:288 --#: ../run_init/run_init.c:193 -+#: ../newrole/newrole.c:288 ../run_init/run_init.c:193 +-#: ../newrole/newrole.c:288 ../run_init/run_init.c:193 ++#: ../newrole/newrole.c:288 ++#: ../run_init/run_init.c:193 #, c-format msgid "getpass cannot open /dev/tty\n" msgstr "getpass no puede abrir /dev/tty\n" -@@ -186,61 +186,63 @@ +@@ -185,15 +189,12 @@ + #: ../newrole/newrole.c:717 #, c-format msgid "%s! Could not get current context for %s, not relabeling tty.\n" - msgstr "" -+"%s! No se pudo obtener el contexto actual para %s, no se reetiqueta el " -+"tty.\n" +-msgstr "" +-"%s! No se pudo obtener el contexto actual para %s, no se reetiqueta el " +-"tty.\n" ++msgstr "%s! No se pudo obtener el contexto actual para %s, no se reetiqueta el tty.\n" #: ../newrole/newrole.c:728 #, c-format msgid "%s! Could not get new context for %s, not relabeling tty.\n" - msgstr "" -+"%s! No se pudo obtener un contexto nuevo para %s, no se reetiqueta el tty.\n" +-msgstr "" +-"%s! No se pudo obtener un contexto nuevo para %s, no se reetiqueta el tty.\n" ++msgstr "%s! No se pudo obtener un contexto nuevo para %s, no se reetiqueta el tty.\n" #: ../newrole/newrole.c:740 #, c-format - msgid "%s! Could not set new context for %s\n" --msgstr "" -+msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" - - #: ../newrole/newrole.c:752 - #, c-format - msgid "newrole: failure forking: %s" --msgstr "" -+msgstr "newrole: error al crear proceso: %s" - - #: ../newrole/newrole.c:754 - #, c-format - msgid "Warning! Could not restore context for %s\n" --msgstr "" -+msgstr "Precaucin! No se pudo restablecer el contexto para %s\n" - - #: ../newrole/newrole.c:774 - #, c-format - msgid "%s changed labels.\n" --msgstr "" -+msgstr "%s etiquetas cambiadas.\n" - - #: ../newrole/newrole.c:798 - #, c-format +@@ -220,7 +221,8 @@ msgid "Could not close descriptors.\n" --msgstr "" -+msgstr "No se pudo cerrar los descriptores.\n" + msgstr "No se pudo cerrar los descriptores.\n" --#: ../newrole/newrole.c:832 --#: ../run_init/run_init.c:390 -+#: ../newrole/newrole.c:832 ../run_init/run_init.c:390 +-#: ../newrole/newrole.c:832 ../run_init/run_init.c:390 ++#: ../newrole/newrole.c:832 ++#: ../run_init/run_init.c:390 #, c-format msgid "Could not set exec context to %s.\n" --msgstr "" -+msgstr "No se pudo fijar el contexto de ejecucin a %s.\n" - - #: ../newrole/newrole.c:842 - #, c-format - msgid "Error connecting to audit system.\n" --msgstr "" -+msgstr "Error al conectar al sistema de auditora.\n" - - #: ../newrole/newrole.c:847 - #, c-format - msgid "Error allocating memory.\n" --msgstr "" -+msgstr "Error al asignar memoria.\n" - - #: ../newrole/newrole.c:853 - #, c-format - msgid "Error sending audit message.\n" --msgstr "" -+msgstr "Error al enviar un mensaje de auditora.\n" - - #: ../newrole/newrole.c:864 - msgid "failed to exec shell\n" --msgstr "" -+msgstr "fallo al ejecutar shell\n" - - #: ../run_init/run_init.c:67 - msgid "" -@@ -248,725 +250,710 @@ - " where: