diff --git a/.cvsignore b/.cvsignore index 16fb38a..7eba21b 100644 --- a/.cvsignore +++ b/.cvsignore @@ -102,3 +102,4 @@ policycoreutils-1.30.6.tgz policycoreutils-1.30.7.tgz policycoreutils-1.30.8.tgz policycoreutils-1.30.9.tgz +policycoreutils-1.30.10.tgz diff --git a/policycoreutils-rhat.patch b/policycoreutils-rhat.patch index b53d16a..323b2a9 100644 --- a/policycoreutils-rhat.patch +++ b/policycoreutils-rhat.patch @@ -1,118 +1,6 @@ -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/audit2allow/avc.py policycoreutils-1.30.9/audit2allow/avc.py ---- nsapolicycoreutils/audit2allow/avc.py 2006-05-15 09:42:57.000000000 -0400 -+++ policycoreutils-1.30.9/audit2allow/avc.py 2006-05-16 21:43:37.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.9/audit2allow/Makefile +diff --exclude-from=exclude -N -u -r nsapolicycoreutils/audit2allow/Makefile policycoreutils-1.30.10/audit2allow/Makefile --- nsapolicycoreutils/audit2allow/Makefile 2006-05-15 09:42:57.000000000 -0400 -+++ policycoreutils-1.30.9/audit2allow/Makefile 2006-05-16 21:43:37.000000000 -0400 ++++ policycoreutils-1.30.10/audit2allow/Makefile 2006-05-23 06:32:13.000000000 -0400 @@ -1,7 +1,6 @@ # Installation directories. PREFIX ?= ${DESTDIR}/usr @@ -121,8343 +9,4085 @@ diff --exclude-from=exclude -N -u -r nsapolicycoreutils/audit2allow/Makefile pol MANDIR ?= $(PREFIX)/share/man LOCALEDIR ?= /usr/share/locale PYLIBVER ?= python2.4 -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/ChangeLog policycoreutils-1.30.9/ChangeLog ---- nsapolicycoreutils/ChangeLog 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/ChangeLog 2006-05-16 21:43:37.000000000 -0400 -@@ -1,3 +1,10 @@ -+1.30.9 2006-05-15 -+ * secon/secon.c (get_scon): Output blank instead of context, when -+ requested exec or fscreate context. -+ (cmd_line): Added --prompt option. -+ (usage): Use sensitivity level and clearance wording. -+ * secon/secon.1: Added man page. -+ - 1.30.9 2006-05-08 - * Fixed audit2allow and po Makefiles for DESTDIR= builds. - * Merged .po file patch from Dan Walsh. -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/af.po policycoreutils-1.30.9/po/af.po ---- nsapolicycoreutils/po/af.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/af.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/am.po policycoreutils-1.30.9/po/am.po ---- nsapolicycoreutils/po/am.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/am.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ar.po policycoreutils-1.30.9/po/ar.po ---- nsapolicycoreutils/po/ar.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/ar.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/be.po policycoreutils-1.30.9/po/be.po ---- nsapolicycoreutils/po/be.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/be.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bg.po policycoreutils-1.30.9/po/bg.po ---- nsapolicycoreutils/po/bg.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/bg.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, 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.9/po/bn_IN.po ---- nsapolicycoreutils/po/bn_IN.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/bn_IN.po 2006-05-16 21:43:37.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) - # This file is distributed under the same license as the PACKAGE package. - # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. - # Runa Bhattacharjee , 2006. -@@ -32,8 +35,8 @@ - msgstr "" - "Project-Id-Version: bn_IN\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-08 11:22-0400\n" --"PO-Revision-Date: 2006-05-08 10:53+0530\n" +diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/kn.po policycoreutils-1.30.10/po/kn.po +--- nsapolicycoreutils/po/kn.po 1969-12-31 19:00:00.000000000 -0500 ++++ policycoreutils-1.30.10/po/kn.po 2006-05-23 06:33:17.000000000 -0400 +@@ -0,0 +1,959 @@ ++# 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. ++# ++#, fuzzy ++msgid "" ++msgstr "" ++"Project-Id-Version: PACKAGE VERSION\n" ++"Report-Msgid-Bugs-To: \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" -@@ -389,42 +392,40 @@ - msgstr "chcat -l +CompanyConfidential juser" - - #: ../semanage/semanage:122 --#, fuzzy - msgid "Requires 2 or more arguments" --msgstr "প্রেফিক্স অথবা ভূমিকা উল্লেখ করা আবশ্যক" -+msgstr "২ অথবা অধিক সংখ্যক আর্গুমেন্ট আবশ্যক" - - #: ../semanage/semanage:127 --#, fuzzy, c-format ++"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-Transfer-Encoding: 8bit\n" ++ ++#: ../load_policy/load_policy.c:22 +#, c-format - msgid "%s not defined" --msgstr "%s/%s পোর্ট নির্ধারিত হয়নি" -+msgstr "%s পোর্ট নির্ধারিত হয়নি" - - #: ../semanage/semanage:151 --#, fuzzy, c-format ++msgid "usage: %s [-bq]\n" ++msgstr "" ++ ++#: ../load_policy/load_policy.c:62 +#, c-format - msgid "%s not valid for %s objects\n" --msgstr "%s বৈধ context নয়\n" -+msgstr "%s, %s অবজেক্টের জন্য বৈধ নয়\n" - - #: ../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" --msgstr "" -+msgstr "ভূমিকা নির্ধারণ করা আবশ্যক" - - #: ../semanage/semanage:246 - msgid "You must specify a prefix" --msgstr "" -+msgstr "প্রে-ফিক্স উল্লেখ করা আবশ্যক" - - #: ../semanage/semanage:295 --#, fuzzy, c-format ++msgid "%s: Can't load policy: %s\n" ++msgstr "" ++ ++#: ../newrole/newrole.c:97 +#, c-format - msgid "Options Error %s " --msgstr "বিকল্প সংক্রান্ত ত্রুটি: %s " -+msgstr "বিকল্প সংক্রান্ত ত্রুটি %s " - - #: ../semanage/semanage:299 --#, fuzzy, c-format ++msgid "Out of memory!\n" ++msgstr "" ++ ++#: ../newrole/newrole.c:201 ../run_init/run_init.c:126 +#, c-format - msgid "Invalid value %s" --msgstr "স্তর বৈধ নয় '%s' " -+msgstr "মান বৈধ নয় %s " - - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" -@@ -512,14 +513,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "%s'র ক্ষেত্রে SELinux ব্যবহারকারী নির্ধারণ করা যায়নি" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "semanage আদান-প্রদান আরম্ভ করা যায়নি" - -@@ -542,10 +544,6 @@ - msgid "Could not query seuser for %s" - msgstr "%s'র ক্ষেত্রে seuser কোয়েরি করা যায়নি" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "semanage আদান-প্রদান আরম্ভ করা যায়নি" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -@@ -1007,3 +1005,4 @@ - #, c-format - msgid "Options Error: %s " - msgstr "বিকল্প সংক্রান্ত ত্রুটি: %s " ++msgid "failed to initialize PAM\n" ++msgstr "" + -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/bn.po policycoreutils-1.30.9/po/bn.po ---- nsapolicycoreutils/po/bn.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/bn.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ca.po policycoreutils-1.30.9/po/ca.po ---- nsapolicycoreutils/po/ca.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/ca.po 2006-05-16 21:43:37.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: policycoreutils\n" - "Report-Msgid-Bugs-To: \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: 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=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -19,41 +32,41 @@ - #: ../load_policy/load_policy.c:22 - #, c-format - msgid "usage: %s [-bq]\n" --msgstr "" -+msgstr "Forma d'ús: %s [-bq]\n" - - #: ../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 "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +521,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../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.9/po/cs.po ---- nsapolicycoreutils/po/cs.po 2006-05-15 09:43:11.000000000 -0400 -+++ policycoreutils-1.30.9/po/cs.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/cy.po policycoreutils-1.30.9/po/cy.po ---- nsapolicycoreutils/po/cy.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/cy.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/da.po policycoreutils-1.30.9/po/da.po ---- nsapolicycoreutils/po/da.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/da.po 2006-05-16 21:43:37.000000000 -0400 -@@ -459,14 +459,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -489,10 +490,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/de.po policycoreutils-1.30.9/po/de.po ---- nsapolicycoreutils/po/de.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/de.po 2006-05-16 21:43:37.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-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" -@@ -492,14 +492,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "Warnung! Konnte neuen Kontext für »%s« nicht setzen.\n" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - #, fuzzy - msgid "Could not start semanage transaction" - 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 "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" -@@ -984,6 +980,7 @@ - msgid "Options Error: %s " - msgstr "" - -+#, fuzzy - #~ msgid "usage: %s policyfile\n" - #~ msgstr "Aufruf: %s Policy-Datei\n" - -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/el.po policycoreutils-1.30.9/po/el.po ---- nsapolicycoreutils/po/el.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/el.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, 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.9/po/en_GB.po ---- nsapolicycoreutils/po/en_GB.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/en_GB.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/es.po policycoreutils-1.30.9/po/es.po ---- nsapolicycoreutils/po/es.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/es.po 2006-05-16 21:43:37.000000000 -0400 -@@ -1,13 +1,13 @@ - # Domingo E. Becker , 2006. --# --# -+# -+# - msgid "" - msgstr "" - "Project-Id-Version: \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 G�mez S. \n" -+"POT-Creation-Date: 2006-05-10 08:32-0400\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" -@@ -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 - #, c-format - msgid "failed to initialize PAM\n" - msgstr "fallo al inicializar PAM\n" -@@ -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 - msgid "Password:" - msgstr "Contrase�a:" - --#: ../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 - #, c-format - msgid "getpass cannot open /dev/tty\n" - msgstr "getpass no puede abrir /dev/tty\n" -@@ -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" - - #: ../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" - - #: ../newrole/newrole.c:740 - #, c-format -@@ -220,7 +221,8 @@ - msgid "Could not close descriptors.\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 - #, c-format - msgid "Could not set exec context to %s.\n" - msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -@@ -279,11 +281,13 @@ - msgid "authentication failed.\n" - msgstr "fall� la autenticaci�n.\n" - --#: ../scripts/chcat:70 ../scripts/chcat:140 -+#: ../scripts/chcat:70 -+#: ../scripts/chcat:140 - msgid "Requires at least one category" - msgstr "Se requiere al menos una categor�a" - --#: ../scripts/chcat:84 ../scripts/chcat:154 -+#: ../scripts/chcat:84 -+#: ../scripts/chcat:154 - #, c-format - msgid "Can not modify sensitivity levels using '+' on %s" - msgstr "No se puede modificar los niveles de sensibilidad usando '+' en %s" -@@ -293,12 +297,14 @@ - msgid "%s is already in %s" - msgstr "%s ya est� en %s" - --#: ../scripts/chcat:159 ../scripts/chcat:169 -+#: ../scripts/chcat:159 -+#: ../scripts/chcat:169 - #, c-format - msgid "%s is not in %s" - msgstr "%s no est� en %s" - --#: ../scripts/chcat:232 ../scripts/chcat:237 -+#: ../scripts/chcat:232 -+#: ../scripts/chcat:237 - msgid "Can not combine +/- with other types of categories" - msgstr "No se puede combinar +/- con otros tipos de categor�as" - -@@ -360,40 +366,40 @@ - - #: ../semanage/semanage:122 - msgid "Requires 2 or more arguments" --msgstr "" -+msgstr "Se requieren 2 o m�s argumentos" - - #: ../semanage/semanage:127 --#, fuzzy, c-format -+#, c-format - msgid "%s not defined" --msgstr "%s no definido en traducciones" -+msgstr "%s no est� definido" - - #: ../semanage/semanage:151 --#, fuzzy, c-format -+#, c-format - msgid "%s not valid for %s objects\n" --msgstr "%s no es un contexto v�lido\n" -+msgstr "%s no es v�lido para los objetos %s\n" - --#: ../semanage/semanage:178 ../semanage/semanage:186 --#, fuzzy -+#: ../semanage/semanage:178 -+#: ../semanage/semanage:186 - msgid "range not supported on Non MLS machines" --msgstr "traducciones no soportadas en m�quinas no MLS" -+msgstr "el rango no es soportado en m�quinas no MLS" - - #: ../semanage/semanage:244 - msgid "You must specify a role" --msgstr "" -+msgstr "Debe especificar un rol" - - #: ../semanage/semanage:246 - msgid "You must specify a prefix" --msgstr "" -+msgstr "Debe especificar un prefijo" - - #: ../semanage/semanage:295 --#, fuzzy, c-format -+#, c-format - msgid "Options Error %s " --msgstr "Error Opciones:�%s�" -+msgstr "Error en Opciones %s" - - #: ../semanage/semanage:299 --#, fuzzy, c-format -+#, c-format - msgid "Invalid value %s" --msgstr "Nivel inv�lido '%s'" -+msgstr "Valor inv�lido %s" - - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" -@@ -404,7 +410,8 @@ - msgid "Unable to open %s: translations not supported on non-MLS machines" - msgstr "No se pudo abrir %s: traducciones no soportadas en m�quinas no MLS" - --#: ../semanage/seobject.py:171 ../semanage/seobject.py:185 -+#: ../semanage/seobject.py:171 -+#: ../semanage/seobject.py:185 - #, python-format - msgid "Translations can not contain spaces '%s' " - msgstr "Las traducciones no pueden tener espacios '%s'" -@@ -426,8 +433,7 @@ - - #: ../semanage/seobject.py:209 - msgid "SELinux policy is not managed or store cannot be accessed." --msgstr "" --"La pol�tica SELinux es no manejada o no se puede acceder al almacenamiento." -+msgstr "La pol�tica SELinux es no manejada o no se puede acceder al almacenamiento." - - #: ../semanage/seobject.py:214 - msgid "Cannot read policy store." -@@ -437,17 +443,24 @@ - msgid "Could not establish semanage connection" - msgstr "No se pudo establecer una conexi�n semanage" - --#: ../semanage/seobject.py:238 ../semanage/seobject.py:296 --#: ../semanage/seobject.py:343 ../semanage/seobject.py:424 --#: ../semanage/seobject.py:493 ../semanage/seobject.py:549 --#: ../semanage/seobject.py:1080 ../semanage/seobject.py:1119 --#: ../semanage/seobject.py:1193 ../semanage/seobject.py:1227 -+#: ../semanage/seobject.py:238 -+#: ../semanage/seobject.py:296 -+#: ../semanage/seobject.py:343 -+#: ../semanage/seobject.py:424 -+#: ../semanage/seobject.py:493 -+#: ../semanage/seobject.py:549 -+#: ../semanage/seobject.py:1080 -+#: ../semanage/seobject.py:1119 -+#: ../semanage/seobject.py:1193 -+#: ../semanage/seobject.py:1227 - #, python-format - msgid "Could not create a key for %s" - msgstr "No se pudo crear una clave para %s" - --#: ../semanage/seobject.py:242 ../semanage/seobject.py:300 --#: ../semanage/seobject.py:347 ../semanage/seobject.py:353 -+#: ../semanage/seobject.py:242 -+#: ../semanage/seobject.py:300 -+#: ../semanage/seobject.py:347 -+#: ../semanage/seobject.py:353 - #, python-format - msgid "Could not check if login mapping for %s is defined" - msgstr "No se pudo chequear si est� definido el mapeo de login para %s" -@@ -467,486 +480,524 @@ - msgid "Could not create login mapping for %s" - msgstr "No se pudo crear mapeo de login para %s" - --#: ../semanage/seobject.py:256 ../semanage/seobject.py:438 -+#: ../semanage/seobject.py:256 -+#: ../semanage/seobject.py:438 - #, python-format - msgid "Could not set name for %s" - msgstr "No se pudo fijar el nombre para %s" - --#: ../semanage/seobject.py:261 ../semanage/seobject.py:448 -+#: ../semanage/seobject.py:261 -+#: ../semanage/seobject.py:448 - #, python-format - msgid "Could not set MLS range for %s" - msgstr "No se pudo fijar el rango MLS para %s" - - #: ../semanage/seobject.py:265 --#, fuzzy, python-format -+#, python-format - msgid "Could not set SELinux user for %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo fijar el usuario SELinux para %s" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 -+#: ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 -+#: ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 -+#: ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 -+#: ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 -+#: ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 -+#: ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 -+#: ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 -+#: ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "No se puede iniciar transacci�n�semanage" - --#: ../semanage/seobject.py:273 ../semanage/seobject.py:277 --#, fuzzy, python-format -+#: ../semanage/seobject.py:273 -+#: ../semanage/seobject.py:277 -+#, python-format - msgid "Could not add login mapping for %s" --msgstr "No se pudo crear mapeo de login para %s" -+msgstr "No se pudo agregar el mapeo de ingreso para %s" - - #: ../semanage/seobject.py:292 - msgid "Requires seuser or serange" --msgstr "" -+msgstr "Se requiere seuser o serange" - --#: ../semanage/seobject.py:302 ../semanage/seobject.py:349 --#, fuzzy, python-format -+#: ../semanage/seobject.py:302 -+#: ../semanage/seobject.py:349 -+#, python-format - msgid "Login mapping for %s is not defined" --msgstr "El mapeo de login para %s ya fue definido" -+msgstr "El mapeo de ingreso para %s no est� definido" - - #: ../semanage/seobject.py:306 --#, fuzzy, python-format -+#, python-format - msgid "Could not query seuser for %s" --msgstr "No se pudo fijar el nombre para %s" -- --#: ../semanage/seobject.py:321 --#, fuzzy --msgid "Could not srart semanage transaction" --msgstr "No se puede iniciar transacci�n�semanage" -+msgstr "No se pudo consultar seuser para %s" - --#: ../semanage/seobject.py:325 ../semanage/seobject.py:329 --#, fuzzy, python-format -+#: ../semanage/seobject.py:325 -+#: ../semanage/seobject.py:329 -+#, python-format - msgid "Could not modify login mapping for %s" --msgstr "No se pudo crear mapeo de login para %s" -+msgstr "No se pudo modificar el mapeo de ingreso para %s" - - #: ../semanage/seobject.py:355 --#, fuzzy, python-format -+#, python-format - msgid "Login mapping for %s is defined in policy, cannot be deleted" --msgstr "El mapeo de login para %s ya fue definido" -+msgstr "El mapeo de ingreso para %s se defini� en la pol�tica, no se puede eliminar" - --#: ../semanage/seobject.py:364 ../semanage/seobject.py:368 --#, fuzzy, python-format -+#: ../semanage/seobject.py:364 -+#: ../semanage/seobject.py:368 -+#, python-format - msgid "Could not delete login mapping for %s" --msgstr "No se pudo crear mapeo de login para %s" -+msgstr "No se pudo eliminar el mapeo de ingreso para %s" - - #: ../semanage/seobject.py:382 --#, fuzzy - msgid "Could not list login mappings" --msgstr "No se pudo crear mapeo de login para %s" -+msgstr "No se pudo listar los mapeos de ingreso" - --#: ../semanage/seobject.py:428 ../semanage/seobject.py:497 --#: ../semanage/seobject.py:553 ../semanage/seobject.py:559 --#, fuzzy, python-format -+#: ../semanage/seobject.py:428 -+#: ../semanage/seobject.py:497 -+#: ../semanage/seobject.py:553 -+#: ../semanage/seobject.py:559 -+#, python-format - msgid "Could not check if SELinux user %s is defined" --msgstr "No se pudo chequear si est� definido el mapeo de login para %s" -+msgstr "No se pudo chequear si el usuario SELinux %s est� definido" - - #: ../semanage/seobject.py:430 --#, fuzzy, python-format -+#, python-format - msgid "SELinux user %s is already defined" --msgstr "El mapeo de login para %s ya fue definido" -+msgstr "El usuario SELinux %s ya est� definido" - - #: ../semanage/seobject.py:434 --#, fuzzy, python-format -+#, python-format - msgid "Could not create SELinux user for %s" --msgstr "No se pudo crear una clave para %s" -+msgstr "N o se pudo crear el usuario SELinux para %s" - - #: ../semanage/seobject.py:443 --#, fuzzy, python-format -+#, python-format - msgid "Could not add role %s for %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo agregar el rol %s para %s" - - #: ../semanage/seobject.py:452 --#, fuzzy, python-format -+#, python-format - msgid "Could not set MLS level for %s" --msgstr "No se pudo fijar el rango MLS para %s" -+msgstr "No se pudo fijar el nivel MLS para %s" - - #: ../semanage/seobject.py:456 --#, fuzzy, python-format -+#, python-format - msgid "Could not add prefix %s for %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo agregar el prefijo %s para %s" - - #: ../semanage/seobject.py:459 --#, fuzzy, python-format -+#, python-format - msgid "Could not extract key for %s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo extraer la clave para %s" - --#: ../semanage/seobject.py:467 ../semanage/seobject.py:471 --#, fuzzy, python-format -+#: ../semanage/seobject.py:467 -+#: ../semanage/seobject.py:471 -+#, python-format - msgid "Could not add SELinux user %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "no se pudo agregar el usuario SELinux %s" - - #: ../semanage/seobject.py:487 - msgid "Requires prefix, roles, level or range" --msgstr "" -+msgstr "Se requiere prefijo, roles, nivel o rango" - - #: ../semanage/seobject.py:489 - msgid "Requires prefix or roles" --msgstr "" -+msgstr "Se requiere prefijo o roles" - --#: ../semanage/seobject.py:499 ../semanage/seobject.py:555 --#, fuzzy, python-format -+#: ../semanage/seobject.py:499 -+#: ../semanage/seobject.py:555 -+#, python-format - msgid "SELinux user %s is not defined" --msgstr "El Usuario de Linux %s no existe" -+msgstr "El usuario SELinux %s no es definido" - - #: ../semanage/seobject.py:503 --#, fuzzy, python-format -+#, python-format - msgid "Could not query user for %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo consultar usuario para %s" - --#: ../semanage/seobject.py:530 ../semanage/seobject.py:534 --#, fuzzy, python-format -+#: ../semanage/seobject.py:530 -+#: ../semanage/seobject.py:534 -+#, python-format - msgid "Could not modify SELinux user %s" --msgstr "No se pudo abrir el archivo %s\n" -+msgstr "No se pudo modificar el usuario SELinux %s" - - #: ../semanage/seobject.py:561 - #, python-format - msgid "SELinux user %s is defined in policy, cannot be deleted" --msgstr "" -+msgstr "El usuario SELinux %s est� definido en pol�tica, no puede ser borrado" - --#: ../semanage/seobject.py:569 ../semanage/seobject.py:573 --#, fuzzy, python-format -+#: ../semanage/seobject.py:569 -+#: ../semanage/seobject.py:573 -+#, python-format - msgid "Could not delete SELinux user %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo borrar el usuario SELinux %s" - - #: ../semanage/seobject.py:585 --#, fuzzy - msgid "Could not list SELinux users" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudieron listar los usuarios SELinux" - - #: ../semanage/seobject.py:591 --#, fuzzy, python-format -+#, python-format - msgid "Could not list roles for user %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudieron listar los roles para el usuario %s" - - #: ../semanage/seobject.py:625 - msgid "Protocol udp or tcp is required" --msgstr "" -+msgstr "Se requiere protocolo udp o tcp" - - #: ../semanage/seobject.py:627 - msgid "Port is required" --msgstr "" -+msgstr "Se requiere un puerto" - - #: ../semanage/seobject.py:638 --#, fuzzy, python-format -+#, python-format - msgid "Could not create a key for %s/%s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo crear una clave para %s/%s" - - #: ../semanage/seobject.py:649 - msgid "Type is required" --msgstr "" -+msgstr "Se requiere tipo" - --#: ../semanage/seobject.py:655 ../semanage/seobject.py:717 --#: ../semanage/seobject.py:751 ../semanage/seobject.py:757 --#, fuzzy, python-format -+#: ../semanage/seobject.py:655 -+#: ../semanage/seobject.py:717 -+#: ../semanage/seobject.py:751 -+#: ../semanage/seobject.py:757 -+#, python-format - msgid "Could not check if port %s/%s is defined" --msgstr "No se pudo chequear si est� definido el mapeo de login para %s" -+msgstr "No se pudo chequear si el puerto %s/%s est� definido" - - #: ../semanage/seobject.py:657 --#, fuzzy, python-format -+#, python-format - msgid "Port %s/%s already defined" --msgstr "El mapeo de login para %s ya fue definido" -+msgstr "El puerto %s/%s ya est� definido" - - #: ../semanage/seobject.py:661 --#, fuzzy, python-format -+#, python-format - msgid "Could not create port for %s/%s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo crear el puerto para %s/%s" - - #: ../semanage/seobject.py:667 --#, fuzzy, python-format -+#, python-format - msgid "Could not create context for %s/%s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo crear el contexto para %s/%s" - - #: ../semanage/seobject.py:671 --#, fuzzy, python-format -+#, python-format - msgid "Could not set user in port context for %s/%s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner al usuario en el contexto de puerto para %s/%s" - - #: ../semanage/seobject.py:675 --#, fuzzy, python-format -+#, python-format - msgid "Could not set role in port context for %s/%s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner el rol en el contexto de puerto para %s/%s" - - #: ../semanage/seobject.py:679 --#, fuzzy, python-format -+#, python-format - msgid "Could not set type in port context for %s/%s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner el tipo en el contexto de puerto para %s/%s" - - #: ../semanage/seobject.py:684 --#, fuzzy, python-format -+#, python-format - msgid "Could not set mls fields in port context for %s/%s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr " No se pudo fijar los campos mls en el contexto de puerto para %s/%s" - - #: ../semanage/seobject.py:688 --#, fuzzy, python-format -+#, python-format - msgid "Could not set port context for %s/%s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner el contexto de puerto para %s/%s" - --#: ../semanage/seobject.py:696 ../semanage/seobject.py:700 --#, fuzzy, python-format -+#: ../semanage/seobject.py:696 -+#: ../semanage/seobject.py:700 -+#, python-format - msgid "Could not add port %s/%s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo agregar puerto %s/%s" - --#: ../semanage/seobject.py:709 ../semanage/seobject.py:906 -+#: ../semanage/seobject.py:709 -+#: ../semanage/seobject.py:906 - msgid "Requires setype or serange" --msgstr "" -+msgstr "Se requiere setype o serange" - - #: ../semanage/seobject.py:711 - msgid "Requires setype" --msgstr "" -+msgstr "Se requiere setype" - --#: ../semanage/seobject.py:719 ../semanage/seobject.py:753 --#, fuzzy, python-format -+#: ../semanage/seobject.py:719 -+#: ../semanage/seobject.py:753 -+#, python-format - msgid "Port %s/%s is not defined" --msgstr "%s no est� en %s" -+msgstr "El puerto %s/%s no est� definido" - - #: ../semanage/seobject.py:723 --#, fuzzy, python-format -+#, python-format - msgid "Could not query port %s/%s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo consultar el puerto %s/%s" - --#: ../semanage/seobject.py:738 ../semanage/seobject.py:742 --#, fuzzy, python-format -+#: ../semanage/seobject.py:738 -+#: ../semanage/seobject.py:742 -+#, python-format - msgid "Could not modify port %s/%s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo modificar el puerto %s/%s" - - #: ../semanage/seobject.py:759 - #, python-format - msgid "Port %s/%s is defined in policy, cannot be deleted" --msgstr "" -+msgstr "El puerto %s/%s est� definido en la pol�tica, no se puede borrar" - --#: ../semanage/seobject.py:767 ../semanage/seobject.py:771 --#, fuzzy, python-format -+#: ../semanage/seobject.py:767 -+#: ../semanage/seobject.py:771 -+#, python-format - msgid "Could not delete port %s/%s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se puede borrar el puerto %s/%s" - --#: ../semanage/seobject.py:779 ../semanage/seobject.py:798 --#, fuzzy -+#: ../semanage/seobject.py:779 -+#: ../semanage/seobject.py:798 - msgid "Could not list ports" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pueden listar los puertos" - --#: ../semanage/seobject.py:842 ../semanage/seobject.py:1014 -+#: ../semanage/seobject.py:842 -+#: ../semanage/seobject.py:1014 - msgid "SELinux Type is required" --msgstr "" -+msgstr "Se requiere el tipo SELinux " - --#: ../semanage/seobject.py:846 ../semanage/seobject.py:910 --#: ../semanage/seobject.py:947 ../semanage/seobject.py:1018 --#, fuzzy, python-format -+#: ../semanage/seobject.py:846 -+#: ../semanage/seobject.py:910 -+#: ../semanage/seobject.py:947 -+#: ../semanage/seobject.py:1018 -+#, python-format - msgid "Could not create key for %s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo crear clave para %s" - --#: ../semanage/seobject.py:850 ../semanage/seobject.py:914 --#: ../semanage/seobject.py:951 ../semanage/seobject.py:957 --#, fuzzy, python-format -+#: ../semanage/seobject.py:850 -+#: ../semanage/seobject.py:914 -+#: ../semanage/seobject.py:951 -+#: ../semanage/seobject.py:957 -+#, python-format - msgid "Could not check if interface %s is defined" --msgstr "No se pudo chequear si est� definido el mapeo de login para %s" -+msgstr "No se pudo chequear si la interfase %s est� definida" - - #: ../semanage/seobject.py:852 --#, fuzzy, python-format -+#, python-format - msgid "Interface %s already defined" --msgstr "El mapeo de login para %s ya fue definido" -+msgstr "La interfase %s ya est� definida" - - #: ../semanage/seobject.py:856 --#, fuzzy, python-format -+#, python-format - msgid "Could not create interface for %s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo crear la interfase para %s" - --#: ../semanage/seobject.py:861 ../semanage/seobject.py:1033 --#, fuzzy, python-format -+#: ../semanage/seobject.py:861 -+#: ../semanage/seobject.py:1033 -+#, python-format - msgid "Could not create context for %s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo crear el contexto para %s" - - #: ../semanage/seobject.py:865 --#, fuzzy, python-format -+#, python-format - msgid "Could not set user in interface context for %s" --msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -+msgstr "No se pudo poner el usuario en el contexto de interfase para %s" - - #: ../semanage/seobject.py:869 --#, fuzzy, python-format -+#, python-format - msgid "Could not set role in interface context for %s" --msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -+msgstr "No se pudo fijar el rol en el contexto de interfase para %s" - - #: ../semanage/seobject.py:873 --#, fuzzy, python-format -+#, python-format - msgid "Could not set type in interface context for %s" --msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -+msgstr "No se pudo poner el tipo en el contexto de interfase para %s" - - #: ../semanage/seobject.py:878 --#, fuzzy, python-format -+#, python-format - msgid "Could not set mls fields in interface context for %s" --msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -+msgstr "No se pudieron poner los campos mls en el contexto de interfase para %s" - - #: ../semanage/seobject.py:882 --#, fuzzy, python-format -+#, python-format - msgid "Could not set interface context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner el contexto de interfase para %s" - - #: ../semanage/seobject.py:886 --#, fuzzy, python-format -+#, python-format - msgid "Could not set message context for %s" --msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -+msgstr "No se pudo poner el contexto de mensaje para %s" - --#: ../semanage/seobject.py:894 ../semanage/seobject.py:898 --#, fuzzy, python-format -+#: ../semanage/seobject.py:894 -+#: ../semanage/seobject.py:898 -+#, python-format - msgid "Could not add interface %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo agregar la interfase %s" - --#: ../semanage/seobject.py:916 ../semanage/seobject.py:953 -+#: ../semanage/seobject.py:916 -+#: ../semanage/seobject.py:953 - #, python-format - msgid "Interface %s is not defined" --msgstr "" -+msgstr "La interfase %s no est� definida" - - #: ../semanage/seobject.py:920 --#, fuzzy, python-format -+#, python-format - msgid "Could not query interface %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo consultar la interfase %s" - --#: ../semanage/seobject.py:935 ../semanage/seobject.py:939 --#, fuzzy, python-format -+#: ../semanage/seobject.py:935 -+#: ../semanage/seobject.py:939 -+#, python-format - msgid "Could not modify interface %s" --msgstr "No se pudo abrir el archivo %s\n" -+msgstr "No se pudo modificar la interfase %s" - - #: ../semanage/seobject.py:959 - #, python-format - msgid "Interface %s is defined in policy, cannot be deleted" --msgstr "" -+msgstr "La interfase %s est� definida en la pol�tica, no se puede borrar" - --#: ../semanage/seobject.py:967 ../semanage/seobject.py:971 --#, fuzzy, python-format -+#: ../semanage/seobject.py:967 -+#: ../semanage/seobject.py:971 -+#, python-format - msgid "Could not delete interface %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudo borrar la interfase %s" - - #: ../semanage/seobject.py:979 --#, fuzzy - msgid "Could not list interfaces" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pudieron listar las interfases" - --#: ../semanage/seobject.py:1022 ../semanage/seobject.py:1084 --#: ../semanage/seobject.py:1123 ../semanage/seobject.py:1129 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1022 -+#: ../semanage/seobject.py:1084 -+#: ../semanage/seobject.py:1123 -+#: ../semanage/seobject.py:1129 -+#, python-format - msgid "Could not check if file context for %s is defined" --msgstr "No se pudo chequear si est� definido el mapeo de login para %s" -+msgstr "No se pudo chequear si el contexto de archivo para %s est� definido" - - #: ../semanage/seobject.py:1024 --#, fuzzy, python-format -+#, python-format - msgid "File context for %s already defined" --msgstr "El mapeo de login para %s ya fue definido" -+msgstr "El contexto de archivo para %s ya est� definido" - - #: ../semanage/seobject.py:1028 --#, fuzzy, python-format -+#, python-format - msgid "Could not create file context for %s" --msgstr "No se pudo crear una clave para %s" -+msgstr "No se pudo crear el contexto de archivo para %s" - - #: ../semanage/seobject.py:1037 --#, fuzzy, python-format -+#, python-format - msgid "Could not set user in file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner al usuario en el contexto de archivo para %s" - - #: ../semanage/seobject.py:1041 --#, fuzzy, python-format -+#, python-format - msgid "Could not set role in file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner el rol en el contexto de archivo para %s" - - #: ../semanage/seobject.py:1045 --#, fuzzy, python-format -+#, python-format - msgid "Could not set type in file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner el tipo en el contexto de archivo para %s" - - #: ../semanage/seobject.py:1050 --#, fuzzy, python-format -+#, python-format - msgid "Could not set mls fields in file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudieron poner los campos mls en el contexto de archivo para %s" - - #: ../semanage/seobject.py:1056 --#, fuzzy, python-format -+#, python-format - msgid "Could not set file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo poner el contexto de archivo para %s" - --#: ../semanage/seobject.py:1064 ../semanage/seobject.py:1068 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1064 -+#: ../semanage/seobject.py:1068 -+#, python-format - msgid "Could not add file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo agregar el contexto de archivo para %s" - - #: ../semanage/seobject.py:1076 - msgid "Requires setype, serange or seuser" --msgstr "" -+msgstr "Se requiere setype, serange o seuser" - --#: ../semanage/seobject.py:1086 ../semanage/seobject.py:1125 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1086 -+#: ../semanage/seobject.py:1125 -+#, python-format - msgid "File context for %s is not defined" --msgstr "El mapeo de login para %s ya fue definido" -+msgstr "El contexto de archivo para %s no est� definido" - - #: ../semanage/seobject.py:1090 --#, fuzzy, python-format -+#, python-format - msgid "Could not query file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo consultar el contexto de archivo para %s" - --#: ../semanage/seobject.py:1107 ../semanage/seobject.py:1111 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1107 -+#: ../semanage/seobject.py:1111 -+#, python-format - msgid "Could not modify file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo modificar el contexto de archivo para %s" - - #: ../semanage/seobject.py:1131 - #, python-format - msgid "File context for %s is defined in policy, cannot be deleted" --msgstr "" -+msgstr "El contexto de archivo para %s est� definido en la pol�tica, no se puede borrar" - --#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1143 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1139 -+#: ../semanage/seobject.py:1143 -+#, python-format - msgid "Could not delete file context for %s" --msgstr "%s! No se pudo fijar el nuevo contexto para %s\n" -+msgstr "No se pudo borrar el contexto de archivo para %s" - - #: ../semanage/seobject.py:1151 --#, fuzzy - msgid "Could not list file contexts" --msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -+msgstr "No se pudieron listar los contextos de archivo" - - #: ../semanage/seobject.py:1189 - msgid "Requires value" --msgstr "" -+msgstr "Se requiere un valor" - --#: ../semanage/seobject.py:1197 ../semanage/seobject.py:1231 -+#: ../semanage/seobject.py:1197 -+#: ../semanage/seobject.py:1231 - #: ../semanage/seobject.py:1237 --#, fuzzy, python-format -+#, python-format - msgid "Could not check if boolean %s is defined" --msgstr "No se pudo chequear si est� definido el mapeo de login para %s" -+msgstr "No se pudo chequear si el booleano %s est� definido" - --#: ../semanage/seobject.py:1199 ../semanage/seobject.py:1233 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1199 -+#: ../semanage/seobject.py:1233 -+#, python-format - msgid "Boolean %s is not defined" --msgstr "%s no est� en %s" -+msgstr "El booleano %s no est� definido" - - #: ../semanage/seobject.py:1203 --#, fuzzy, python-format -+#, python-format - msgid "Could not query file context %s" --msgstr "No se pudo fijar el contexto de ejecuci�n a %s.\n" -+msgstr "No se udo consultar el contexto de archivo %s" - --#: ../semanage/seobject.py:1215 ../semanage/seobject.py:1219 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1215 -+#: ../semanage/seobject.py:1219 -+#, python-format - msgid "Could not modify boolean %s" --msgstr "No se pudo abrir el archivo %s\n" -+msgstr "No se pudo modificar el booleano %s" - - #: ../semanage/seobject.py:1239 - #, python-format - msgid "Boolean %s is defined in policy, cannot be deleted" --msgstr "" -+msgstr "El booleano %s est� definido en la pol�tica, no se puede borrar" - --#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1251 --#, fuzzy, python-format -+#: ../semanage/seobject.py:1247 -+#: ../semanage/seobject.py:1251 -+#, python-format - msgid "Could not delete boolean %s" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se puede borrar el booleano %s" - - #: ../semanage/seobject.py:1259 --#, fuzzy - msgid "Could not list booleans" --msgstr "No se pudo fijar el nombre para %s" -+msgstr "No se pueden listar los booleanos" - - #: ../audit2allow/audit2allow:179 - #, c-format - msgid "Generating type enforcment file: %s.te" --msgstr "" -+msgstr "Generando archivo de obediencia de tipo: %s.te" - - #: ../audit2allow/audit2allow:184 - msgid "Compiling policy" -@@ -979,3 +1030,4 @@ - #, c-format - msgid "Options Error: %s " - msgstr "Error Opciones:�%s�" -+ -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/et.po policycoreutils-1.30.9/po/et.po ---- nsapolicycoreutils/po/et.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/et.po 2006-05-16 21:43:37.000000000 -0400 -@@ -459,14 +459,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -489,10 +490,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/eu_ES.po policycoreutils-1.30.9/po/eu_ES.po ---- nsapolicycoreutils/po/eu_ES.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/eu_ES.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fa.po policycoreutils-1.30.9/po/fa.po ---- nsapolicycoreutils/po/fa.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/fa.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fi.po policycoreutils-1.30.9/po/fi.po ---- nsapolicycoreutils/po/fi.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/fi.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/fr.po policycoreutils-1.30.9/po/fr.po ---- nsapolicycoreutils/po/fr.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/fr.po 2006-05-16 21:43:37.000000000 -0400 -@@ -459,14 +459,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -489,10 +490,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gl.po policycoreutils-1.30.9/po/gl.po ---- nsapolicycoreutils/po/gl.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/gl.po 2006-05-16 21:43:37.000000000 -0400 -@@ -459,14 +459,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -489,10 +490,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/gu.po policycoreutils-1.30.9/po/gu.po ---- nsapolicycoreutils/po/gu.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/gu.po 2006-05-16 21:43:37.000000000 -0400 -@@ -7,8 +7,8 @@ - msgstr "" - "Project-Id-Version: gu\n" - "Report-Msgid-Bugs-To: \n" --"POT-Creation-Date: 2006-05-08 11:22-0400\n" --"PO-Revision-Date: 2006-05-05 12:03+0530\n" -+"POT-Creation-Date: 2006-05-10 08:32-0400\n" -+"PO-Revision-Date: 2006-05-09 17:57+0530\n" - "Last-Translator: Ankit Patel \n" - "Language-Team: Gujarati \n" - "MIME-Version: 1.0\n" -@@ -17,6 +17,7 @@ - "X-Generator: KBabel 1.9.1\n" - "Plural-Forms: nplurals=2; plural=(n!=1);\n" - "\n" -+"\n" - - #: ../load_policy/load_policy.c:22 - #, c-format -@@ -361,42 +362,40 @@ - msgstr "chcat -l +CompanyConfidential juser" - - #: ../semanage/semanage:122 --#, fuzzy - msgid "Requires 2 or more arguments" --msgstr "પૂર્વગ અથવા ભૂમિકાઓ જરૂરી છે" -+msgstr "૨ અથવા વધુ દલીલો જરૂરી છે" - - #: ../semanage/semanage:127 --#, fuzzy, c-format -+#, c-format - msgid "%s not defined" --msgstr "પોર્ટ %s/%s એ વ્યાખ્યાયિત નથી" -+msgstr "%s વ્યાખ્યાયિત નથી" - - #: ../semanage/semanage:151 --#, fuzzy, c-format -+#, c-format - msgid "%s not valid for %s objects\n" --msgstr "%s એ માન્ય સંદર્ભ નથી\n" -+msgstr "%s એ %s ઓબ્જેક્ટો માટે માન્ય સંદર્ભ નથી\n" - - #: ../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" --msgstr "" -+msgstr "તમારે ભૂમિકા સ્પષ્ટ કરવી જ પડશે" - - #: ../semanage/semanage:246 - msgid "You must specify a prefix" --msgstr "" -+msgstr "તમારે પૂર્વગ સ્પષ્ટ કરવો જ પડશે" - - #: ../semanage/semanage:295 --#, fuzzy, c-format -+#, c-format - msgid "Options Error %s " --msgstr "વિકલ્પો ભૂલ: %s " -+msgstr "વિકલ્પો ભૂલ %s " - - #: ../semanage/semanage:299 --#, fuzzy, c-format -+#, c-format - msgid "Invalid value %s" --msgstr "અમાન્ય સ્તર '%s' " -+msgstr "અમાન્ય કિંમત %s " - - #: ../semanage/seobject.py:124 - msgid "translations not supported on non-MLS machines" -@@ -484,14 +483,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "%s માટે SELinux વપરાશકર્તા સુયોજિત કરી શક્યા નહિં" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "semanage લેવડદેવડ શરૂ કરી શક્યા નહિં" - -@@ -514,10 +514,6 @@ - msgid "Could not query seuser for %s" - msgstr "%s માટે seuser પ્રશ્ન કરી શક્યા નહિં" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "semanage લેવડદેવડ શરૂ કરી શક્યા નહિં" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -@@ -974,3 +970,4 @@ - #, c-format - msgid "Options Error: %s " - msgstr "વિકલ્પો ભૂલ: %s " -+ -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/he.po policycoreutils-1.30.9/po/he.po ---- nsapolicycoreutils/po/he.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/he.po 2006-05-16 21:43:37.000000000 -0400 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: \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" -@@ -477,14 +477,15 @@ - msgid "Could not set SELinux user for %s" - msgstr "" - --#: ../semanage/seobject.py:269 ../semanage/seobject.py:359 --#: ../semanage/seobject.py:463 ../semanage/seobject.py:526 --#: ../semanage/seobject.py:565 ../semanage/seobject.py:692 --#: ../semanage/seobject.py:734 ../semanage/seobject.py:763 --#: ../semanage/seobject.py:890 ../semanage/seobject.py:931 --#: ../semanage/seobject.py:963 ../semanage/seobject.py:1060 --#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135 --#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243 -+#: ../semanage/seobject.py:269 ../semanage/seobject.py:321 -+#: ../semanage/seobject.py:359 ../semanage/seobject.py:463 -+#: ../semanage/seobject.py:526 ../semanage/seobject.py:565 -+#: ../semanage/seobject.py:692 ../semanage/seobject.py:734 -+#: ../semanage/seobject.py:763 ../semanage/seobject.py:890 -+#: ../semanage/seobject.py:931 ../semanage/seobject.py:963 -+#: ../semanage/seobject.py:1060 ../semanage/seobject.py:1103 -+#: ../semanage/seobject.py:1135 ../semanage/seobject.py:1211 -+#: ../semanage/seobject.py:1243 - msgid "Could not start semanage transaction" - msgstr "" - -@@ -507,10 +508,6 @@ - msgid "Could not query seuser for %s" - msgstr "" - --#: ../semanage/seobject.py:321 --msgid "Could not srart semanage transaction" --msgstr "" -- - #: ../semanage/seobject.py:325 ../semanage/seobject.py:329 - #, python-format - msgid "Could not modify login mapping for %s" -diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hi.po policycoreutils-1.30.9/po/hi.po ---- nsapolicycoreutils/po/hi.po 2006-05-15 09:43:12.000000000 -0400 -+++ policycoreutils-1.30.9/po/hi.po 2006-05-16 21:43:37.000000000 -0400 -@@ -1,248 +1,249 @@ --# SOME DESCRIPTIVE TITLE. --# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -+# translation of hi.po to Hindi - # This file is distributed under the same license as the PACKAGE package. --# FIRST AUTHOR , YEAR. -+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. -+# Rajesh Ranjan , 2006. - # --#, fuzzy - msgid "" - msgstr "" --"Project-Id-Version: PACKAGE VERSION\n" -+"Project-Id-Version: hi\n" - "Report-Msgid-Bugs-To: \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-02 20:34-0400\n" -+"PO-Revision-Date: 2006-05-09 15:25+0530\n" -+"Last-Translator: Rajesh Ranjan \n" -+"Language-Team: Hindi \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -+"X-Generator: KBabel 1.9.1\n" -+"Plural-Forms: nplurals=2; plural=(n!=1);\n\n" - - #: ../load_policy/load_policy.c:22 - #, c-format - msgid "usage: %s [-bq]\n" --msgstr "" -+msgstr "प्रयोग: %s [-bq]\n" - - #: ../load_policy/load_policy.c:62 - #, c-format - msgid "%s: Can't load policy: %s\n" --msgstr "" -+msgstr "%s: नीति नहीं लोड कर सकता है: %s\n" - - #: ../newrole/newrole.c:97 - #, c-format - msgid "Out of memory!\n" --msgstr "" -+msgstr "स्मृति के बाहर!\n" - - #: ../newrole/newrole.c:201 ../run_init/run_init.c:126 - #, c-format - msgid "failed to initialize PAM\n" --msgstr "" -+msgstr "PAM आरंभीकरण में विफल\n" - - #: ../newrole/newrole.c:212 - #, c-format - msgid "failed to set PAM_TTY\n" --msgstr "" -+msgstr "PAM_TTY सेट करने में विफल\n" - - #: ../newrole/newrole.c:250 ../run_init/run_init.c:155 - msgid "Password:" --msgstr "" -+msgstr "शब्दकूट:" - - #: ../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 "आपकी प्रविष्टि को छाया शब्दकूट फाइल में प्रविष्ट नहीं कर सका.\n" - - #: ../newrole/newrole.c:288 ../run_init/run_init.c:193 - #, c-format - msgid "getpass cannot open /dev/tty\n" --msgstr "" -+msgstr "getpass /dev/tty खोल नहीं सकता\n" - - #: ../newrole/newrole.c:354 - #, c-format - msgid "Error initing capabilities, aborting.\n" --msgstr "" -+msgstr "त्रुटि initing क्षमता, त्याग रहा है.\n" - - #: ../newrole/newrole.c:367 - #, c-format - msgid "Error dropping capabilities, aborting\n" --msgstr "" -+msgstr "त्रुटि त्याग क्षमता, त्याग रहा है\n" - - #: ../newrole/newrole.c:374 - #, c-format - msgid "Error changing uid, aborting.\n" --msgstr "" -+msgstr "त्रुटि uid बदल रहा है, त्याग रहा है.\n" - - #: ../newrole/newrole.c:380 - #, c-format - msgid "Error resetting KEEPCAPS, aborting\n" --msgstr "" -+msgstr "त्रुटि KEEPCAPS फिर सेट कर रहा है, त्याग रहा है\n" - - #: ../newrole/newrole.c:386 - #, c-format - msgid "Error dropping SETUID capability, aborting\n" --msgstr "" -+msgstr "त्रुटि SETUID क्षमता छोड़ रहा है, त्याग रहा है\n" - - #: ../newrole/newrole.c:459 - #, c-format - msgid "Sorry, newrole may be used only on a SELinux kernel.\n" --msgstr "" -+msgstr "क्षमा करें, newrole सिर्फ SELinux कर्नेल पर प्रयोग किया जा सकता है.\n" - - #: ../newrole/newrole.c:464 - #, c-format - msgid "Could not determine enforcing mode.\n" --msgstr "" -+msgstr "पुनर्बलन मोड निश्चित नहीं कर सका.\n" - - #: ../newrole/newrole.c:481 - #, c-format - msgid "Error: multiple roles specified\n" --msgstr "" -+msgstr "त्रुटि: बहुल भूमिका निर्दिष्ट\n" - - #: ../newrole/newrole.c:490 - #, c-format - msgid "Error: multiple types specified\n" --msgstr "" -+msgstr "त्रुटि: बहुल प्रकार निर्दिष्ट\n" - - #: ../newrole/newrole.c:498 - #, c-format - msgid "Sorry, -l may be used with SELinux MLS support.\n" --msgstr "" -+msgstr "क्षमा करें, -l को SELinux MLS समर्थन के साथ प्रयोग किया जा सकता है.\n" - - #: ../newrole/newrole.c:503 - #, c-format - msgid "Error: multiple levels specified\n" --msgstr "" -+msgstr "त्रुटि: बहुल स्तर निर्दिष्ट\n" - - #: ../newrole/newrole.c:527 - #, c-format - msgid "Couldn't get default type.\n" --msgstr "" -+msgstr "मूलभूत प्रकार नहीं पा सका.\n" - - #: ../newrole/newrole.c:549 - #, c-format - msgid "failed to get old_context.\n" --msgstr "" -+msgstr "old_context को पाने में विफल.\n" - - #: ../newrole/newrole.c:563 - #, c-format - msgid "failed to get new context.\n" --msgstr "" -+msgstr "नये संदर्भ पाने में विफल.\n" - - #: ../newrole/newrole.c:586 - #, c-format - msgid "cannot find your entry in the passwd file.\n" --msgstr "" -+msgstr "passwd फाइल में आपकी प्रविष्टि नहीं पा सकता.\n" - - #: ../newrole/newrole.c:596 - #, c-format - msgid "Error! Shell is not valid.\n" --msgstr "" -+msgstr "त्रुटि! शेल वैध नहीं है.\n" - - #: ../newrole/newrole.c:603 - #, c-format - msgid "Error! Could not retrieve tty information.\n" --msgstr "" -+msgstr "त्रुटि! tty सूचना नहीं पा सकता.\n" - - #: ../newrole/newrole.c:607 - #, c-format - msgid "Authenticating %s.\n" --msgstr "" -+msgstr "सत्यापित कर रहा है %s.\n" - - #: ../newrole/newrole.c:621 - #, c-format - msgid "newrole: incorrect password for %s\n" --msgstr "" -+msgstr "newrole: %s के लिये गलत शब्दकूट\n" - - #: ../newrole/newrole.c:645 - #, c-format - msgid "failed to set new role %s\n" --msgstr "" -+msgstr "%s नयी भूमिका नहीं सेट कर सका\n" - - #: ../newrole/newrole.c:657 - #, c-format - msgid "failed to set new type %s\n" --msgstr "" -+msgstr "नया प्रकार %s सेट करने में विफल\n" - - #: ../newrole/newrole.c:670 - #, c-format - msgid "failed to build new range with level %s\n" --msgstr "" -+msgstr "%s स्तर के साथ नया परिसर बनाने में विफल\n" - - #: ../newrole/newrole.c:674 - #, c-format - msgid "failed to set new range %s\n" --msgstr "" -+msgstr "%s नया परिसर सेट करने में विफल\n" - - #: ../newrole/newrole.c:688 - #, c-format - msgid "failed to convert new context to string\n" --msgstr "" -+msgstr "नया संदर्भ स्ट्रिंग में बदलने में विफल\n" - - #: ../newrole/newrole.c:698 - #, c-format - msgid "%s is not a valid context\n" --msgstr "" -+msgstr "%s एक वैध संदर्भ नहीं है\n" - - #: ../newrole/newrole.c:711 - #, c-format - msgid "Error! Could not open %s.\n" --msgstr "" -+msgstr "त्रुटि! %s खोल नहीं सकता.\n" - - #: ../newrole/newrole.c:717 - #, c-format - msgid "%s! Could not get current context for %s, not relabeling tty.\n" --msgstr "" -+msgstr "%s! %s के लिये मौजूदा संदर्भ नहीं पा सकता, tty फिर लेबल नहीं कर रहा है.\n" - - #: ../newrole/newrole.c:728 - #, c-format - msgid "%s! Could not get new context for %s, not relabeling tty.\n" --msgstr "" -+msgstr "%s! %s के लिये नया संदर्भ नहीं पा सका, tty फिर लेबल नहीं कर सकता.\n" - - #: ../newrole/newrole.c:740 - #, c-format - msgid "%s! Could not set new context for %s\n" --msgstr "" -+msgstr "%s! %s के लिये नया संदर्भ नहीं सेट कर सका\n" - - #: ../newrole/newrole.c:752 - #, c-format - msgid "newrole: failure forking: %s" --msgstr "" -+msgstr "newrole: विभाजन में विफलता: %s" - - #: ../newrole/newrole.c:754 - #, c-format - msgid "Warning! Could not restore context for %s\n" --msgstr "" -+msgstr "चेतावनी! %s के लिये संदर्भ फिर नहीं जमा कर सका\n" - - #: ../newrole/newrole.c:774 - #, c-format - msgid "%s changed labels.\n" --msgstr "" -+msgstr "%s लेबल बदला.\n" - - #: ../newrole/newrole.c:798 - #, c-format - msgid "Could not close descriptors.\n" --msgstr "" -+msgstr "विवरणकर्ता बंद नहीं सका.\n" - - #: ../newrole/newrole.c:832 ../run_init/run_init.c:390 - #, c-format - msgid "Could not set exec context to %s.\n" --msgstr "" -+msgstr "exec संदर्भ %s में सेट नहीं कर सका.\n" - - #: ../newrole/newrole.c:842 - #, c-format - msgid "Error connecting to audit system.\n" --msgstr "" -+msgstr "सिस्टम ऑडिट संबंधन में त्रुटि.\n" - - #: ../newrole/newrole.c:847 - #, c-format - msgid "Error allocating memory.\n" --msgstr "" -+msgstr "स्मृति संभाजन में त्रुटि.\n" - - #: ../newrole/newrole.c:853 - #, c-format - msgid "Error sending audit message.\n" --msgstr "" -+msgstr "ऑडिट संदेश भेजने में त्रुटि.\n" - - #: ../newrole/newrole.c:864 - msgid "failed to exec shell\n" --msgstr "" -+msgstr "शेल निष्पादन में विफल\n" - - #: ../run_init/run_init.c:67 - msgid "" -@@ -250,187 +251,154 @@ - " where: