30887f2b45
- Fix exception in genhomedircon
9972 lines
348 KiB
Diff
9972 lines
348 KiB
Diff
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
|
||
--- 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
|
||
@@ -1,7 +1,6 @@
|
||
# Installation directories.
|
||
PREFIX ?= ${DESTDIR}/usr
|
||
BINDIR ?= $(PREFIX)/bin
|
||
-LIBDIR ?= $(PREFIX)/lib
|
||
MANDIR ?= $(PREFIX)/share/man
|
||
LOCALEDIR ?= /usr/share/locale
|
||
PYLIBVER ?= python2.4
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <runab@redhat.com>, 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"
|
||
+"POT-Creation-Date: 2006-05-10 08:32-0400\n"
|
||
+"PO-Revision-Date: 2006-05-09 18:04+0530\n"
|
||
"Last-Translator: Runa Bhattacharjee <runab@redhat.com>\n"
|
||
"Language-Team: Bangla (INDIA) <redhat-translation@bengalinux.org>\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
|
||
+#, 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 বৈধ 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
|
||
+#, 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"
|
||
@@ -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 "
|
||
+
|
||
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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>, 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ó <josep.puigdemont@gmail.com>, 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 <EMAIL@ADDRESS>\n"
|
||
-"Language-Team: LANGUAGE <LL@li.org>\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ó <josep.puigdemont@gmail.com>\n"
|
||
+"Language-Team: Catalan <tradgnome@softcatala.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <linux@wansing-online.de>\n"
|
||
"Language-Team: German <debian-l10n-german@lists.debian.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <beckerde@hotmail.com>, 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. <guillermo.gomez@gmail.com>\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 <beckerde@hotmail.com>\n"
|
||
"Language-Team: <es@li.org>\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<73>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<63>n a %s.\n"
|
||
@@ -279,11 +281,13 @@
|
||
msgid "authentication failed.\n"
|
||
msgstr "fall<6C> la autenticaci<63>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<6F>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<73> 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<73> 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<6F>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<73> 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:<3A>%s<>"
|
||
+msgstr "Error en Opciones %s"
|
||
|
||
#: ../semanage/semanage:299
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "Invalid value %s"
|
||
-msgstr "Nivel inv<6E>lido '%s'"
|
||
+msgstr "Valor inv<6E>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<6F>tica SELinux es no manejada o no se puede acceder al almacenamiento."
|
||
+msgstr "La pol<6F>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<78>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<73> 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<63>n<EFBFBD>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<73> 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<63>n<EFBFBD>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<6E> en la pol<6F>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<73> definido el mapeo de login para %s"
|
||
+msgstr "No se pudo chequear si el usuario SELinux %s est<73> 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<73> 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<73> definido en pol<6F>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<73> definido el mapeo de login para %s"
|
||
+msgstr "No se pudo chequear si el puerto %s/%s est<73> 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<73> 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<73> en %s"
|
||
+msgstr "El puerto %s/%s no est<73> 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<73> definido en la pol<6F>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<73> definido el mapeo de login para %s"
|
||
+msgstr "No se pudo chequear si la interfase %s est<73> 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<73> 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<63>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<63>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<63>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<63>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<63>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<73> 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<73> definida en la pol<6F>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<73> definido el mapeo de login para %s"
|
||
+msgstr "No se pudo chequear si el contexto de archivo para %s est<73> 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<73> 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<73> 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<73> definido en la pol<6F>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<63>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<73> definido el mapeo de login para %s"
|
||
+msgstr "No se pudo chequear si el booleano %s est<73> 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<73> en %s"
|
||
+msgstr "El booleano %s no est<73> 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<63>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<73> definido en la pol<6F>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:<3A>%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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <ankit@redhat.com>\n"
|
||
"Language-Team: Gujarati <fedora-trans-gu@redhat.com>\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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>, YEAR.
|
||
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
|
||
+# Rajesh Ranjan <rranjan@redhat.com>, 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 <EMAIL@ADDRESS>\n"
|
||
-"Language-Team: LANGUAGE <LL@li.org>\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 <rranjan@redhat.com>\n"
|
||
+"Language-Team: Hindi <fedora-trans-hi@redhat.com>\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: <script> is the name of the init script to run,\n"
|
||
" <args ...> are the arguments to that script."
|
||
msgstr ""
|
||
+"प्रयोग: run_init <script> <args ...>\n"
|
||
+" जहां: <script> init स्क्रिप्ट का नाम है चलाने के लिये,\n"
|
||
+" <args ...> यह उस स्क्रिप्ट का तर्क है."
|
||
|
||
#: ../run_init/run_init.c:264
|
||
#, c-format
|
||
msgid "run_init: incorrect password for %s\n"
|
||
-msgstr ""
|
||
+msgstr "run_init: %s के लिये गलत शब्दकूट\n"
|
||
|
||
#: ../run_init/run_init.c:295
|
||
#, c-format
|
||
msgid "Could not open file %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s फाइल खोल नहीं सका\n"
|
||
|
||
#: ../run_init/run_init.c:322
|
||
#, c-format
|
||
msgid "No context in file %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s फाइल में कोई संदर्भ नहीं\n"
|
||
|
||
#: ../run_init/run_init.c:345
|
||
#, c-format
|
||
msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
|
||
-msgstr ""
|
||
+msgstr "क्षमा करें, run_init को सिर्फ SELinux कर्नेल पर प्रयोग किया जा सकता है.\n"
|
||
|
||
#: ../run_init/run_init.c:364
|
||
#, c-format
|
||
msgid "authentication failed.\n"
|
||
-msgstr ""
|
||
+msgstr "सत्यापन विफल.\n"
|
||
|
||
#: ../scripts/chcat:70 ../scripts/chcat:140
|
||
msgid "Requires at least one category"
|
||
-msgstr ""
|
||
+msgstr "कम से कम एक श्रेणी जरूरी"
|
||
|
||
#: ../scripts/chcat:84 ../scripts/chcat:154
|
||
#, c-format
|
||
msgid "Can not modify sensitivity levels using '+' on %s"
|
||
-msgstr ""
|
||
+msgstr "'+' %s पर प्रयोग करते हुये संवेदनशीलता स्तर नहीं बदल सकता है"
|
||
|
||
#: ../scripts/chcat:88
|
||
#, c-format
|
||
msgid "%s is already in %s"
|
||
-msgstr ""
|
||
+msgstr "%s पहले से %s में है"
|
||
|
||
#: ../scripts/chcat:159 ../scripts/chcat:169
|
||
#, c-format
|
||
msgid "%s is not in %s"
|
||
-msgstr ""
|
||
+msgstr "%s %s में नहीं है"
|
||
|
||
#: ../scripts/chcat:232 ../scripts/chcat:237
|
||
msgid "Can not combine +/- with other types of categories"
|
||
-msgstr ""
|
||
+msgstr "+/- को अन्य श्रेणी प्रकार से जोड़ नहीं सकता"
|
||
|
||
#: ../scripts/chcat:282
|
||
msgid "Can not have multiple sensitivities"
|
||
-msgstr ""
|
||
+msgstr "बहुल संवेदनशीलता नहीं रख सकता है"
|
||
|
||
#: ../scripts/chcat:288
|
||
#, c-format
|
||
msgid "Usage %s CATEGORY File ..."
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s CATEGORY फाइल ..."
|
||
|
||
#: ../scripts/chcat:289
|
||
#, c-format
|
||
msgid "Usage %s -l CATEGORY user ..."
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s -l CATEGORY उपयोक्ता ..."
|
||
|
||
#: ../scripts/chcat:290
|
||
#, c-format
|
||
msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s [[+|-]CATEGORY],...]q फाइल ..."
|
||
|
||
#: ../scripts/chcat:291
|
||
#, c-format
|
||
msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s -l [[+|-]CATEGORY],...]q उपयोक्ता ..."
|
||
|
||
#: ../scripts/chcat:292
|
||
#, c-format
|
||
msgid "Usage %s -d File ..."
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s -d फाइल ..."
|
||
|
||
#: ../scripts/chcat:293
|
||
#, c-format
|
||
msgid "Usage %s -l -d user ..."
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s -l -d उपयोक्ता ..."
|
||
|
||
#: ../scripts/chcat:294
|
||
#, c-format
|
||
msgid "Usage %s -L"
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s -L"
|
||
|
||
#: ../scripts/chcat:295
|
||
#, c-format
|
||
msgid "Usage %s -L -l user"
|
||
-msgstr ""
|
||
+msgstr "प्रयोग %s -L -l उपयोक्ता"
|
||
|
||
#: ../scripts/chcat:296
|
||
msgid "Use -- to end option list. For example"
|
||
-msgstr ""
|
||
+msgstr "प्रयोग करें -- विकल्प सूची समाप्त करने के लिये. उदाहरण के लिये"
|
||
|
||
#: ../scripts/chcat:297
|
||
msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
|
||
-msgstr ""
|
||
+msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
|
||
|
||
#: ../scripts/chcat:298
|
||
msgid "chcat -l +CompanyConfidential juser"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:122
|
||
-msgid "Requires 2 or more arguments"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:127
|
||
-#, c-format
|
||
-msgid "%s not defined"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:151
|
||
-#, c-format
|
||
-msgid "%s not valid for %s objects\n"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:178 ../semanage/semanage:186
|
||
-msgid "range not supported on Non MLS machines"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:244
|
||
-msgid "You must specify a role"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:246
|
||
-msgid "You must specify a prefix"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:295
|
||
-#, c-format
|
||
-msgid "Options Error %s "
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:299
|
||
-#, c-format
|
||
-msgid "Invalid value %s"
|
||
-msgstr ""
|
||
+msgstr "chcat -l +CompanyConfidential juser"
|
||
|
||
#: ../semanage/seobject.py:124
|
||
msgid "translations not supported on non-MLS machines"
|
||
-msgstr ""
|
||
+msgstr "गैर-MLS मशीन पर अनुवाद समर्थित नहीं"
|
||
|
||
#: ../semanage/seobject.py:131
|
||
#, python-format
|
||
msgid "Unable to open %s: translations not supported on non-MLS machines"
|
||
-msgstr ""
|
||
+msgstr "%s खोलने में असमर्थ: गैर-MLS मशीन पर अनुवाद समर्थित नहीं"
|
||
|
||
#: ../semanage/seobject.py:171 ../semanage/seobject.py:185
|
||
#, python-format
|
||
msgid "Translations can not contain spaces '%s' "
|
||
-msgstr ""
|
||
+msgstr "अनुवाद में '%s' खाली स्थान नहीं होते हैं."
|
||
|
||
#: ../semanage/seobject.py:174
|
||
#, python-format
|
||
msgid "Invalid Level '%s' "
|
||
-msgstr ""
|
||
+msgstr "अवैध स्तर '%s' "
|
||
|
||
#: ../semanage/seobject.py:177
|
||
#, python-format
|
||
msgid "%s already defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s पहले से अनुवाद में परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:189
|
||
#, python-format
|
||
msgid "%s not defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s अनुवाद में परिभाषित नहीं है"
|
||
|
||
#: ../semanage/seobject.py:209
|
||
msgid "SELinux policy is not managed or store cannot be accessed."
|
||
-msgstr ""
|
||
+msgstr "SELinux नीति प्रबंधित नहीं है या भंडार अभिगम नहीं किया जा सकता है."
|
||
|
||
#: ../semanage/seobject.py:214
|
||
msgid "Cannot read policy store."
|
||
-msgstr ""
|
||
+msgstr "नीति भंडार नहीं पढ़ सकता है."
|
||
|
||
#: ../semanage/seobject.py:219
|
||
msgid "Could not establish semanage connection"
|
||
-msgstr ""
|
||
+msgstr "semanage संबंधन स्थापित नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:238 ../semanage/seobject.py:296
|
||
#: ../semanage/seobject.py:343 ../semanage/seobject.py:424
|
||
@@ -439,43 +407,43 @@
|
||
#: ../semanage/seobject.py:1193 ../semanage/seobject.py:1227
|
||
#, python-format
|
||
msgid "Could not create a key for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये कुंजी नहीं बना सका"
|
||
|
||
#: ../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 ""
|
||
+msgstr "नहीं जांच सका अगर %s के लिये लॉगिन मैपिंग परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:244
|
||
#, python-format
|
||
msgid "Login mapping for %s is already defined"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये लॉगिन मैपिंग पहले से परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:248
|
||
#, python-format
|
||
msgid "Linux User %s does not exist"
|
||
-msgstr ""
|
||
+msgstr "Linux उपयोक्ता %s मौजूद नहीं है"
|
||
|
||
#: ../semanage/seobject.py:252
|
||
#, python-format
|
||
msgid "Could not create login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये लॉगिन मैपिंग नहीं बना सका"
|
||
|
||
#: ../semanage/seobject.py:256 ../semanage/seobject.py:438
|
||
#, python-format
|
||
msgid "Could not set name for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये नाम सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:261 ../semanage/seobject.py:448
|
||
#, python-format
|
||
msgid "Could not set MLS range for %s"
|
||
-msgstr ""
|
||
+msgstr "MLS परिसर %s के लिये सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:265
|
||
#, python-format
|
||
msgid "Could not set SELinux user for %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s के लिये सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:269 ../semanage/seobject.py:359
|
||
#: ../semanage/seobject.py:463 ../semanage/seobject.py:526
|
||
@@ -485,466 +453,465 @@
|
||
#: ../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/seobject.py:273 ../semanage/seobject.py:277
|
||
#, python-format
|
||
msgid "Could not add login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये लॉगिन मैपिंग जोड़ नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:292
|
||
msgid "Requires seuser or serange"
|
||
-msgstr ""
|
||
+msgstr "seuser या serange जरूरी"
|
||
|
||
#: ../semanage/seobject.py:302 ../semanage/seobject.py:349
|
||
#, python-format
|
||
msgid "Login mapping for %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये लॉगिन मैपिंग परिभाषित नहीं है"
|
||
|
||
#: ../semanage/seobject.py:306
|
||
#, python-format
|
||
msgid "Could not query seuser for %s"
|
||
-msgstr ""
|
||
+msgstr "seuser को %s के लिये प्रश्न नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:321
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr ""
|
||
+msgid "Could not start semanage transaction"
|
||
+msgstr "semanage विनिमय आरंभ नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:325 ../semanage/seobject.py:329
|
||
#, python-format
|
||
msgid "Could not modify login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये लॉगिन मैपिंग नहीं रूपांतरित कर सका"
|
||
|
||
#: ../semanage/seobject.py:355
|
||
#, python-format
|
||
msgid "Login mapping for %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "नीति में %s परिभाषित है, मिटाया नहीं जा सकता"
|
||
|
||
#: ../semanage/seobject.py:364 ../semanage/seobject.py:368
|
||
#, python-format
|
||
msgid "Could not delete login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये लॉगिन मैपिंग नहीं मिटा सका"
|
||
|
||
#: ../semanage/seobject.py:382
|
||
msgid "Could not list login mappings"
|
||
-msgstr ""
|
||
+msgstr "लॉगिन मैपिंग नहीं सूचीबद्ध कर सका"
|
||
|
||
#: ../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 ""
|
||
+msgstr "जांच नहीं सका कि SELinux उपयोक्ता %s परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:430
|
||
#, python-format
|
||
msgid "SELinux user %s is already defined"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s पहले से परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:434
|
||
#, python-format
|
||
msgid "Could not create SELinux user for %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s के लिये बना नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:443
|
||
#, python-format
|
||
msgid "Could not add role %s for %s"
|
||
-msgstr ""
|
||
+msgstr "%s भूमिका %s के लिये जोड़ नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:452
|
||
#, python-format
|
||
msgid "Could not set MLS level for %s"
|
||
-msgstr ""
|
||
+msgstr "MLS स्तर %s के लिये सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:456
|
||
#, python-format
|
||
msgid "Could not add prefix %s for %s"
|
||
-msgstr ""
|
||
+msgstr "%s उपसर्ग %s के लिये नहीं जोड़ सका"
|
||
|
||
#: ../semanage/seobject.py:459
|
||
#, python-format
|
||
msgid "Could not extract key for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये कुंजी निकाल नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:467 ../semanage/seobject.py:471
|
||
#, python-format
|
||
msgid "Could not add SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s नहीं जोड़ सका"
|
||
|
||
#: ../semanage/seobject.py:487
|
||
msgid "Requires prefix, roles, level or range"
|
||
-msgstr ""
|
||
+msgstr "उपसर्ग, भूमिका, स्तर या परिसर जरूरी"
|
||
|
||
#: ../semanage/seobject.py:489
|
||
msgid "Requires prefix or roles"
|
||
-msgstr ""
|
||
+msgstr "उपसर्ग या भूमिका जरूरी"
|
||
|
||
#: ../semanage/seobject.py:499 ../semanage/seobject.py:555
|
||
#, python-format
|
||
msgid "SELinux user %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s परिभाषित नहीं है"
|
||
|
||
#: ../semanage/seobject.py:503
|
||
#, python-format
|
||
msgid "Could not query user for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये उपयोक्ता को प्रश्न नहीं कर सकता"
|
||
|
||
#: ../semanage/seobject.py:530 ../semanage/seobject.py:534
|
||
#, python-format
|
||
msgid "Could not modify SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s नहीं सुधार सकता"
|
||
|
||
#: ../semanage/seobject.py:561
|
||
#, python-format
|
||
msgid "SELinux user %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s नीति में परिभाषित है, मिटा नहीं सकता"
|
||
|
||
#: ../semanage/seobject.py:569 ../semanage/seobject.py:573
|
||
#, python-format
|
||
msgid "Could not delete SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता %s मिटा नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:585
|
||
msgid "Could not list SELinux users"
|
||
-msgstr ""
|
||
+msgstr "SELinux उपयोक्ता सूचीबद्ध नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:591
|
||
#, python-format
|
||
msgid "Could not list roles for user %s"
|
||
-msgstr ""
|
||
+msgstr "%s उपयोक्ता के लिये भूमिका सूचीबद्ध नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:625
|
||
msgid "Protocol udp or tcp is required"
|
||
-msgstr ""
|
||
+msgstr "प्रोटोकॉल udp या tcp जरूरी है"
|
||
|
||
#: ../semanage/seobject.py:627
|
||
msgid "Port is required"
|
||
-msgstr ""
|
||
+msgstr "पोर्ट जरूरी है"
|
||
|
||
#: ../semanage/seobject.py:638
|
||
#, python-format
|
||
msgid "Could not create a key for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये कुंजी नहीं बना सका"
|
||
|
||
#: ../semanage/seobject.py:649
|
||
msgid "Type is required"
|
||
-msgstr ""
|
||
+msgstr "टाइप जरूरी है"
|
||
|
||
#: ../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 ""
|
||
+msgstr "जांच नहीं सका अगर पोर्ट %s/%s परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:657
|
||
#, python-format
|
||
msgid "Port %s/%s already defined"
|
||
-msgstr ""
|
||
+msgstr "%s/%s पोर्ट पहले से परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:661
|
||
#, python-format
|
||
msgid "Could not create port for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये पोर्ट बना नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:667
|
||
#, python-format
|
||
msgid "Could not create context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये संदर्भ बना नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:671
|
||
#, python-format
|
||
msgid "Could not set user in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये पोर्ट संदर्भ में उपयोक्ता सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:675
|
||
#, python-format
|
||
msgid "Could not set role in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये पोर्ट संदर्भ में भूमिका सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:679
|
||
#, python-format
|
||
msgid "Could not set type in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये पोर्ट संदर्भ में टाइप सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:684
|
||
#, python-format
|
||
msgid "Could not set mls fields in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये पोर्ट संदर्भ में क्षेत्र mls सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:688
|
||
#, python-format
|
||
msgid "Could not set port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s के लिये पोर्ट संदर्भ सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:696 ../semanage/seobject.py:700
|
||
#, python-format
|
||
msgid "Could not add port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s पोर्ट जोड़ नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:709 ../semanage/seobject.py:906
|
||
msgid "Requires setype or serange"
|
||
-msgstr ""
|
||
+msgstr "setype या serange जरूरी"
|
||
|
||
#: ../semanage/seobject.py:711
|
||
msgid "Requires setype"
|
||
-msgstr ""
|
||
+msgstr "सेटटाइप जरूरी"
|
||
|
||
#: ../semanage/seobject.py:719 ../semanage/seobject.py:753
|
||
#, python-format
|
||
msgid "Port %s/%s is not defined"
|
||
-msgstr ""
|
||
+msgstr "पोर्ट %s/%s परिभाषित नहीं है"
|
||
|
||
#: ../semanage/seobject.py:723
|
||
#, python-format
|
||
msgid "Could not query port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s पोर्ट प्रश्न नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:738 ../semanage/seobject.py:742
|
||
#, python-format
|
||
msgid "Could not modify port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s पोर्ट रूपांतरित नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:759
|
||
#, python-format
|
||
msgid "Port %s/%s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "%s/%s नीति में परिभाषित है, मिटा नहीं सकता"
|
||
|
||
#: ../semanage/seobject.py:767 ../semanage/seobject.py:771
|
||
#, python-format
|
||
msgid "Could not delete port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s पोर्ट मिटा नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:779 ../semanage/seobject.py:798
|
||
msgid "Could not list ports"
|
||
-msgstr ""
|
||
+msgstr "पोर्ट सूची बद्ध नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:842 ../semanage/seobject.py:1014
|
||
msgid "SELinux Type is required"
|
||
-msgstr ""
|
||
+msgstr "SELinux प्रकार जरूरी है"
|
||
|
||
#: ../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 ""
|
||
+msgstr "%s के लिये कुंजी नहीं बना सका"
|
||
|
||
#: ../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 ""
|
||
+msgstr "जांच नहीं सका अगर %s अंतरफलक परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:852
|
||
#, python-format
|
||
msgid "Interface %s already defined"
|
||
-msgstr ""
|
||
+msgstr "%s अंतरफलक पहले से परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:856
|
||
#, python-format
|
||
msgid "Could not create interface for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये अंतरफलक नहीं बना सका"
|
||
|
||
#: ../semanage/seobject.py:861 ../semanage/seobject.py:1033
|
||
#, python-format
|
||
msgid "Could not create context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये संदर्भ बना नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:865
|
||
#, python-format
|
||
msgid "Could not set user in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "उपयोक्ता को %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:869
|
||
#, python-format
|
||
msgid "Could not set role in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "भूमिका को %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:873
|
||
#, python-format
|
||
msgid "Could not set type in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "टाइप को %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:878
|
||
#, python-format
|
||
msgid "Could not set mls fields in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "mls क्षेत्र %s के लिये अंतरफलक संदर्भ में सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:882
|
||
#, python-format
|
||
msgid "Could not set interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये अंतरफलक संदर्भ सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:886
|
||
#, python-format
|
||
msgid "Could not set message context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये संदेश संदर्भ सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:894 ../semanage/seobject.py:898
|
||
#, python-format
|
||
msgid "Could not add interface %s"
|
||
-msgstr ""
|
||
+msgstr "%s अंतरफलक जोड़ नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:916 ../semanage/seobject.py:953
|
||
#, python-format
|
||
msgid "Interface %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "%s अंतरफलक परिभाषित नहीं है"
|
||
|
||
#: ../semanage/seobject.py:920
|
||
#, python-format
|
||
msgid "Could not query interface %s"
|
||
-msgstr ""
|
||
+msgstr "%s अंतरफलक प्रश्न नहीं कर सकता"
|
||
|
||
#: ../semanage/seobject.py:935 ../semanage/seobject.py:939
|
||
#, python-format
|
||
msgid "Could not modify interface %s"
|
||
-msgstr ""
|
||
+msgstr "%s अंतरफलक रूपांतरित नहीं सक सका"
|
||
|
||
#: ../semanage/seobject.py:959
|
||
#, python-format
|
||
msgid "Interface %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "अंतरफलक %s नीति में परिभाषित है, मिटाया नहीं जा सकता"
|
||
|
||
#: ../semanage/seobject.py:967 ../semanage/seobject.py:971
|
||
#, python-format
|
||
msgid "Could not delete interface %s"
|
||
-msgstr ""
|
||
+msgstr "%s अंतरफलक मिटा नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:979
|
||
msgid "Could not list interfaces"
|
||
-msgstr ""
|
||
+msgstr "अंतरफलक सूचीबद्ध नहीं कर सका"
|
||
|
||
#: ../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 ""
|
||
+msgstr "जांच नहीं सका अगर %s के लिये फाइल संदर्भ परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:1024
|
||
#, python-format
|
||
msgid "File context for %s already defined"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ पहले से परिभाषित है"
|
||
|
||
#: ../semanage/seobject.py:1028
|
||
#, python-format
|
||
msgid "Could not create file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ नहीं बना सका"
|
||
|
||
#: ../semanage/seobject.py:1037
|
||
#, python-format
|
||
msgid "Could not set user in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ में उपयोक्ता सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:1041
|
||
#, python-format
|
||
msgid "Could not set role in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ में भूमिका सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:1045
|
||
#, python-format
|
||
msgid "Could not set type in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ में टाइप सेट नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:1050
|
||
#, python-format
|
||
msgid "Could not set mls fields in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "mls क्षेत्र %s के लिये फाइल संदर्भ के क्रम में नहीं सेट कर सका"
|
||
|
||
#: ../semanage/seobject.py:1056
|
||
#, python-format
|
||
msgid "Could not set file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ नहीं सेट कर सका"
|
||
|
||
#: ../semanage/seobject.py:1064 ../semanage/seobject.py:1068
|
||
#, python-format
|
||
msgid "Could not add file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ नहीं जोड़ सका"
|
||
|
||
#: ../semanage/seobject.py:1076
|
||
msgid "Requires setype, serange or seuser"
|
||
-msgstr ""
|
||
+msgstr "सेटटाइप जरूरी, serange या seuser"
|
||
|
||
#: ../semanage/seobject.py:1086 ../semanage/seobject.py:1125
|
||
#, python-format
|
||
msgid "File context for %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ परिभाषित नहीं है"
|
||
|
||
#: ../semanage/seobject.py:1090
|
||
#, python-format
|
||
msgid "Could not query file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ को प्रश्न नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:1107 ../semanage/seobject.py:1111
|
||
#, python-format
|
||
msgid "Could not modify file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ नहीं सुधार सका"
|
||
|
||
#: ../semanage/seobject.py:1131
|
||
#, python-format
|
||
msgid "File context for %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइल संदर्भ नीति में परिभाषित है, मिटा नहीं सकता"
|
||
|
||
#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1143
|
||
#, python-format
|
||
msgid "Could not delete file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s के लिये फाइलसंदर्भ मिटा नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:1151
|
||
msgid "Could not list file contexts"
|
||
-msgstr ""
|
||
+msgstr "फाइल संदर्भ सूचीबद्ध नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:1189
|
||
msgid "Requires value"
|
||
-msgstr ""
|
||
+msgstr "मान जरूरी"
|
||
|
||
#: ../semanage/seobject.py:1197 ../semanage/seobject.py:1231
|
||
#: ../semanage/seobject.py:1237
|
||
#, python-format
|
||
msgid "Could not check if boolean %s is defined"
|
||
-msgstr ""
|
||
+msgstr "अगर %s बुलियन परिभाषित है तो जांच नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:1199 ../semanage/seobject.py:1233
|
||
#, python-format
|
||
msgid "Boolean %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "%s बुलियन परिभाषित नहीं है"
|
||
|
||
#: ../semanage/seobject.py:1203
|
||
#, python-format
|
||
msgid "Could not query file context %s"
|
||
-msgstr ""
|
||
+msgstr "%s फाइल संदर्भ को प्रश्न नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:1215 ../semanage/seobject.py:1219
|
||
#, python-format
|
||
msgid "Could not modify boolean %s"
|
||
-msgstr ""
|
||
+msgstr "%s बुलियन रूपांतरित नहीं कर सका"
|
||
|
||
#: ../semanage/seobject.py:1239
|
||
#, python-format
|
||
msgid "Boolean %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "%s बुलियन नीति में परिभाषित है, मिटाया नहीं जा सकता"
|
||
|
||
#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1251
|
||
#, python-format
|
||
msgid "Could not delete boolean %s"
|
||
-msgstr ""
|
||
+msgstr "%s बुलियन मिटा नहीं सका"
|
||
|
||
#: ../semanage/seobject.py:1259
|
||
msgid "Could not list booleans"
|
||
-msgstr ""
|
||
+msgstr "बुलियन सूचीबद्ध नहीं कर सका"
|
||
|
||
#: ../audit2allow/audit2allow:179
|
||
#, c-format
|
||
msgid "Generating type enforcment file: %s.te"
|
||
-msgstr ""
|
||
+msgstr "टाइप पुनर्बलीकरण फाइल बना रहा है: %s.te"
|
||
|
||
#: ../audit2allow/audit2allow:184
|
||
msgid "Compiling policy"
|
||
-msgstr ""
|
||
+msgstr "कंपाइलिंग नीति"
|
||
|
||
#: ../audit2allow/audit2allow:195
|
||
msgid ""
|
||
"\n"
|
||
"******************** IMPORTANT ***********************\n"
|
||
msgstr ""
|
||
+"\n"
|
||
+"******************** महत्वपूर्ण ***********************\n"
|
||
|
||
#: ../audit2allow/audit2allow:196
|
||
#, c-format
|
||
@@ -955,8 +922,14 @@
|
||
"semodule -i %s.pp\n"
|
||
"\n"
|
||
msgstr ""
|
||
+"कर्नेल में नव निर्मित नीति संकुल लोड करने के क्रम में,\n"
|
||
+"आपको जरूरत है \n"
|
||
+"\n"
|
||
+"semodule -i %s.pp चलाने की\n"
|
||
+"\n"
|
||
|
||
#: ../audit2allow/audit2allow:203
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
-msgstr ""
|
||
+msgstr "विकल्प त्रुटि: %s "
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hr.po policycoreutils-1.30.9/po/hr.po
|
||
--- nsapolicycoreutils/po/hr.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/hr.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -7,8 +7,8 @@
|
||
msgstr ""
|
||
"Project-Id-Version: policycoreutils\n"
|
||
"Report-Msgid-Bugs-To: \n"
|
||
-"POT-Creation-Date: 2006-05-08 11:22-0400\n"
|
||
-"PO-Revision-Date: 2006-05-06 01:49+0100\n"
|
||
+"POT-Creation-Date: 2006-05-10 08:32-0400\n"
|
||
+"PO-Revision-Date: 2006-05-11 16:09+0100\n"
|
||
"Last-Translator: Renato Pavicic <renato@translator-shop.org>\n"
|
||
"Language-Team: Croatian <www.translator-shop.org>\n"
|
||
"MIME-Version: 1.0\n"
|
||
@@ -20,7 +20,7 @@
|
||
#: ../load_policy/load_policy.c:22
|
||
#, c-format
|
||
msgid "usage: %s [-bq]\n"
|
||
-msgstr "upotreba: %s [-bq]\n"
|
||
+msgstr "upotreba: %s [-bq]\n"
|
||
|
||
#: ../load_policy/load_policy.c:62
|
||
#, c-format
|
||
@@ -32,7 +32,8 @@
|
||
msgid "Out of memory!\n"
|
||
msgstr "Nedovoljno memorije!\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 "Inicijalizacija PAM nije uspjela\n"
|
||
@@ -42,16 +43,19 @@
|
||
msgid "failed to set PAM_TTY\n"
|
||
msgstr "Zadavanje PAM_TTY nije uspjelo\n"
|
||
|
||
-#: ../newrole/newrole.c:250 ../run_init/run_init.c:155
|
||
+#: ../newrole/newrole.c:250
|
||
+#: ../run_init/run_init.c:155
|
||
msgid "Password:"
|
||
msgstr "Lozinka:"
|
||
|
||
-#: ../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 "Vaš unos u datoteci lozinka u sjeni nije moguće pronaći.\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' ne može otvoriti /dev/tty\n"
|
||
@@ -189,16 +193,12 @@
|
||
#: ../newrole/newrole.c:717
|
||
#, c-format
|
||
msgid "%s! Could not get current context for %s, not relabeling tty.\n"
|
||
-msgstr ""
|
||
-"%s! Dohvaćanje trenutnog konteksta za %s nije moguće. TTY neće biti ponovno "
|
||
-"označen.\n"
|
||
+msgstr "%s! Dohvaćanje trenutnog konteksta za %s nije moguće. TTY neće biti ponovno označen.\n"
|
||
|
||
#: ../newrole/newrole.c:728
|
||
#, c-format
|
||
msgid "%s! Could not get new context for %s, not relabeling tty.\n"
|
||
-msgstr ""
|
||
-"%s! Dohvaćanje novog konteksta za %s nije moguće. TTY neće biti ponovno "
|
||
-"označen.\n"
|
||
+msgstr "%s! Dohvaćanje novog konteksta za %s nije moguće. TTY neće biti ponovno označen.\n"
|
||
|
||
#: ../newrole/newrole.c:740
|
||
#, c-format
|
||
@@ -225,7 +225,8 @@
|
||
msgid "Could not close descriptors.\n"
|
||
msgstr "Nije moguće zatvoriti deskriptore. \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 "Nije moguće postaviti exec kontekst za %s.\n"
|
||
@@ -284,11 +285,13 @@
|
||
msgid "authentication failed.\n"
|
||
msgstr "Provjere autentičnosti nije uspjela.\n"
|
||
|
||
-#: ../scripts/chcat:70 ../scripts/chcat:140
|
||
+#: ../scripts/chcat:70
|
||
+#: ../scripts/chcat:140
|
||
msgid "Requires at least one category"
|
||
msgstr "Zahtijeva najmanje jednu kategoriju"
|
||
|
||
-#: ../scripts/chcat:84 ../scripts/chcat:154
|
||
+#: ../scripts/chcat:84
|
||
+#: ../scripts/chcat:154
|
||
#, c-format
|
||
msgid "Can not modify sensitivity levels using '+' on %s"
|
||
msgstr "Nije moguće urediti razine osjetljivosti upotrebom '+' na %s"
|
||
@@ -298,12 +301,14 @@
|
||
msgid "%s is already in %s"
|
||
msgstr "%s već je unutar %s"
|
||
|
||
-#: ../scripts/chcat:159 ../scripts/chcat:169
|
||
+#: ../scripts/chcat:159
|
||
+#: ../scripts/chcat:169
|
||
#, c-format
|
||
msgid "%s is not in %s"
|
||
msgstr "%s nije unutar %s"
|
||
|
||
-#: ../scripts/chcat:232 ../scripts/chcat:237
|
||
+#: ../scripts/chcat:232
|
||
+#: ../scripts/chcat:237
|
||
msgid "Can not combine +/- with other types of categories"
|
||
msgstr "Kombiniranje +/- s ostalim vrstama kategorija nije moguće"
|
||
|
||
@@ -364,42 +369,41 @@
|
||
msgstr "chcat -l +TvrtkaPovjerljivo juser"
|
||
|
||
#: ../semanage/semanage:122
|
||
-#, fuzzy
|
||
msgid "Requires 2 or more arguments"
|
||
-msgstr "Zahtijeva prefiks ili uloge"
|
||
+msgstr "Zahtijeva 2 ili više argumenta"
|
||
|
||
#: ../semanage/semanage:127
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "%s not defined"
|
||
-msgstr "Port %s/%s nije određen"
|
||
+msgstr "%s nije određen"
|
||
|
||
#: ../semanage/semanage:151
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "%s not valid for %s objects\n"
|
||
-msgstr "%s nije valjani kontekst\n"
|
||
+msgstr "%s nije valjan za %s objekata\n"
|
||
|
||
-#: ../semanage/semanage:178 ../semanage/semanage:186
|
||
-#, fuzzy
|
||
+#: ../semanage/semanage:178
|
||
+#: ../semanage/semanage:186
|
||
msgid "range not supported on Non MLS machines"
|
||
-msgstr "Prijevodi nisu podržani na ne-MLS računalima"
|
||
+msgstr "Opseg nije podržan na ne-MLS računalima"
|
||
|
||
#: ../semanage/semanage:244
|
||
msgid "You must specify a role"
|
||
-msgstr ""
|
||
+msgstr "Potrebno je odrediti ulogu"
|
||
|
||
#: ../semanage/semanage:246
|
||
msgid "You must specify a prefix"
|
||
-msgstr ""
|
||
+msgstr "Potrebno je odrediti prefiks"
|
||
|
||
#: ../semanage/semanage:295
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "Options Error %s "
|
||
-msgstr "Pogreška opcija: %s "
|
||
+msgstr "Pogreška opcija %s "
|
||
|
||
#: ../semanage/semanage:299
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "Invalid value %s"
|
||
-msgstr "Neispravna razina '%s'. "
|
||
+msgstr "Neispravna vrijednost '%s'. "
|
||
|
||
#: ../semanage/seobject.py:124
|
||
msgid "translations not supported on non-MLS machines"
|
||
@@ -410,7 +414,8 @@
|
||
msgid "Unable to open %s: translations not supported on non-MLS machines"
|
||
msgstr "Otvaranje %s nije moguće: Prijevodi nisu podržani na ne-MLS računalima"
|
||
|
||
-#: ../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 "Prijevodi ne mogu sadržavati prazna mjesta (razmake) '%s' "
|
||
@@ -442,17 +447,24 @@
|
||
msgid "Could not establish semanage connection"
|
||
msgstr "Uspostavljanje semanage veze nije moguće"
|
||
|
||
-#: ../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 "Izrada ključa za %s nije moguća"
|
||
|
||
-#: ../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 "Nije moguće provjeriti je li mapiranje za prijavu %s određeno"
|
||
@@ -472,12 +484,14 @@
|
||
msgid "Could not create login mapping for %s"
|
||
msgstr "Izrada mapiranja prijave za %s nije moguća"
|
||
|
||
-#: ../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 "Zadavanje naziva za %s nije moguće"
|
||
|
||
-#: ../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 "Zadavanje MLS raspona za %s nije moguće"
|
||
@@ -487,18 +501,28 @@
|
||
msgid "Could not set SELinux user for %s"
|
||
msgstr "Zadavanje SELinux korisnika za %s nije moguće"
|
||
|
||
-#: ../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 transakciju nije moguće pokrenuti"
|
||
|
||
-#: ../semanage/seobject.py:273 ../semanage/seobject.py:277
|
||
+#: ../semanage/seobject.py:273
|
||
+#: ../semanage/seobject.py:277
|
||
#, python-format
|
||
msgid "Could not add login mapping for %s"
|
||
msgstr "Dodavanje mapiranja prijave za %s nije moguće"
|
||
@@ -507,7 +531,8 @@
|
||
msgid "Requires seuser or serange"
|
||
msgstr "Zahtijeva seuser ili serange"
|
||
|
||
-#: ../semanage/seobject.py:302 ../semanage/seobject.py:349
|
||
+#: ../semanage/seobject.py:302
|
||
+#: ../semanage/seobject.py:349
|
||
#, python-format
|
||
msgid "Login mapping for %s is not defined"
|
||
msgstr "Mapiranje prijave za %s nije određeno"
|
||
@@ -517,11 +542,8 @@
|
||
msgid "Could not query seuser for %s"
|
||
msgstr "Propitivanje seusera za %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:321
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr "Semanage transakciju nije moguće pokrenuti"
|
||
-
|
||
-#: ../semanage/seobject.py:325 ../semanage/seobject.py:329
|
||
+#: ../semanage/seobject.py:325
|
||
+#: ../semanage/seobject.py:329
|
||
#, python-format
|
||
msgid "Could not modify login mapping for %s"
|
||
msgstr "Uređivanje mapiranja prijave za %s nije moguće"
|
||
@@ -531,7 +553,8 @@
|
||
msgid "Login mapping for %s is defined in policy, cannot be deleted"
|
||
msgstr "Mapiranje prijave za %s određeno je u pravilima. Brisanje nije moguće."
|
||
|
||
-#: ../semanage/seobject.py:364 ../semanage/seobject.py:368
|
||
+#: ../semanage/seobject.py:364
|
||
+#: ../semanage/seobject.py:368
|
||
#, python-format
|
||
msgid "Could not delete login mapping for %s"
|
||
msgstr "Brisanje mapiranja prijave za %s nije moguće"
|
||
@@ -540,8 +563,10 @@
|
||
msgid "Could not list login mappings"
|
||
msgstr "Ispisivanje popisa mapiranja prijava nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:428 ../semanage/seobject.py:497
|
||
-#: ../semanage/seobject.py:553 ../semanage/seobject.py:559
|
||
+#: ../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 "Nije moguće provjeriti je li SELinux korisnik %s određen"
|
||
@@ -576,7 +601,8 @@
|
||
msgid "Could not extract key for %s"
|
||
msgstr "Izvlačenje ključa za %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:467 ../semanage/seobject.py:471
|
||
+#: ../semanage/seobject.py:467
|
||
+#: ../semanage/seobject.py:471
|
||
#, python-format
|
||
msgid "Could not add SELinux user %s"
|
||
msgstr "Dodavanje SELinux korisnika %s nije moguće"
|
||
@@ -589,7 +615,8 @@
|
||
msgid "Requires prefix or roles"
|
||
msgstr "Zahtijeva prefiks ili uloge"
|
||
|
||
-#: ../semanage/seobject.py:499 ../semanage/seobject.py:555
|
||
+#: ../semanage/seobject.py:499
|
||
+#: ../semanage/seobject.py:555
|
||
#, python-format
|
||
msgid "SELinux user %s is not defined"
|
||
msgstr "SELinux korisnik %s nije određen"
|
||
@@ -599,7 +626,8 @@
|
||
msgid "Could not query user for %s"
|
||
msgstr "Propitivanje korisnika za %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:530 ../semanage/seobject.py:534
|
||
+#: ../semanage/seobject.py:530
|
||
+#: ../semanage/seobject.py:534
|
||
#, python-format
|
||
msgid "Could not modify SELinux user %s"
|
||
msgstr "Uređivanje SELinux korisnika %s nije moguće"
|
||
@@ -609,7 +637,8 @@
|
||
msgid "SELinux user %s is defined in policy, cannot be deleted"
|
||
msgstr "SELinux korisnik %s određen je u pravilima. Brisanje nije moguće."
|
||
|
||
-#: ../semanage/seobject.py:569 ../semanage/seobject.py:573
|
||
+#: ../semanage/seobject.py:569
|
||
+#: ../semanage/seobject.py:573
|
||
#, python-format
|
||
msgid "Could not delete SELinux user %s"
|
||
msgstr "Brisanje SELinux korisnika %s nije moguće"
|
||
@@ -640,8 +669,10 @@
|
||
msgid "Type is required"
|
||
msgstr "Potrebna je vrsta"
|
||
|
||
-#: ../semanage/seobject.py:655 ../semanage/seobject.py:717
|
||
-#: ../semanage/seobject.py:751 ../semanage/seobject.py:757
|
||
+#: ../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 "Nije moguće provjeriti je li port %s/%s određen"
|
||
@@ -686,12 +717,14 @@
|
||
msgid "Could not set port context for %s/%s"
|
||
msgstr "Zadavanje konteksta porta za %s/%s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:696 ../semanage/seobject.py:700
|
||
+#: ../semanage/seobject.py:696
|
||
+#: ../semanage/seobject.py:700
|
||
#, python-format
|
||
msgid "Could not add port %s/%s"
|
||
msgstr "Dodavanje porta %s/%s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:709 ../semanage/seobject.py:906
|
||
+#: ../semanage/seobject.py:709
|
||
+#: ../semanage/seobject.py:906
|
||
msgid "Requires setype or serange"
|
||
msgstr "Zahtijeva setype ili serange"
|
||
|
||
@@ -699,7 +732,8 @@
|
||
msgid "Requires setype"
|
||
msgstr "Zahtijeva setype"
|
||
|
||
-#: ../semanage/seobject.py:719 ../semanage/seobject.py:753
|
||
+#: ../semanage/seobject.py:719
|
||
+#: ../semanage/seobject.py:753
|
||
#, python-format
|
||
msgid "Port %s/%s is not defined"
|
||
msgstr "Port %s/%s nije određen"
|
||
@@ -709,7 +743,8 @@
|
||
msgid "Could not query port %s/%s"
|
||
msgstr "Propitivanje porta %s/%s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:738 ../semanage/seobject.py:742
|
||
+#: ../semanage/seobject.py:738
|
||
+#: ../semanage/seobject.py:742
|
||
#, python-format
|
||
msgid "Could not modify port %s/%s"
|
||
msgstr "Uređivanje porta %s/%s nije moguće"
|
||
@@ -719,27 +754,34 @@
|
||
msgid "Port %s/%s is defined in policy, cannot be deleted"
|
||
msgstr "Port %s/%s određen je u pravilima. Brisanje nije moguće."
|
||
|
||
-#: ../semanage/seobject.py:767 ../semanage/seobject.py:771
|
||
+#: ../semanage/seobject.py:767
|
||
+#: ../semanage/seobject.py:771
|
||
#, python-format
|
||
msgid "Could not delete port %s/%s"
|
||
msgstr "Brisanje porta %s/%s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:779 ../semanage/seobject.py:798
|
||
+#: ../semanage/seobject.py:779
|
||
+#: ../semanage/seobject.py:798
|
||
msgid "Could not list ports"
|
||
msgstr "Ispisivanje popisa portova nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:842 ../semanage/seobject.py:1014
|
||
+#: ../semanage/seobject.py:842
|
||
+#: ../semanage/seobject.py:1014
|
||
msgid "SELinux Type is required"
|
||
msgstr "Potrebna je SELinux vrsta"
|
||
|
||
-#: ../semanage/seobject.py:846 ../semanage/seobject.py:910
|
||
-#: ../semanage/seobject.py:947 ../semanage/seobject.py:1018
|
||
+#: ../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 "Izrada ključa za %s nije moguća"
|
||
|
||
-#: ../semanage/seobject.py:850 ../semanage/seobject.py:914
|
||
-#: ../semanage/seobject.py:951 ../semanage/seobject.py:957
|
||
+#: ../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 "Nije moguće provjeriti je li sučelje %s određeno"
|
||
@@ -754,7 +796,8 @@
|
||
msgid "Could not create interface for %s"
|
||
msgstr "Izrada sučelja za %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:861 ../semanage/seobject.py:1033
|
||
+#: ../semanage/seobject.py:861
|
||
+#: ../semanage/seobject.py:1033
|
||
#, python-format
|
||
msgid "Could not create context for %s"
|
||
msgstr "Izrada konteksta za %s nije moguća"
|
||
@@ -789,12 +832,14 @@
|
||
msgid "Could not set message context for %s"
|
||
msgstr "Zadavanje konteksta poruke za %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:894 ../semanage/seobject.py:898
|
||
+#: ../semanage/seobject.py:894
|
||
+#: ../semanage/seobject.py:898
|
||
#, python-format
|
||
msgid "Could not add interface %s"
|
||
msgstr "Dodavanje sučelja %s nije moguće"
|
||
|
||
-#: ../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 "Sučelje %s nije određeno"
|
||
@@ -804,7 +849,8 @@
|
||
msgid "Could not query interface %s"
|
||
msgstr "Propitivanje sučelja %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:935 ../semanage/seobject.py:939
|
||
+#: ../semanage/seobject.py:935
|
||
+#: ../semanage/seobject.py:939
|
||
#, python-format
|
||
msgid "Could not modify interface %s"
|
||
msgstr "Uređivanje sučelja %s nije moguće"
|
||
@@ -814,7 +860,8 @@
|
||
msgid "Interface %s is defined in policy, cannot be deleted"
|
||
msgstr "Sučelje %s određeno je u pravilima. Brisanje nije moguće."
|
||
|
||
-#: ../semanage/seobject.py:967 ../semanage/seobject.py:971
|
||
+#: ../semanage/seobject.py:967
|
||
+#: ../semanage/seobject.py:971
|
||
#, python-format
|
||
msgid "Could not delete interface %s"
|
||
msgstr "Brisanje sučelja %s nije moguće"
|
||
@@ -823,8 +870,10 @@
|
||
msgid "Could not list interfaces"
|
||
msgstr "Ispisivanje popisa sučelja nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:1022 ../semanage/seobject.py:1084
|
||
-#: ../semanage/seobject.py:1123 ../semanage/seobject.py:1129
|
||
+#: ../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 "Nije moguće provjeriti je li kontekst datoteke za %s određen"
|
||
@@ -864,7 +913,8 @@
|
||
msgid "Could not set file context for %s"
|
||
msgstr "Zadavanje konteksta datoteke za %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:1064 ../semanage/seobject.py:1068
|
||
+#: ../semanage/seobject.py:1064
|
||
+#: ../semanage/seobject.py:1068
|
||
#, python-format
|
||
msgid "Could not add file context for %s"
|
||
msgstr "Dodavanje konteksta datoteke za %s nije moguće"
|
||
@@ -873,7 +923,8 @@
|
||
msgid "Requires setype, serange or seuser"
|
||
msgstr "Zahtijeva setype, serange ili seuser"
|
||
|
||
-#: ../semanage/seobject.py:1086 ../semanage/seobject.py:1125
|
||
+#: ../semanage/seobject.py:1086
|
||
+#: ../semanage/seobject.py:1125
|
||
#, python-format
|
||
msgid "File context for %s is not defined"
|
||
msgstr "Kontekst datoteke za %s nije određen"
|
||
@@ -883,7 +934,8 @@
|
||
msgid "Could not query file context for %s"
|
||
msgstr "Propitivanje konteksta datoteke za %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:1107 ../semanage/seobject.py:1111
|
||
+#: ../semanage/seobject.py:1107
|
||
+#: ../semanage/seobject.py:1111
|
||
#, python-format
|
||
msgid "Could not modify file context for %s"
|
||
msgstr "Uređivanje konteksta datoteke za %s nije moguće"
|
||
@@ -893,7 +945,8 @@
|
||
msgid "File context for %s is defined in policy, cannot be deleted"
|
||
msgstr "Kontekst datoteke za %s određen je u pravilima. Brisanje nije moguće."
|
||
|
||
-#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1143
|
||
+#: ../semanage/seobject.py:1139
|
||
+#: ../semanage/seobject.py:1143
|
||
#, python-format
|
||
msgid "Could not delete file context for %s"
|
||
msgstr "Brisanje konteksta datoteke za %s nije moguće"
|
||
@@ -906,13 +959,15 @@
|
||
msgid "Requires value"
|
||
msgstr "Zahtijeva vrijednost"
|
||
|
||
-#: ../semanage/seobject.py:1197 ../semanage/seobject.py:1231
|
||
+#: ../semanage/seobject.py:1197
|
||
+#: ../semanage/seobject.py:1231
|
||
#: ../semanage/seobject.py:1237
|
||
#, python-format
|
||
msgid "Could not check if boolean %s is defined"
|
||
msgstr "Nije moguće provjeriti je li Booleova vrijednost %s određena"
|
||
|
||
-#: ../semanage/seobject.py:1199 ../semanage/seobject.py:1233
|
||
+#: ../semanage/seobject.py:1199
|
||
+#: ../semanage/seobject.py:1233
|
||
#, python-format
|
||
msgid "Boolean %s is not defined"
|
||
msgstr "Booleova vrijednost %s nije određena"
|
||
@@ -922,7 +977,8 @@
|
||
msgid "Could not query file context %s"
|
||
msgstr "Propitivanje konteksta datoteke %s nije moguće"
|
||
|
||
-#: ../semanage/seobject.py:1215 ../semanage/seobject.py:1219
|
||
+#: ../semanage/seobject.py:1215
|
||
+#: ../semanage/seobject.py:1219
|
||
#, python-format
|
||
msgid "Could not modify boolean %s"
|
||
msgstr "Uređivanje Booleove vrijednosti %s nije moguće"
|
||
@@ -932,7 +988,8 @@
|
||
msgid "Boolean %s is defined in policy, cannot be deleted"
|
||
msgstr "Booleova vrijednost %s određena je u pravilima. Brisanje nije moguće."
|
||
|
||
-#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1251
|
||
+#: ../semanage/seobject.py:1247
|
||
+#: ../semanage/seobject.py:1251
|
||
#, python-format
|
||
msgid "Could not delete boolean %s"
|
||
msgstr "Brisanje Booleove vrijednosti %s nije moguće"
|
||
@@ -977,3 +1034,4 @@
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
msgstr "Pogreška opcija: %s "
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/hu.po policycoreutils-1.30.9/po/hu.po
|
||
--- nsapolicycoreutils/po/hu.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/hu.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/hy.po policycoreutils-1.30.9/po/hy.po
|
||
--- nsapolicycoreutils/po/hy.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/hy.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/id.po policycoreutils-1.30.9/po/id.po
|
||
--- nsapolicycoreutils/po/id.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/id.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/is.po policycoreutils-1.30.9/po/is.po
|
||
--- nsapolicycoreutils/po/is.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/is.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/it.po policycoreutils-1.30.9/po/it.po
|
||
--- nsapolicycoreutils/po/it.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/it.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -1,20 +1,20 @@
|
||
-# translation of it.po to
|
||
+# translation of it.po to
|
||
# translation of it.po to Italiano
|
||
# This file is distributed under the same license as the policycoreutils package.
|
||
-# Francesco Tombolini <tombo@adamantio.net>, 2006.
|
||
#
|
||
+# Francesco Tombolini <tombo@adamantio.net>, 2006.
|
||
msgid ""
|
||
msgstr ""
|
||
"Project-Id-Version: it\n"
|
||
"Report-Msgid-Bugs-To: \n"
|
||
-"POT-Creation-Date: 2006-05-08 11:22-0400\n"
|
||
-"PO-Revision-Date: 2006-05-08 03:15+0200\n"
|
||
-"Last-Translator: \n"
|
||
-"Language-Team: <it@li.org>\n"
|
||
+"POT-Creation-Date: 2006-05-10 08:32-0400\n"
|
||
+"PO-Revision-Date: 2006-05-10 22:10+0200\n"
|
||
+"Last-Translator: Francesco Tombolini <tombo@adamantio.net>\n"
|
||
+"Language-Team: Italiano <fedora-trans-it@redhat.com>\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"
|
||
+"X-Generator: KBabel 1.11.2\n"
|
||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||
|
||
#: ../load_policy/load_policy.c:22
|
||
@@ -196,8 +196,7 @@
|
||
#: ../newrole/newrole.c:728
|
||
#, c-format
|
||
msgid "%s! Could not get new context for %s, not relabeling tty.\n"
|
||
-msgstr ""
|
||
-"%s! Impossibile ottenere il nuovo contesto per %s, tty non rietichettante.\n"
|
||
+msgstr "%s! Impossibile ottenere il nuovo contesto per %s, tty non rietichettante.\n"
|
||
|
||
#: ../newrole/newrole.c:740
|
||
#, c-format
|
||
@@ -363,42 +362,40 @@
|
||
msgstr "chcat -l +CompanyConfidential juser"
|
||
|
||
#: ../semanage/semanage:122
|
||
-#, fuzzy
|
||
msgid "Requires 2 or more arguments"
|
||
-msgstr "Richiede prefisso o ruolo"
|
||
+msgstr "Richiede 2 o più argomenti"
|
||
|
||
#: ../semanage/semanage:127
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "%s not defined"
|
||
-msgstr "La porta %s/%s non è definita"
|
||
+msgstr "%s non definito"
|
||
|
||
#: ../semanage/semanage:151
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "%s not valid for %s objects\n"
|
||
-msgstr "%s non è un contesto valido\n"
|
||
+msgstr "%s non valido per gli oggetti %s \n"
|
||
|
||
#: ../semanage/semanage:178 ../semanage/semanage:186
|
||
-#, fuzzy
|
||
msgid "range not supported on Non MLS machines"
|
||
-msgstr "traduzioni non supportate su macchine non-MLS"
|
||
+msgstr "range non supportato su macchine Non MLS"
|
||
|
||
#: ../semanage/semanage:244
|
||
msgid "You must specify a role"
|
||
-msgstr ""
|
||
+msgstr "Si deve specificare un ruolo"
|
||
|
||
#: ../semanage/semanage:246
|
||
msgid "You must specify a prefix"
|
||
-msgstr ""
|
||
+msgstr "Si deve specificare un prefisso"
|
||
|
||
#: ../semanage/semanage:295
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "Options Error %s "
|
||
-msgstr "Errore opzioni: %s "
|
||
+msgstr "Errore opzioni %s "
|
||
|
||
#: ../semanage/semanage:299
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "Invalid value %s"
|
||
-msgstr "Livello non valido '%s' "
|
||
+msgstr "Valore non valido %s"
|
||
|
||
#: ../semanage/seobject.py:124
|
||
msgid "translations not supported on non-MLS machines"
|
||
@@ -431,8 +428,7 @@
|
||
|
||
#: ../semanage/seobject.py:209
|
||
msgid "SELinux policy is not managed or store cannot be accessed."
|
||
-msgstr ""
|
||
-"La policy SELinux non è amministrata o non si può accedere al deposito."
|
||
+msgstr "La policy SELinux non è amministrata o non si può accedere al deposito."
|
||
|
||
#: ../semanage/seobject.py:214
|
||
msgid "Cannot read policy store."
|
||
@@ -487,14 +483,15 @@
|
||
msgid "Could not set SELinux user for %s"
|
||
msgstr "Impossibile impostare utente SELinux per %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 "Impossibile avviare transazione semanage"
|
||
|
||
@@ -517,10 +514,6 @@
|
||
msgid "Could not query seuser for %s"
|
||
msgstr "Impossibile interrogare seuser per %s"
|
||
|
||
-#: ../semanage/seobject.py:321
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr "Impossibile avviare transazione semanage"
|
||
-
|
||
#: ../semanage/seobject.py:325 ../semanage/seobject.py:329
|
||
#, python-format
|
||
msgid "Could not modify login mapping for %s"
|
||
@@ -529,8 +522,7 @@
|
||
#: ../semanage/seobject.py:355
|
||
#, python-format
|
||
msgid "Login mapping for %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
-"Il login mapping per %s è definito nella policy, non può essere eliminato"
|
||
+msgstr "Il login mapping per %s è definito nella policy, non può essere eliminato"
|
||
|
||
#: ../semanage/seobject.py:364 ../semanage/seobject.py:368
|
||
#, python-format
|
||
@@ -892,8 +884,7 @@
|
||
#: ../semanage/seobject.py:1131
|
||
#, python-format
|
||
msgid "File context for %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
-"Il contesto del file per %s è definito nella policy, non può essere eliminato"
|
||
+msgstr "Il contesto del file per %s è definito nella policy, non può essere eliminato"
|
||
|
||
#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1143
|
||
#, python-format
|
||
@@ -979,3 +970,4 @@
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
msgstr "Errore opzioni: %s "
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ja.po policycoreutils-1.30.9/po/ja.po
|
||
--- nsapolicycoreutils/po/ja.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ja.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/ka.po policycoreutils-1.30.9/po/ka.po
|
||
--- nsapolicycoreutils/po/ka.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ka.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/ko.po policycoreutils-1.30.9/po/ko.po
|
||
--- nsapolicycoreutils/po/ko.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ko.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -1,41 +1,67 @@
|
||
+# translation of ko.po to
|
||
+# translation of ko.po to
|
||
+# translation of ko.po to
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+# , 2006.
|
||
+msgid ""
|
||
+msgstr ""
|
||
+"Project-Id-Version: ko\n"
|
||
+"Report-Msgid-Bugs-To: \n"
|
||
+"POT-Creation-Date: 2006-05-10 08:32-0400\n"
|
||
+"PO-Revision-Date: 2006-05-11 11:07+1000\n"
|
||
+"Last-Translator: \n"
|
||
+"Language-Team: <en@li.org>\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"
|
||
+
|
||
#: ../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
|
||
@@ -65,107 +91,107 @@
|
||
#: ../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 "죄송합니다, -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 "오래된 문맥를 갖는데 실패했습니다.\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 "암호파일에서 엔트리를 찾을 수 없습니다.\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 "새로운 임무: %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
|
||
@@ -180,51 +206,51 @@
|
||
#: ../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 "새로운 임무: 포크 작업(forking)이 실패했습니다: %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 "%s에 실행가능한 문맥을 설정할 수 없습니다.\n"
|
||
|
||
#: ../newrole/newrole.c:842
|
||
#, c-format
|
||
msgid "Error connecting to audit system.\n"
|
||
-msgstr ""
|
||
+msgstr "감사(audit) 시스템에 연결하는데 오류 발생.\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 "감사(audit) 메세지를 보내는데 오류 발생.\n"
|
||
|
||
#: ../newrole/newrole.c:864
|
||
msgid "failed to exec shell\n"
|
||
-msgstr ""
|
||
+msgstr "쉘을 실행하는데 실패하였습니다\n"
|
||
|
||
#: ../run_init/run_init.c:67
|
||
msgid ""
|
||
@@ -236,94 +262,94 @@
|
||
#: ../run_init/run_init.c:264
|
||
#, c-format
|
||
msgid "run_init: incorrect password for %s\n"
|
||
-msgstr ""
|
||
+msgstr "run_init: %s에 대한 잘못된 암호\n"
|
||
|
||
#: ../run_init/run_init.c:295
|
||
#, c-format
|
||
msgid "Could not open file %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s 파일을 열 수 없습니다\n"
|
||
|
||
#: ../run_init/run_init.c:322
|
||
#, c-format
|
||
msgid "No context in file %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s 파일안에 내용이 없습니다\n"
|
||
|
||
#: ../run_init/run_init.c:345
|
||
#, c-format
|
||
msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
|
||
-msgstr ""
|
||
+msgstr "죄송합니다. run_init은 단지 SELinux 커널에서만 사용될 것입니다.\n"
|
||
|
||
#: ../run_init/run_init.c:364
|
||
#, c-format
|
||
msgid "authentication failed.\n"
|
||
-msgstr ""
|
||
+msgstr "인증 실패.\n"
|
||
|
||
#: ../scripts/chcat:70 ../scripts/chcat:140
|
||
msgid "Requires at least one category"
|
||
-msgstr ""
|
||
+msgstr "최소 하나의 카테고리가 필요합니다"
|
||
|
||
#: ../scripts/chcat:84 ../scripts/chcat:154
|
||
#, c-format
|
||
msgid "Can not modify sensitivity levels using '+' on %s"
|
||
-msgstr ""
|
||
+msgstr "%s에 '+'를 사용하여 민감도 수준을 수정할 수 없습니다"
|
||
|
||
#: ../scripts/chcat:88
|
||
#, c-format
|
||
msgid "%s is already in %s"
|
||
-msgstr ""
|
||
+msgstr "%s는 이미 %s 안에 있습니다"
|
||
|
||
#: ../scripts/chcat:159 ../scripts/chcat:169
|
||
#, c-format
|
||
msgid "%s is not in %s"
|
||
-msgstr ""
|
||
+msgstr "%s는 %s 안에 없습니다"
|
||
|
||
#: ../scripts/chcat:232 ../scripts/chcat:237
|
||
msgid "Can not combine +/- with other types of categories"
|
||
-msgstr ""
|
||
+msgstr "+/-를 다른 형식의 카테고리와 결합할 수 없습니다"
|
||
|
||
#: ../scripts/chcat:282
|
||
msgid "Can not have multiple sensitivities"
|
||
-msgstr ""
|
||
+msgstr "다중 민감도를 가질 수 없습니다"
|
||
|
||
#: ../scripts/chcat:288
|
||
#, c-format
|
||
msgid "Usage %s CATEGORY File ..."
|
||
-msgstr ""
|
||
+msgstr "사용량 %s 카테고리 파일 ..."
|
||
|
||
#: ../scripts/chcat:289
|
||
#, c-format
|
||
msgid "Usage %s -l CATEGORY user ..."
|
||
-msgstr ""
|
||
+msgstr "사용량 %s -| 카테고리 사용자 ..."
|
||
|
||
#: ../scripts/chcat:290
|
||
#, c-format
|
||
msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
|
||
-msgstr ""
|
||
+msgstr "사용량 %s [[+|-]카테고리],...]q 파일 ..."
|
||
|
||
#: ../scripts/chcat:291
|
||
#, c-format
|
||
msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
|
||
-msgstr ""
|
||
+msgstr "사용자 %s -l [[+|-]카테고리],...]q 사용자 ..."
|
||
|
||
#: ../scripts/chcat:292
|
||
#, c-format
|
||
msgid "Usage %s -d File ..."
|
||
-msgstr ""
|
||
+msgstr "사용량 %s -d 파일 ..."
|
||
|
||
#: ../scripts/chcat:293
|
||
#, c-format
|
||
msgid "Usage %s -l -d user ..."
|
||
-msgstr ""
|
||
+msgstr "사용량 %s -l -d 사용자 ..."
|
||
|
||
#: ../scripts/chcat:294
|
||
#, c-format
|
||
msgid "Usage %s -L"
|
||
-msgstr ""
|
||
+msgstr "사용량 %s -L"
|
||
|
||
#: ../scripts/chcat:295
|
||
#, c-format
|
||
msgid "Usage %s -L -l user"
|
||
-msgstr ""
|
||
+msgstr "사용량 %s -L -l 사용자"
|
||
|
||
#: ../scripts/chcat:296
|
||
msgid "Use -- to end option list. For example"
|
||
@@ -339,68 +365,68 @@
|
||
|
||
#: ../semanage/semanage:122
|
||
msgid "Requires 2 or more arguments"
|
||
-msgstr ""
|
||
+msgstr "2 혹은 그 이상의 인자가 필요합니다"
|
||
|
||
#: ../semanage/semanage:127
|
||
#, c-format
|
||
msgid "%s not defined"
|
||
-msgstr ""
|
||
+msgstr "%s은 정의되지 않았습니다"
|
||
|
||
#: ../semanage/semanage:151
|
||
#, c-format
|
||
msgid "%s not valid for %s objects\n"
|
||
-msgstr ""
|
||
+msgstr "%s는 %s 객체에 대해 유효하지 않습니다\n"
|
||
|
||
#: ../semanage/semanage:178 ../semanage/semanage:186
|
||
msgid "range not supported on Non MLS machines"
|
||
-msgstr ""
|
||
+msgstr "범위는 Non MLS 장치에서 지원되지 않습니다"
|
||
|
||
#: ../semanage/semanage:244
|
||
msgid "You must specify a role"
|
||
-msgstr ""
|
||
+msgstr "임무를 반드시 지정해야 합니다"
|
||
|
||
#: ../semanage/semanage:246
|
||
msgid "You must specify a prefix"
|
||
-msgstr ""
|
||
+msgstr "접두사(prefix)를 반드시 지정해야 합니다"
|
||
|
||
#: ../semanage/semanage:295
|
||
#, c-format
|
||
msgid "Options Error %s "
|
||
-msgstr ""
|
||
+msgstr "옵션 오류 %s "
|
||
|
||
#: ../semanage/semanage:299
|
||
#, c-format
|
||
msgid "Invalid value %s"
|
||
-msgstr ""
|
||
+msgstr "유효하지 않은 값 %s"
|
||
|
||
#: ../semanage/seobject.py:124
|
||
msgid "translations not supported on non-MLS machines"
|
||
-msgstr ""
|
||
+msgstr "번역은 MLS가 아닌 장치에서 지원되지 않습니다"
|
||
|
||
#: ../semanage/seobject.py:131
|
||
#, python-format
|
||
msgid "Unable to open %s: translations not supported on non-MLS machines"
|
||
-msgstr ""
|
||
+msgstr "%s를 열 수 없습니다: 번역은 MLS가 아닌 장치에서 지원되지 않습니다"
|
||
|
||
#: ../semanage/seobject.py:171 ../semanage/seobject.py:185
|
||
#, python-format
|
||
msgid "Translations can not contain spaces '%s' "
|
||
-msgstr ""
|
||
+msgstr "번역은 공백 '%s'를 포함할 수 없습니다 "
|
||
|
||
#: ../semanage/seobject.py:174
|
||
#, python-format
|
||
msgid "Invalid Level '%s' "
|
||
-msgstr ""
|
||
+msgstr "유효하지 않은 레벨 '%s'"
|
||
|
||
#: ../semanage/seobject.py:177
|
||
#, python-format
|
||
msgid "%s already defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s는 번역에서 이미 정의되었습니다"
|
||
|
||
#: ../semanage/seobject.py:189
|
||
#, python-format
|
||
msgid "%s not defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s는 번역에서 정의되지 않았습니다"
|
||
|
||
#: ../semanage/seobject.py:209
|
||
msgid "SELinux policy is not managed or store cannot be accessed."
|
||
@@ -421,7 +447,7 @@
|
||
#: ../semanage/seobject.py:1193 ../semanage/seobject.py:1227
|
||
#, python-format
|
||
msgid "Could not create a key for %s"
|
||
-msgstr ""
|
||
+msgstr "%s에 사용되는 키를 생성할 수 없습니다"
|
||
|
||
#: ../semanage/seobject.py:242 ../semanage/seobject.py:300
|
||
#: ../semanage/seobject.py:347 ../semanage/seobject.py:353
|
||
@@ -459,14 +485,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 +516,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"
|
||
@@ -942,3 +965,4 @@
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
msgstr ""
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/ku.po policycoreutils-1.30.9/po/ku.po
|
||
--- nsapolicycoreutils/po/ku.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ku.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/lo.po policycoreutils-1.30.9/po/lo.po
|
||
--- nsapolicycoreutils/po/lo.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/lo.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/lt.po policycoreutils-1.30.9/po/lt.po
|
||
--- nsapolicycoreutils/po/lt.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/lt.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/lv.po policycoreutils-1.30.9/po/lv.po
|
||
--- nsapolicycoreutils/po/lv.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/lv.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/mk.po policycoreutils-1.30.9/po/mk.po
|
||
--- nsapolicycoreutils/po/mk.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/mk.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/ml.po policycoreutils-1.30.9/po/ml.po
|
||
--- nsapolicycoreutils/po/ml.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ml.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -7,7 +7,7 @@
|
||
msgstr ""
|
||
"Project-Id-Version: ml\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-05-05 16:14+0530\n"
|
||
"Last-Translator: Ani Peter <apeter@redhat.com>\n"
|
||
"Language-Team: Malayalam\n"
|
||
@@ -484,14 +484,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 transaction ആരംഭിക്കുവാന് സാധിച്ചില്ല"
|
||
|
||
@@ -514,10 +515,6 @@
|
||
msgid "Could not query seuser for %s"
|
||
msgstr "Could not query seuser for %s"
|
||
|
||
-#: ../semanage/seobject.py:321
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr "semanage transaction ആരംഭിക്കുവാന് സാധിച്ചില്ല"
|
||
-
|
||
#: ../semanage/seobject.py:325 ../semanage/seobject.py:329
|
||
#, python-format
|
||
msgid "Could not modify login mapping for %s"
|
||
@@ -976,3 +973,4 @@
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
msgstr "ഉപാധിയില് പിഴവ്: %s "
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/mr.po policycoreutils-1.30.9/po/mr.po
|
||
--- nsapolicycoreutils/po/mr.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/mr.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/ms.po policycoreutils-1.30.9/po/ms.po
|
||
--- nsapolicycoreutils/po/ms.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ms.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -7,7 +7,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: 2006-05-05 23:15+0800\n"
|
||
"Last-Translator: Sharuzzaman Ahmat Raslan <sharuzzaman@myrealbox.com>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||
@@ -485,14 +485,15 @@
|
||
msgid "Could not set SELinux user for %s"
|
||
msgstr "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\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 "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\n"
|
||
@@ -516,11 +517,6 @@
|
||
msgid "Could not query seuser for %s"
|
||
msgstr "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\n"
|
||
|
||
-#: ../semanage/seobject.py:321
|
||
-#, fuzzy
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr "Tidak dapat menetapkan konteks default untuk %s untuk program %s.\n"
|
||
-
|
||
#: ../semanage/seobject.py:325 ../semanage/seobject.py:329
|
||
#, fuzzy, python-format
|
||
msgid "Could not modify login mapping for %s"
|
||
@@ -986,3 +982,4 @@
|
||
#, fuzzy, c-format
|
||
msgid "Options Error: %s "
|
||
msgstr "Ralat Tidak Diketahui"
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/my.po policycoreutils-1.30.9/po/my.po
|
||
--- nsapolicycoreutils/po/my.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/my.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/nb.po policycoreutils-1.30.9/po/nb.po
|
||
--- nsapolicycoreutils/po/nb.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/nb.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/nl.po policycoreutils-1.30.9/po/nl.po
|
||
--- nsapolicycoreutils/po/nl.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/nl.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/nn.po policycoreutils-1.30.9/po/nn.po
|
||
--- nsapolicycoreutils/po/nn.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/nn.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/no.po policycoreutils-1.30.9/po/no.po
|
||
--- nsapolicycoreutils/po/no.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/no.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/nso.po policycoreutils-1.30.9/po/nso.po
|
||
--- nsapolicycoreutils/po/nso.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/nso.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/or.po policycoreutils-1.30.9/po/or.po
|
||
--- nsapolicycoreutils/po/or.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/or.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -7,7 +7,7 @@
|
||
msgstr ""
|
||
"Project-Id-Version: or\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-05-08 14:27+0530\n"
|
||
"Last-Translator: Subhransu Behera <sbehera@redhat.com>\n"
|
||
"Language-Team: Oriya <oriya-group@lists.sarovar.org>\n"
|
||
@@ -361,42 +361,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 "non-MLS ଯନ୍ତ୍ର ମାନଙ୍କ ରେ ଅନୁବାଦ ଗୁଡିକ ସହାୟକ ହେଲା ନାହିଁ"
|
||
+msgstr "non-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 +482,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 +513,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 +969,4 @@
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
msgstr "ପସନ୍ଦ ମାନଙ୍କ ର ତ୍ରୁଟି: %s "
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/pa.po policycoreutils-1.30.9/po/pa.po
|
||
--- nsapolicycoreutils/po/pa.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/pa.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -7,7 +7,7 @@
|
||
msgstr ""
|
||
"Project-Id-Version: policycoreutils\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-05-05 09:01+0530\n"
|
||
"Last-Translator: A S Alam <apbrar@gmail.com>\n"
|
||
"Language-Team: Punjabi <fedora-trans-pa@redhat.com>\n"
|
||
@@ -478,14 +478,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 ""
|
||
|
||
@@ -508,10 +509,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/pl.po policycoreutils-1.30.9/po/pl.po
|
||
--- nsapolicycoreutils/po/pl.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/pl.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -1,230 +1,249 @@
|
||
+# translation of pl.po to Polish
|
||
+# Piotr Drąg <raven@pmail.pl>, 2006.
|
||
+#
|
||
+msgid ""
|
||
+msgstr ""
|
||
+"Project-Id-Version: pl\n"
|
||
+"Report-Msgid-Bugs-To: \n"
|
||
+"POT-Creation-Date: 2006-05-10 08:32-0400\n"
|
||
+"PO-Revision-Date: 2006-05-11 19:40+0200\n"
|
||
+"Last-Translator: Piotr Drąg <raven@pmail.pl>\n"
|
||
+"Language-Team: Polish <pl@li.org>\n"
|
||
+"MIME-Version: 1.0\n"
|
||
+"Content-Type: text/plain; charset=UTF-8\n"
|
||
+"Content-Transfer-Encoding: 8bit\n"
|
||
+
|
||
#: ../load_policy/load_policy.c:22
|
||
#, c-format
|
||
msgid "usage: %s [-bq]\n"
|
||
-msgstr ""
|
||
+msgstr "użycie: %s [-bq]\n"
|
||
|
||
#: ../load_policy/load_policy.c:62
|
||
#, c-format
|
||
msgid "%s: Can't load policy: %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s: Nie można wczytać polityki: %s\n"
|
||
|
||
#: ../newrole/newrole.c:97
|
||
#, c-format
|
||
msgid "Out of memory!\n"
|
||
-msgstr ""
|
||
+msgstr "Brak pamięci!\n"
|
||
|
||
#: ../newrole/newrole.c:201 ../run_init/run_init.c:126
|
||
#, c-format
|
||
msgid "failed to initialize PAM\n"
|
||
-msgstr ""
|
||
+msgstr "inicjowanie PAM nie powiodło się\n"
|
||
|
||
#: ../newrole/newrole.c:212
|
||
#, c-format
|
||
msgid "failed to set PAM_TTY\n"
|
||
-msgstr ""
|
||
+msgstr "ustawienie PAM_TTY nie powiodło się\n"
|
||
|
||
#: ../newrole/newrole.c:250 ../run_init/run_init.c:155
|
||
msgid "Password:"
|
||
-msgstr ""
|
||
+msgstr "Hasło:"
|
||
|
||
#: ../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 "Nie można znaleźć wpisu w pliku passwd shadow.\n"
|
||
|
||
#: ../newrole/newrole.c:288 ../run_init/run_init.c:193
|
||
#, c-format
|
||
msgid "getpass cannot open /dev/tty\n"
|
||
-msgstr ""
|
||
+msgstr "getpass nie może otworzyć /dev/tty\n"
|
||
|
||
#: ../newrole/newrole.c:354
|
||
#, c-format
|
||
msgid "Error initing capabilities, aborting.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas inicjowania możliwości, przerywanie.\n"
|
||
|
||
#: ../newrole/newrole.c:367
|
||
#, c-format
|
||
msgid "Error dropping capabilities, aborting\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas opuszczania możliwości, przerywanie\n"
|
||
|
||
#: ../newrole/newrole.c:374
|
||
#, c-format
|
||
msgid "Error changing uid, aborting.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas zmieniania UID, przerywanie.\n"
|
||
|
||
#: ../newrole/newrole.c:380
|
||
#, c-format
|
||
msgid "Error resetting KEEPCAPS, aborting\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas przywracania KEEPCAPS, przerywanie.\n"
|
||
|
||
#: ../newrole/newrole.c:386
|
||
#, c-format
|
||
msgid "Error dropping SETUID capability, aborting\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas opuszczania możliwości SETUID, przerywanie\n"
|
||
|
||
#: ../newrole/newrole.c:459
|
||
#, c-format
|
||
msgid "Sorry, newrole may be used only on a SELinux kernel.\n"
|
||
-msgstr ""
|
||
+msgstr "Przepraszamy, newrole może zostać użyte tylko na jądrze SELinux.\n"
|
||
|
||
#: ../newrole/newrole.c:464
|
||
#, c-format
|
||
msgid "Could not determine enforcing mode.\n"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustalić trybu wymuszania.\n"
|
||
|
||
#: ../newrole/newrole.c:481
|
||
#, c-format
|
||
msgid "Error: multiple roles specified\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd: zostało określone wiele ról\n"
|
||
|
||
#: ../newrole/newrole.c:490
|
||
#, c-format
|
||
msgid "Error: multiple types specified\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd: zostało określone wiele typów\n"
|
||
|
||
#: ../newrole/newrole.c:498
|
||
#, c-format
|
||
msgid "Sorry, -l may be used with SELinux MLS support.\n"
|
||
-msgstr ""
|
||
+msgstr "Przepraszamy, -l może zostać użyte z obsługą MLS SELinuksa.\n"
|
||
|
||
#: ../newrole/newrole.c:503
|
||
#, c-format
|
||
msgid "Error: multiple levels specified\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd: zostało określonych wiele poziomów\n"
|
||
|
||
#: ../newrole/newrole.c:527
|
||
#, c-format
|
||
msgid "Couldn't get default type.\n"
|
||
-msgstr ""
|
||
+msgstr "Nie można uzyskać domyślnego typu.\n"
|
||
|
||
#: ../newrole/newrole.c:549
|
||
#, c-format
|
||
msgid "failed to get old_context.\n"
|
||
-msgstr ""
|
||
+msgstr "uzyskanie old_context nie powiodło się.\n"
|
||
|
||
#: ../newrole/newrole.c:563
|
||
#, c-format
|
||
msgid "failed to get new context.\n"
|
||
-msgstr ""
|
||
+msgstr "uzyskanie nowego kontekstu nie powiodło się.\n"
|
||
|
||
#: ../newrole/newrole.c:586
|
||
#, c-format
|
||
msgid "cannot find your entry in the passwd file.\n"
|
||
-msgstr ""
|
||
+msgstr "nie można znaleźć wpisu w pliku passwd.\n"
|
||
|
||
#: ../newrole/newrole.c:596
|
||
#, c-format
|
||
msgid "Error! Shell is not valid.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd! Powłoka jest nieprawidłowa.\n"
|
||
|
||
#: ../newrole/newrole.c:603
|
||
#, c-format
|
||
msgid "Error! Could not retrieve tty information.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd! Nie można pobrać informacji o TTY.\n"
|
||
|
||
#: ../newrole/newrole.c:607
|
||
#, c-format
|
||
msgid "Authenticating %s.\n"
|
||
-msgstr ""
|
||
+msgstr "Uwierzytelnianie %s.\n"
|
||
|
||
#: ../newrole/newrole.c:621
|
||
#, c-format
|
||
msgid "newrole: incorrect password for %s\n"
|
||
-msgstr ""
|
||
+msgstr "newrole: niepoprawne hasło dla %s\n"
|
||
|
||
#: ../newrole/newrole.c:645
|
||
#, c-format
|
||
msgid "failed to set new role %s\n"
|
||
-msgstr ""
|
||
+msgstr "ustawienie nowej roli %s nie powiodło się\n"
|
||
|
||
#: ../newrole/newrole.c:657
|
||
#, c-format
|
||
msgid "failed to set new type %s\n"
|
||
-msgstr ""
|
||
+msgstr "ustawienie nowego typu %s nie powiodło się\n"
|
||
|
||
#: ../newrole/newrole.c:670
|
||
#, c-format
|
||
msgid "failed to build new range with level %s\n"
|
||
-msgstr ""
|
||
+msgstr "zbudowanie nowego zasięgu z poziomem %s nie powiodło się\n"
|
||
|
||
#: ../newrole/newrole.c:674
|
||
#, c-format
|
||
msgid "failed to set new range %s\n"
|
||
-msgstr ""
|
||
+msgstr "ustawienie nowego zasięgu %s nie powiodło się\n"
|
||
|
||
#: ../newrole/newrole.c:688
|
||
#, c-format
|
||
msgid "failed to convert new context to string\n"
|
||
msgstr ""
|
||
+"przekonwertowanie nowego kontekstu na łańcuch tekstowy nie powiodło się\n"
|
||
|
||
#: ../newrole/newrole.c:698
|
||
#, c-format
|
||
msgid "%s is not a valid context\n"
|
||
-msgstr ""
|
||
+msgstr "%s nie jest prawidłowym kontekstem\n"
|
||
|
||
#: ../newrole/newrole.c:711
|
||
#, c-format
|
||
msgid "Error! Could not open %s.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd! Nie można otworzyć %s.\n"
|
||
|
||
#: ../newrole/newrole.c:717
|
||
#, c-format
|
||
msgid "%s! Could not get current context for %s, not relabeling tty.\n"
|
||
msgstr ""
|
||
+"%s! Nie można uzyskać bieżącego kontekstu dla %s, ponowne nadanie etykiety "
|
||
+"TTY nie odbędzie się.\n"
|
||
|
||
#: ../newrole/newrole.c:728
|
||
#, c-format
|
||
msgid "%s! Could not get new context for %s, not relabeling tty.\n"
|
||
-msgstr ""
|
||
+msgstr "%s! Nie można uzyskać nowego kontekstu dla %s, ponowne nadanie "
|
||
+"etykiety TTY nie odbędzie się.\n"
|
||
|
||
#: ../newrole/newrole.c:740
|
||
#, c-format
|
||
msgid "%s! Could not set new context for %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s! Nie można ustawić nowego kontekstu dla %s\n"
|
||
|
||
#: ../newrole/newrole.c:752
|
||
#, c-format
|
||
msgid "newrole: failure forking: %s"
|
||
-msgstr ""
|
||
+msgstr "newrole: rozgałęzienie nie powiodło się: %s"
|
||
|
||
#: ../newrole/newrole.c:754
|
||
#, c-format
|
||
msgid "Warning! Could not restore context for %s\n"
|
||
-msgstr ""
|
||
+msgstr "Ostrzeżenie! Nie można przywrócić kontekstu dla %s\n"
|
||
|
||
#: ../newrole/newrole.c:774
|
||
#, c-format
|
||
msgid "%s changed labels.\n"
|
||
-msgstr ""
|
||
+msgstr "%s zmienił etykiety.\n"
|
||
|
||
#: ../newrole/newrole.c:798
|
||
#, c-format
|
||
msgid "Could not close descriptors.\n"
|
||
-msgstr ""
|
||
+msgstr "Nie można zamknąć deskryptorów.\n"
|
||
|
||
#: ../newrole/newrole.c:832 ../run_init/run_init.c:390
|
||
#, c-format
|
||
msgid "Could not set exec context to %s.\n"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić kontekstu wykonywania dla %s.\n"
|
||
|
||
#: ../newrole/newrole.c:842
|
||
#, c-format
|
||
msgid "Error connecting to audit system.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas łączenia się z systemem audit.\n"
|
||
|
||
#: ../newrole/newrole.c:847
|
||
#, c-format
|
||
msgid "Error allocating memory.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas przydzielania pamięci.\n"
|
||
|
||
#: ../newrole/newrole.c:853
|
||
#, c-format
|
||
msgid "Error sending audit message.\n"
|
||
-msgstr ""
|
||
+msgstr "Błąd podczas wysyłania komunikatu audit.\n"
|
||
|
||
#: ../newrole/newrole.c:864
|
||
msgid "failed to exec shell\n"
|
||
-msgstr ""
|
||
+msgstr "wykonanie powłoki nie powiodło się\n"
|
||
|
||
#: ../run_init/run_init.c:67
|
||
msgid ""
|
||
@@ -232,187 +251,194 @@
|
||
" where: <script> is the name of the init script to run,\n"
|
||
" <args ...> are the arguments to that script."
|
||
msgstr ""
|
||
+"UŻYCIE: run_init <skrypt> <argumenty ...>\n"
|
||
+" gdzie: <skrypt> jest nazwą skryptu init do uruchomienia,\n"
|
||
+" a <args ...> są argumentami dla tego skryptu."
|
||
|
||
#: ../run_init/run_init.c:264
|
||
#, c-format
|
||
msgid "run_init: incorrect password for %s\n"
|
||
-msgstr ""
|
||
+msgstr "run_init: nieprawidłowe hasło dla %s\n"
|
||
|
||
#: ../run_init/run_init.c:295
|
||
#, c-format
|
||
msgid "Could not open file %s\n"
|
||
-msgstr ""
|
||
+msgstr "Nie można otworzyć pliku %s\n"
|
||
|
||
#: ../run_init/run_init.c:322
|
||
#, c-format
|
||
msgid "No context in file %s\n"
|
||
-msgstr ""
|
||
+msgstr "Brak kontekstu w pliku %s\n"
|
||
|
||
#: ../run_init/run_init.c:345
|
||
#, c-format
|
||
msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
|
||
msgstr ""
|
||
+"Przepraszamy, run_init może zostać uruchomione tylko na jądrze SELinuksa.\n"
|
||
|
||
#: ../run_init/run_init.c:364
|
||
#, c-format
|
||
msgid "authentication failed.\n"
|
||
-msgstr ""
|
||
+msgstr "uwierzytelnianie nie powiodło się.\n"
|
||
|
||
#: ../scripts/chcat:70 ../scripts/chcat:140
|
||
msgid "Requires at least one category"
|
||
-msgstr ""
|
||
+msgstr "Wymagana jest co najmniej jedna kategoria"
|
||
|
||
#: ../scripts/chcat:84 ../scripts/chcat:154
|
||
#, c-format
|
||
msgid "Can not modify sensitivity levels using '+' on %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można zmodyfikować poziomów czułości używając \"+\" na %s"
|
||
|
||
#: ../scripts/chcat:88
|
||
#, c-format
|
||
msgid "%s is already in %s"
|
||
-msgstr ""
|
||
+msgstr "%s jest już w %s"
|
||
|
||
#: ../scripts/chcat:159 ../scripts/chcat:169
|
||
#, c-format
|
||
msgid "%s is not in %s"
|
||
-msgstr ""
|
||
+msgstr "%s nie jest w %s"
|
||
|
||
#: ../scripts/chcat:232 ../scripts/chcat:237
|
||
msgid "Can not combine +/- with other types of categories"
|
||
-msgstr ""
|
||
+msgstr "Nie można łączyć +/- z innymi typami kategorii"
|
||
|
||
#: ../scripts/chcat:282
|
||
msgid "Can not have multiple sensitivities"
|
||
-msgstr ""
|
||
+msgstr "Nie można posiadać wielu czułości"
|
||
|
||
#: ../scripts/chcat:288
|
||
#, c-format
|
||
msgid "Usage %s CATEGORY File ..."
|
||
-msgstr ""
|
||
+msgstr "Użycie %s KATEGORIA Plik ..."
|
||
|
||
#: ../scripts/chcat:289
|
||
#, c-format
|
||
msgid "Usage %s -l CATEGORY user ..."
|
||
-msgstr ""
|
||
+msgstr "Użycie %s -l KATEGORIA użytkownik ..."
|
||
|
||
#: ../scripts/chcat:290
|
||
#, c-format
|
||
msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
|
||
-msgstr ""
|
||
+msgstr "Użycie %s [[+|-]KATEGORIA],...]q Plik ..."
|
||
|
||
#: ../scripts/chcat:291
|
||
#, c-format
|
||
msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
|
||
-msgstr ""
|
||
+msgstr "Użycie %s -l [[+|-]KATEGORIA],...]q użytkownik ..."
|
||
|
||
#: ../scripts/chcat:292
|
||
#, c-format
|
||
msgid "Usage %s -d File ..."
|
||
-msgstr ""
|
||
+msgstr "Użycie %s -d Plik ..."
|
||
|
||
#: ../scripts/chcat:293
|
||
#, c-format
|
||
msgid "Usage %s -l -d user ..."
|
||
-msgstr ""
|
||
+msgstr "Użycie %s -l -d użytkownik ..."
|
||
|
||
#: ../scripts/chcat:294
|
||
#, c-format
|
||
msgid "Usage %s -L"
|
||
-msgstr ""
|
||
+msgstr "Użycie %s -L"
|
||
|
||
#: ../scripts/chcat:295
|
||
#, c-format
|
||
msgid "Usage %s -L -l user"
|
||
-msgstr ""
|
||
+msgstr "Użycie %s -L -l użytkownik"
|
||
|
||
#: ../scripts/chcat:296
|
||
msgid "Use -- to end option list. For example"
|
||
-msgstr ""
|
||
+msgstr "Użyj --, aby zakończyć listę opcji. Na przykład"
|
||
|
||
#: ../scripts/chcat:297
|
||
msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
|
||
-msgstr ""
|
||
+msgstr "chcat -- -CompanyConfidential /dokumenty/businessplan.odt"
|
||
|
||
#: ../scripts/chcat:298
|
||
msgid "chcat -l +CompanyConfidential juser"
|
||
-msgstr ""
|
||
+msgstr "chcat -l +CompanyConfidential jużytkownik"
|
||
|
||
#: ../semanage/semanage:122
|
||
msgid "Requires 2 or more arguments"
|
||
-msgstr ""
|
||
+msgstr "Wymagane są 2 argumenty lub więcej"
|
||
|
||
#: ../semanage/semanage:127
|
||
#, c-format
|
||
msgid "%s not defined"
|
||
-msgstr ""
|
||
+msgstr "%s nie został określony"
|
||
|
||
#: ../semanage/semanage:151
|
||
#, c-format
|
||
msgid "%s not valid for %s objects\n"
|
||
-msgstr ""
|
||
+msgstr "%s nie jest prawidłowy dla obiektów %s\n"
|
||
|
||
#: ../semanage/semanage:178 ../semanage/semanage:186
|
||
msgid "range not supported on Non MLS machines"
|
||
-msgstr ""
|
||
+msgstr "zasięg nie jest obsługiwany na komputerach bez MLS"
|
||
|
||
#: ../semanage/semanage:244
|
||
msgid "You must specify a role"
|
||
-msgstr ""
|
||
+msgstr "Musisz określić rolę"
|
||
|
||
#: ../semanage/semanage:246
|
||
msgid "You must specify a prefix"
|
||
-msgstr ""
|
||
+msgstr "Musisz określić przedrostek"
|
||
|
||
#: ../semanage/semanage:295
|
||
#, c-format
|
||
msgid "Options Error %s "
|
||
-msgstr ""
|
||
+msgstr "Błąd opcji %s "
|
||
|
||
#: ../semanage/semanage:299
|
||
#, c-format
|
||
msgid "Invalid value %s"
|
||
-msgstr ""
|
||
+msgstr "Nieprawidłowa wartość %s"
|
||
|
||
#: ../semanage/seobject.py:124
|
||
msgid "translations not supported on non-MLS machines"
|
||
-msgstr ""
|
||
+msgstr "tłumaczenia nie są obsługiwane na komputerach bez MLS"
|
||
|
||
#: ../semanage/seobject.py:131
|
||
#, python-format
|
||
msgid "Unable to open %s: translations not supported on non-MLS machines"
|
||
msgstr ""
|
||
+"Nie można otworzyć %s: tłumaczenia nie są obsługiwane na komputerach bez MLS"
|
||
|
||
#: ../semanage/seobject.py:171 ../semanage/seobject.py:185
|
||
#, python-format
|
||
msgid "Translations can not contain spaces '%s' "
|
||
-msgstr ""
|
||
+msgstr "Tłumaczenia nie mogą zawierać spacji \"%s\" "
|
||
|
||
#: ../semanage/seobject.py:174
|
||
#, python-format
|
||
msgid "Invalid Level '%s' "
|
||
-msgstr ""
|
||
+msgstr "Nieprawidłowy poziom \"%s\" "
|
||
|
||
#: ../semanage/seobject.py:177
|
||
#, python-format
|
||
msgid "%s already defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s zostało już określone w tłumaczeniach"
|
||
|
||
#: ../semanage/seobject.py:189
|
||
#, python-format
|
||
msgid "%s not defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s nie został określony w tłumaczeniach"
|
||
|
||
#: ../semanage/seobject.py:209
|
||
msgid "SELinux policy is not managed or store cannot be accessed."
|
||
msgstr ""
|
||
+"Polityka SELinuksa nie jest zarządzana lub nie można uzyskać dostępu do "
|
||
+"składu."
|
||
|
||
#: ../semanage/seobject.py:214
|
||
msgid "Cannot read policy store."
|
||
-msgstr ""
|
||
+msgstr "Nie można odczytać składu polityk."
|
||
|
||
#: ../semanage/seobject.py:219
|
||
msgid "Could not establish semanage connection"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić połączenia semanage"
|
||
|
||
#: ../semanage/seobject.py:238 ../semanage/seobject.py:296
|
||
#: ../semanage/seobject.py:343 ../semanage/seobject.py:424
|
||
@@ -421,512 +447,516 @@
|
||
#: ../semanage/seobject.py:1193 ../semanage/seobject.py:1227
|
||
#, python-format
|
||
msgid "Could not create a key for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć klucza dla %s"
|
||
|
||
#: ../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 ""
|
||
+msgstr "Nie można sprawdzić, jeśli mapowanie loginu dla %s zostało określone"
|
||
|
||
#: ../semanage/seobject.py:244
|
||
#, python-format
|
||
msgid "Login mapping for %s is already defined"
|
||
-msgstr ""
|
||
+msgstr "Mapowanie loginu dla %s zostało już określone"
|
||
|
||
#: ../semanage/seobject.py:248
|
||
#, python-format
|
||
msgid "Linux User %s does not exist"
|
||
-msgstr ""
|
||
+msgstr "Użytkownik linuksowy %s nie istnieje"
|
||
|
||
#: ../semanage/seobject.py:252
|
||
#, python-format
|
||
msgid "Could not create login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć mapowania loginu dla %s"
|
||
|
||
#: ../semanage/seobject.py:256 ../semanage/seobject.py:438
|
||
#, python-format
|
||
msgid "Could not set name for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić nazwy %s"
|
||
|
||
#: ../semanage/seobject.py:261 ../semanage/seobject.py:448
|
||
#, python-format
|
||
msgid "Could not set MLS range for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić zasięgu MLS dla %s"
|
||
|
||
#: ../semanage/seobject.py:265
|
||
#, python-format
|
||
msgid "Could not set SELinux user for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić użytkownika SELinuksowego dla %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 ""
|
||
+msgstr "Nie można uruchomić transakcji semanage"
|
||
|
||
#: ../semanage/seobject.py:273 ../semanage/seobject.py:277
|
||
#, python-format
|
||
msgid "Could not add login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można dodać mapowania loginu do %s"
|
||
|
||
#: ../semanage/seobject.py:292
|
||
msgid "Requires seuser or serange"
|
||
-msgstr ""
|
||
+msgstr "Wymagane jest seuser lub serange"
|
||
|
||
#: ../semanage/seobject.py:302 ../semanage/seobject.py:349
|
||
#, python-format
|
||
msgid "Login mapping for %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "Mapowanie loginu dla %s nie zostało określone"
|
||
|
||
#: ../semanage/seobject.py:306
|
||
#, python-format
|
||
msgid "Could not query seuser for %s"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/seobject.py:321
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr ""
|
||
+msgstr "Nie można odpytać seuser dla %s"
|
||
|
||
#: ../semanage/seobject.py:325 ../semanage/seobject.py:329
|
||
#, python-format
|
||
msgid "Could not modify login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można zmodyfikować mapowania loginu dla %s"
|
||
|
||
#: ../semanage/seobject.py:355
|
||
#, python-format
|
||
msgid "Login mapping for %s is defined in policy, cannot be deleted"
|
||
msgstr ""
|
||
+"Mapowanie loginu dla %s zostało określone w polityce, nie może zostać usunięte"
|
||
|
||
#: ../semanage/seobject.py:364 ../semanage/seobject.py:368
|
||
#, python-format
|
||
msgid "Could not delete login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można usunąć mapowania loginu dla %s"
|
||
|
||
#: ../semanage/seobject.py:382
|
||
msgid "Could not list login mappings"
|
||
-msgstr ""
|
||
+msgstr "Nie można wyświetlić listę mapowań loginów"
|
||
|
||
#: ../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 ""
|
||
+msgstr "Nie można sprawdzić, jeśli użytkownik SELinuksowy został określony"
|
||
|
||
#: ../semanage/seobject.py:430
|
||
#, python-format
|
||
msgid "SELinux user %s is already defined"
|
||
-msgstr ""
|
||
+msgstr "Użytkownik SELinuksowy %s został już określony"
|
||
|
||
#: ../semanage/seobject.py:434
|
||
#, python-format
|
||
msgid "Could not create SELinux user for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć użytkownika SELinuksowego dla %s"
|
||
|
||
#: ../semanage/seobject.py:443
|
||
#, python-format
|
||
msgid "Could not add role %s for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można dodać roli %s do %s"
|
||
|
||
#: ../semanage/seobject.py:452
|
||
#, python-format
|
||
msgid "Could not set MLS level for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić poziomu MLS dla %s"
|
||
|
||
#: ../semanage/seobject.py:456
|
||
#, python-format
|
||
msgid "Could not add prefix %s for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można dodać przedrostka %s do %s"
|
||
|
||
#: ../semanage/seobject.py:459
|
||
#, python-format
|
||
msgid "Could not extract key for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można rozpakować klucza dla %s"
|
||
|
||
#: ../semanage/seobject.py:467 ../semanage/seobject.py:471
|
||
#, python-format
|
||
msgid "Could not add SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można dodać użytkownika SELinuksowego %s"
|
||
|
||
#: ../semanage/seobject.py:487
|
||
msgid "Requires prefix, roles, level or range"
|
||
-msgstr ""
|
||
+msgstr "Wymagany jest przedrostek, role, poziom lub zasięg"
|
||
|
||
#: ../semanage/seobject.py:489
|
||
msgid "Requires prefix or roles"
|
||
-msgstr ""
|
||
+msgstr "Wymagany jest przedrostek lub role"
|
||
|
||
#: ../semanage/seobject.py:499 ../semanage/seobject.py:555
|
||
#, python-format
|
||
msgid "SELinux user %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "Użytkownik SELinuksowy %s nie został określony"
|
||
|
||
#: ../semanage/seobject.py:503
|
||
#, python-format
|
||
msgid "Could not query user for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można odpytać użytkownika dla %s"
|
||
|
||
#: ../semanage/seobject.py:530 ../semanage/seobject.py:534
|
||
#, python-format
|
||
msgid "Could not modify SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można zmodyfikować użytkownika SELinuksowego %s"
|
||
|
||
#: ../semanage/seobject.py:561
|
||
#, python-format
|
||
msgid "SELinux user %s is defined in policy, cannot be deleted"
|
||
msgstr ""
|
||
+"Użytkownik SELinuksowy %s nie został określony w polityce, nie może zostać "
|
||
+"usunięty"
|
||
|
||
#: ../semanage/seobject.py:569 ../semanage/seobject.py:573
|
||
#, python-format
|
||
msgid "Could not delete SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można usunąć użytkownika SELinuksowego %s"
|
||
|
||
#: ../semanage/seobject.py:585
|
||
msgid "Could not list SELinux users"
|
||
-msgstr ""
|
||
+msgstr "Nie można wyświetlić listy użytkowników SELinuksowych"
|
||
|
||
#: ../semanage/seobject.py:591
|
||
#, python-format
|
||
msgid "Could not list roles for user %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można wyświetlić listy ról dla użytkownika %s"
|
||
|
||
#: ../semanage/seobject.py:625
|
||
msgid "Protocol udp or tcp is required"
|
||
-msgstr ""
|
||
+msgstr "Wymagany jest protokół UDP lub TCP"
|
||
|
||
#: ../semanage/seobject.py:627
|
||
msgid "Port is required"
|
||
-msgstr ""
|
||
+msgstr "Wymagany jest port"
|
||
|
||
#: ../semanage/seobject.py:638
|
||
#, python-format
|
||
msgid "Could not create a key for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć klucza %s/%s"
|
||
|
||
#: ../semanage/seobject.py:649
|
||
msgid "Type is required"
|
||
-msgstr ""
|
||
+msgstr "Wymagany jest typ"
|
||
|
||
#: ../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 ""
|
||
+msgstr "Nie można sprawdzić, jeśli port %s/%s został określony"
|
||
|
||
#: ../semanage/seobject.py:657
|
||
#, python-format
|
||
msgid "Port %s/%s already defined"
|
||
-msgstr ""
|
||
+msgstr "Port %s/%s został już określony"
|
||
|
||
#: ../semanage/seobject.py:661
|
||
#, python-format
|
||
msgid "Could not create port for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć portu dla %s/%s"
|
||
|
||
#: ../semanage/seobject.py:667
|
||
#, python-format
|
||
msgid "Could not create context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć kontekstu dla %s/%s"
|
||
|
||
#: ../semanage/seobject.py:671
|
||
#, python-format
|
||
msgid "Could not set user in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić użytkownika w kontekście portu dla %s/%s"
|
||
|
||
#: ../semanage/seobject.py:675
|
||
#, python-format
|
||
msgid "Could not set role in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić roli w kontekście portu dla %s/%s"
|
||
|
||
#: ../semanage/seobject.py:679
|
||
#, python-format
|
||
msgid "Could not set type in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić typu w kontekście portu dla %s/%s"
|
||
|
||
#: ../semanage/seobject.py:684
|
||
#, python-format
|
||
msgid "Could not set mls fields in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić pól MLS w kontekście portu dla %s/%s"
|
||
|
||
#: ../semanage/seobject.py:688
|
||
#, python-format
|
||
msgid "Could not set port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić kontekstu portu dla %s/%s"
|
||
|
||
#: ../semanage/seobject.py:696 ../semanage/seobject.py:700
|
||
#, python-format
|
||
msgid "Could not add port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można dodać portu %s/%s"
|
||
|
||
#: ../semanage/seobject.py:709 ../semanage/seobject.py:906
|
||
msgid "Requires setype or serange"
|
||
-msgstr ""
|
||
+msgstr "Wymagane jest setype lub serange"
|
||
|
||
#: ../semanage/seobject.py:711
|
||
msgid "Requires setype"
|
||
-msgstr ""
|
||
+msgstr "Wymagane jest setype"
|
||
|
||
#: ../semanage/seobject.py:719 ../semanage/seobject.py:753
|
||
#, python-format
|
||
msgid "Port %s/%s is not defined"
|
||
-msgstr ""
|
||
+msgstr "Port %s/%s nie został określony"
|
||
|
||
#: ../semanage/seobject.py:723
|
||
#, python-format
|
||
msgid "Could not query port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można odpytać portu %s/%s"
|
||
|
||
#: ../semanage/seobject.py:738 ../semanage/seobject.py:742
|
||
#, python-format
|
||
msgid "Could not modify port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można zmodyfikować portu %s/%s"
|
||
|
||
#: ../semanage/seobject.py:759
|
||
#, python-format
|
||
msgid "Port %s/%s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "Port %s/%s został określony w polityce, nie może zostać usunięty"
|
||
|
||
#: ../semanage/seobject.py:767 ../semanage/seobject.py:771
|
||
#, python-format
|
||
msgid "Could not delete port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "Nie można usunąć portu %s/%s"
|
||
|
||
#: ../semanage/seobject.py:779 ../semanage/seobject.py:798
|
||
msgid "Could not list ports"
|
||
-msgstr ""
|
||
+msgstr "Nie można wyświetlić listy portów"
|
||
|
||
#: ../semanage/seobject.py:842 ../semanage/seobject.py:1014
|
||
msgid "SELinux Type is required"
|
||
-msgstr ""
|
||
+msgstr "Wymagany jest typ SELinuksa"
|
||
|
||
#: ../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 ""
|
||
+msgstr "Nie można utworzyć klucza dla %s"
|
||
|
||
#: ../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 ""
|
||
+msgstr "Nie można sprawdzić, jeśli interfejs %s został określony"
|
||
|
||
#: ../semanage/seobject.py:852
|
||
#, python-format
|
||
msgid "Interface %s already defined"
|
||
-msgstr ""
|
||
+msgstr "Interfejs %s został już określony"
|
||
|
||
#: ../semanage/seobject.py:856
|
||
#, python-format
|
||
msgid "Could not create interface for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć interfejsu dla %s"
|
||
|
||
#: ../semanage/seobject.py:861 ../semanage/seobject.py:1033
|
||
#, python-format
|
||
msgid "Could not create context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można utworzyć kontekstu dla %s"
|
||
|
||
#: ../semanage/seobject.py:865
|
||
#, python-format
|
||
msgid "Could not set user in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić użytkownika w kontekście interfejsu dla %s"
|
||
|
||
#: ../semanage/seobject.py:869
|
||
#, python-format
|
||
msgid "Could not set role in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić roli w kontekście interfejsu dla %s"
|
||
|
||
#: ../semanage/seobject.py:873
|
||
#, python-format
|
||
msgid "Could not set type in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić typu w kontekście interfejsu dla %s"
|
||
|
||
#: ../semanage/seobject.py:878
|
||
#, python-format
|
||
msgid "Could not set mls fields in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić pól MLS w kontekście interfejsu dla %s"
|
||
|
||
#: ../semanage/seobject.py:882
|
||
#, python-format
|
||
msgid "Could not set interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić kontekstu interfejsu dla %s"
|
||
|
||
#: ../semanage/seobject.py:886
|
||
#, python-format
|
||
msgid "Could not set message context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić kontekstu komunikatu dla %s"
|
||
|
||
#: ../semanage/seobject.py:894 ../semanage/seobject.py:898
|
||
#, python-format
|
||
msgid "Could not add interface %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można dodać interfejsu %s"
|
||
|
||
#: ../semanage/seobject.py:916 ../semanage/seobject.py:953
|
||
#, python-format
|
||
msgid "Interface %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "Interfejs %s nie został określony"
|
||
|
||
#: ../semanage/seobject.py:920
|
||
#, python-format
|
||
msgid "Could not query interface %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można odpytać interfejsu %s"
|
||
|
||
#: ../semanage/seobject.py:935 ../semanage/seobject.py:939
|
||
#, python-format
|
||
msgid "Could not modify interface %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można zmodyfikować interfejsu %s"
|
||
|
||
#: ../semanage/seobject.py:959
|
||
#, python-format
|
||
msgid "Interface %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "Interfejs %s został określony w polityce, nie może zostać usunięty"
|
||
|
||
#: ../semanage/seobject.py:967 ../semanage/seobject.py:971
|
||
#, python-format
|
||
msgid "Could not delete interface %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można usunąć interfejsu %s"
|
||
|
||
#: ../semanage/seobject.py:979
|
||
msgid "Could not list interfaces"
|
||
-msgstr ""
|
||
+msgstr "Nie można wyświetlić listy interfejsów"
|
||
|
||
#: ../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 ""
|
||
+msgstr "Nie można sprawdzić, jeśli kontekst pliku dla %s został określony"
|
||
|
||
#: ../semanage/seobject.py:1024
|
||
#, python-format
|
||
msgid "File context for %s already defined"
|
||
-msgstr ""
|
||
+msgstr "Kontekst pliku dla %s nie został określony"
|
||
|
||
#: ../semanage/seobject.py:1028
|
||
#, python-format
|
||
msgid "Could not create file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można określić kontekstu pliki dla %s"
|
||
|
||
#: ../semanage/seobject.py:1037
|
||
#, python-format
|
||
msgid "Could not set user in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić użytkownika w kontekście pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1041
|
||
#, python-format
|
||
msgid "Could not set role in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić roli w kontekście pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1045
|
||
#, python-format
|
||
msgid "Could not set type in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można określić typu w kontekście pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1050
|
||
#, python-format
|
||
msgid "Could not set mls fields in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić pól MLS w kontekście pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1056
|
||
#, python-format
|
||
msgid "Could not set file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można ustawić kontekstu pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1064 ../semanage/seobject.py:1068
|
||
#, python-format
|
||
msgid "Could not add file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można dodać kontekstu pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1076
|
||
msgid "Requires setype, serange or seuser"
|
||
-msgstr ""
|
||
+msgstr "Wymagane jest setype, serange lub seuser"
|
||
|
||
#: ../semanage/seobject.py:1086 ../semanage/seobject.py:1125
|
||
#, python-format
|
||
msgid "File context for %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "Kontekst pliku dla %s nie został określony"
|
||
|
||
#: ../semanage/seobject.py:1090
|
||
#, python-format
|
||
msgid "Could not query file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można odpytać kontekstu pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1107 ../semanage/seobject.py:1111
|
||
#, python-format
|
||
msgid "Could not modify file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można zmodyfikować kontekstu pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1131
|
||
#, python-format
|
||
msgid "File context for %s is defined in policy, cannot be deleted"
|
||
msgstr ""
|
||
+"Kontekst pliku dla %s został określony w polityce, nie może zostać usunięty"
|
||
|
||
#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1143
|
||
#, python-format
|
||
msgid "Could not delete file context for %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można usunąć kontekstu pliku dla %s"
|
||
|
||
#: ../semanage/seobject.py:1151
|
||
msgid "Could not list file contexts"
|
||
-msgstr ""
|
||
+msgstr "Nie można wyświetlić listy kontekstów plików"
|
||
|
||
#: ../semanage/seobject.py:1189
|
||
msgid "Requires value"
|
||
-msgstr ""
|
||
+msgstr "Wymagana jest wartość"
|
||
|
||
#: ../semanage/seobject.py:1197 ../semanage/seobject.py:1231
|
||
#: ../semanage/seobject.py:1237
|
||
#, python-format
|
||
msgid "Could not check if boolean %s is defined"
|
||
-msgstr ""
|
||
+msgstr "Nie można sprawdzić, jeśli wartość logiczna %s została określona"
|
||
|
||
#: ../semanage/seobject.py:1199 ../semanage/seobject.py:1233
|
||
#, python-format
|
||
msgid "Boolean %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "Wartość logiczna %s nie została określona"
|
||
|
||
#: ../semanage/seobject.py:1203
|
||
#, python-format
|
||
msgid "Could not query file context %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można odpytać kontekstu pliku %s"
|
||
|
||
#: ../semanage/seobject.py:1215 ../semanage/seobject.py:1219
|
||
#, python-format
|
||
msgid "Could not modify boolean %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można zmodyfikować wartości logicznej %s"
|
||
|
||
#: ../semanage/seobject.py:1239
|
||
#, python-format
|
||
msgid "Boolean %s is defined in policy, cannot be deleted"
|
||
msgstr ""
|
||
+"Wartość logiczna %s została określona w polityce, nie może zostać usunięta"
|
||
|
||
#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1251
|
||
#, python-format
|
||
msgid "Could not delete boolean %s"
|
||
-msgstr ""
|
||
+msgstr "Nie można usunąć wartości logicznej %s"
|
||
|
||
#: ../semanage/seobject.py:1259
|
||
msgid "Could not list booleans"
|
||
-msgstr ""
|
||
+msgstr "Nie można wyświetlić listy wartości logicznych"
|
||
|
||
#: ../audit2allow/audit2allow:179
|
||
#, c-format
|
||
msgid "Generating type enforcment file: %s.te"
|
||
-msgstr ""
|
||
+msgstr "Tworzenie pliku typu narzuconego: %s.te"
|
||
|
||
#: ../audit2allow/audit2allow:184
|
||
msgid "Compiling policy"
|
||
-msgstr ""
|
||
+msgstr "Kompilowanie polityki"
|
||
|
||
#: ../audit2allow/audit2allow:195
|
||
msgid ""
|
||
"\n"
|
||
"******************** IMPORTANT ***********************\n"
|
||
msgstr ""
|
||
+"\n"
|
||
+"******************** WAŻNE ***********************\n"
|
||
|
||
#: ../audit2allow/audit2allow:196
|
||
#, c-format
|
||
@@ -937,8 +967,12 @@
|
||
"semodule -i %s.pp\n"
|
||
"\n"
|
||
msgstr ""
|
||
+"Aby wczytać ten nowo utworzony pakiet do jądra, musisz wykonać \n"
|
||
+"\n"
|
||
+"semodule -i %s.pp\n"
|
||
+"\n"
|
||
|
||
#: ../audit2allow/audit2allow:203
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
-msgstr ""
|
||
+msgstr "Błąd opcji: %s "
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/policycoreutils.pot policycoreutils-1.30.9/po/policycoreutils.pot
|
||
--- nsapolicycoreutils/po/policycoreutils.pot 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/policycoreutils.pot 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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/pt_BR.po policycoreutils-1.30.9/po/pt_BR.po
|
||
--- nsapolicycoreutils/po/pt_BR.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/pt_BR.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/pt.po policycoreutils-1.30.9/po/pt.po
|
||
--- nsapolicycoreutils/po/pt.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/pt.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -2,7 +2,7 @@
|
||
msgstr ""
|
||
"Project-Id-Version: policycoreutils\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-05-05 15:42+0100\n"
|
||
"Last-Translator: José Nuno Coelho Pires <jncp@netcabo.pt>\n"
|
||
"Language-Team: pt <kde-i18n-pt@kde.org>\n"
|
||
@@ -491,14 +491,15 @@
|
||
msgid "Could not set SELinux user for %s"
|
||
msgstr "Não foi possível definir o utilizador do SELinux para o %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 "Não foi possível iniciar a transacção do 'semanage'"
|
||
|
||
@@ -521,10 +522,6 @@
|
||
msgid "Could not query seuser for %s"
|
||
msgstr "Não foi possível pesquisar o 'seuser' por %s"
|
||
|
||
-#: ../semanage/seobject.py:321
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr "Não foi possível iniciar a transacção do 'semanage'"
|
||
-
|
||
#: ../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/ro.po policycoreutils-1.30.9/po/ro.po
|
||
--- nsapolicycoreutils/po/ro.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ro.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/ru.po policycoreutils-1.30.9/po/ru.po
|
||
--- nsapolicycoreutils/po/ru.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ru.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -1,31 +1,47 @@
|
||
+# translation of ru.po to Russian
|
||
+#
|
||
+# Andrew Martynov <andrewm@inventa.ru>, 2006.
|
||
+msgid ""
|
||
+msgstr ""
|
||
+"Project-Id-Version: ru\n"
|
||
+"Report-Msgid-Bugs-To: \n"
|
||
+"POT-Creation-Date: 2006-05-10 08:32-0400\n"
|
||
+"PO-Revision-Date: 2006-05-09 01:36+0400\n"
|
||
+"Last-Translator: Andrew Martynov <andrewm@inventa.ru>\n"
|
||
+"Language-Team: Russian <fedora-trans-ru@redhat.com>\n"
|
||
+"MIME-Version: 1.0\n"
|
||
+"Content-Type: text/plain; charset=UTF-8\n"
|
||
+"Content-Transfer-Encoding: 8bit\n"
|
||
+"X-Generator: KBabel 1.11.2\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
|
||
@@ -35,7 +51,7 @@
|
||
#: ../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
|
||
@@ -50,12 +66,12 @@
|
||
#: ../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
|
||
@@ -65,37 +81,37 @@
|
||
#: ../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 "Невозможно определить режим блокировок (enforcing).\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
|
||
@@ -115,32 +131,32 @@
|
||
#: ../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
|
||
@@ -160,12 +176,12 @@
|
||
#: ../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
|
||
@@ -180,17 +196,17 @@
|
||
#: ../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: сбой выполнения fork: %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
|
||
@@ -200,31 +216,31 @@
|
||
#: ../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 "Невозможно задать контекст для %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 ""
|
||
@@ -236,31 +252,32 @@
|
||
#: ../run_init/run_init.c:264
|
||
#, c-format
|
||
msgid "run_init: incorrect password for %s\n"
|
||
-msgstr ""
|
||
+msgstr "run_init: неверный пароль для %s\n"
|
||
|
||
#: ../run_init/run_init.c:295
|
||
#, c-format
|
||
msgid "Could not open file %s\n"
|
||
-msgstr ""
|
||
+msgstr "Невозможно открыть файл %s\n"
|
||
|
||
#: ../run_init/run_init.c:322
|
||
#, c-format
|
||
msgid "No context in file %s\n"
|
||
-msgstr ""
|
||
+msgstr "Нет контекста в файле %s\n"
|
||
|
||
#: ../run_init/run_init.c:345
|
||
#, c-format
|
||
msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
|
||
msgstr ""
|
||
+"Извините, run_init может быть использовано только для ядра с SELinux.\n"
|
||
|
||
#: ../run_init/run_init.c:364
|
||
#, c-format
|
||
msgid "authentication failed.\n"
|
||
-msgstr ""
|
||
+msgstr "сбой проверки подлинности.\n"
|
||
|
||
#: ../scripts/chcat:70 ../scripts/chcat:140
|
||
msgid "Requires at least one category"
|
||
-msgstr ""
|
||
+msgstr "Требуется как минимум одна категория"
|
||
|
||
#: ../scripts/chcat:84 ../scripts/chcat:154
|
||
#, c-format
|
||
@@ -270,16 +287,16 @@
|
||
#: ../scripts/chcat:88
|
||
#, c-format
|
||
msgid "%s is already in %s"
|
||
-msgstr ""
|
||
+msgstr "%s уже в %s"
|
||
|
||
#: ../scripts/chcat:159 ../scripts/chcat:169
|
||
#, c-format
|
||
msgid "%s is not in %s"
|
||
-msgstr ""
|
||
+msgstr "%s не в %s"
|
||
|
||
#: ../scripts/chcat:232 ../scripts/chcat:237
|
||
msgid "Can not combine +/- with other types of categories"
|
||
-msgstr ""
|
||
+msgstr "Невозможно объединить +/- с другими типами категорий"
|
||
|
||
#: ../scripts/chcat:282
|
||
msgid "Can not have multiple sensitivities"
|
||
@@ -459,14 +476,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 +507,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/si.po policycoreutils-1.30.9/po/si.po
|
||
--- nsapolicycoreutils/po/si.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/si.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/sk.po policycoreutils-1.30.9/po/sk.po
|
||
--- nsapolicycoreutils/po/sk.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/sk.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/sl.po policycoreutils-1.30.9/po/sl.po
|
||
--- nsapolicycoreutils/po/sl.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/sl.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/sq.po policycoreutils-1.30.9/po/sq.po
|
||
--- nsapolicycoreutils/po/sq.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/sq.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/sr@Latn.po policycoreutils-1.30.9/po/sr@Latn.po
|
||
--- nsapolicycoreutils/po/sr@Latn.po 2006-05-15 09:43:11.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/sr@Latn.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/sr.po policycoreutils-1.30.9/po/sr.po
|
||
--- nsapolicycoreutils/po/sr.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/sr.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/sv.po policycoreutils-1.30.9/po/sv.po
|
||
--- nsapolicycoreutils/po/sv.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/sv.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/ta.po policycoreutils-1.30.9/po/ta.po
|
||
--- nsapolicycoreutils/po/ta.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ta.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -7,16 +7,15 @@
|
||
msgstr ""
|
||
"Project-Id-Version: ta\n"
|
||
"Report-Msgid-Bugs-To: \n"
|
||
-"POT-Creation-Date: 2006-05-08 11:22-0400\n"
|
||
-"PO-Revision-Date: 2006-05-05 14:26+0530\n"
|
||
+"POT-Creation-Date: 2006-05-02 20:34-0400\n"
|
||
+"PO-Revision-Date: 2006-05-10 18:00+0530\n"
|
||
"Last-Translator: Felix <ifelix@redhat.com>\n"
|
||
"Language-Team: Tamil <ta@li.org>\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"
|
||
+"Plural-Forms: nplurals=2; plural=(n != 1);\n\n"
|
||
|
||
#: ../load_policy/load_policy.c:22
|
||
#, c-format
|
||
@@ -80,171 +79,171 @@
|
||
#: ../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 "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 "மன்னிக்கவும், -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 "பழைய சூழலை எடுக்க முடியவில்லை.\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 "உங்கள் உள்ளீடை கடவுச்சொல் கோப்பில் பார்க்க முடியவில்லை.\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 "புதிய பாத்திரம்: %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 "புதிய பாத்திரம்: கிளைப்படுத்த முடியவில்லை: %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 "%sக்கு exec சூழலை அமைக்க முடியவில்லை.\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 ""
|
||
@@ -252,188 +251,154 @@
|
||
" where: <script> is the name of the init script to run,\n"
|
||
" <args ...> are the arguments to that script."
|
||
msgstr ""
|
||
+"பயன்பாடு: run_init <script> <args ...>\n"
|
||
+" எங்கு: <script> ஆரம்ப உரையின் பெயரை இயக்க வேண்டும்,\n"
|
||
+" <args ...> இவை அந்த உரையின் மதிப்புகள் ஆகும்."
|
||
|
||
#: ../run_init/run_init.c:264
|
||
#, c-format
|
||
msgid "run_init: incorrect password for %s\n"
|
||
-msgstr ""
|
||
+msgstr "run_init: %sக்கு தவறான கடவுச்சொல்\n"
|
||
|
||
#: ../run_init/run_init.c:295
|
||
#, c-format
|
||
msgid "Could not open file %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s கோப்பினை திறக்க முடியவில்லை\n"
|
||
|
||
#: ../run_init/run_init.c:322
|
||
#, c-format
|
||
msgid "No context in file %s\n"
|
||
-msgstr ""
|
||
+msgstr "%s கோப்பில் சூழல் இல்லை\n"
|
||
|
||
#: ../run_init/run_init.c:345
|
||
#, c-format
|
||
msgid "Sorry, run_init may be used only on a SELinux kernel.\n"
|
||
-msgstr ""
|
||
+msgstr "மன்னிக்கவும், run_init SELinux கர்னலில் மட்டுமே பயன்படுத்தப்படும்.\n"
|
||
|
||
#: ../run_init/run_init.c:364
|
||
#, c-format
|
||
msgid "authentication failed.\n"
|
||
-msgstr ""
|
||
+msgstr "அங்கீகரிக்கப்படவில்லை.\n"
|
||
|
||
#: ../scripts/chcat:70 ../scripts/chcat:140
|
||
msgid "Requires at least one category"
|
||
-msgstr ""
|
||
+msgstr "ஒரு வகையாவது தேவைப்படுகிறது"
|
||
|
||
#: ../scripts/chcat:84 ../scripts/chcat:154
|
||
#, c-format
|
||
msgid "Can not modify sensitivity levels using '+' on %s"
|
||
-msgstr ""
|
||
+msgstr "%sல் '+' ஐ பயன்படுத்தும் அறிவார்ந்த நிலைகளை மாற்ற முடியாது"
|
||
|
||
#: ../scripts/chcat:88
|
||
#, c-format
|
||
msgid "%s is already in %s"
|
||
-msgstr ""
|
||
+msgstr "%s ஏற்கனவே %sல் இருக்கிறது"
|
||
|
||
#: ../scripts/chcat:159 ../scripts/chcat:169
|
||
#, c-format
|
||
msgid "%s is not in %s"
|
||
-msgstr ""
|
||
+msgstr "%s %sல் இல்லை"
|
||
|
||
#: ../scripts/chcat:232 ../scripts/chcat:237
|
||
msgid "Can not combine +/- with other types of categories"
|
||
-msgstr ""
|
||
+msgstr "+/-வைகளை மற்ற வகையின் வகையுடன் இணைக்க முடியாது"
|
||
|
||
#: ../scripts/chcat:282
|
||
msgid "Can not have multiple sensitivities"
|
||
-msgstr ""
|
||
+msgstr "பல அறிவார்ந்தவைகளை கொண்டிருக்கவில்லை"
|
||
|
||
#: ../scripts/chcat:288
|
||
#, c-format
|
||
msgid "Usage %s CATEGORY File ..."
|
||
-msgstr ""
|
||
+msgstr "பயன்பாடு %s CATEGORY கோப்பு ..."
|
||
|
||
#: ../scripts/chcat:289
|
||
#, c-format
|
||
msgid "Usage %s -l CATEGORY user ..."
|
||
-msgstr ""
|
||
+msgstr "பயன்பாடு %s -l CATEGORY பயனர் ..."
|
||
|
||
#: ../scripts/chcat:290
|
||
#, c-format
|
||
msgid "Usage %s [[+|-]CATEGORY],...]q File ..."
|
||
-msgstr ""
|
||
+msgstr "பயன்பாடு %s [[+|-]CATEGORY],...]q கோப்பு ..."
|
||
|
||
#: ../scripts/chcat:291
|
||
#, c-format
|
||
msgid "Usage %s -l [[+|-]CATEGORY],...]q user ..."
|
||
-msgstr ""
|
||
+msgstr "பயன்பாடு %s -l [[+|-]CATEGORY],...]q பயனர் ..."
|
||
|
||
#: ../scripts/chcat:292
|
||
#, c-format
|
||
msgid "Usage %s -d File ..."
|
||
-msgstr ""
|
||
+msgstr "பயன்பாடு %s -d கோப்பு ..."
|
||
|
||
#: ../scripts/chcat:293
|
||
#, c-format
|
||
msgid "Usage %s -l -d user ..."
|
||
-msgstr ""
|
||
+msgstr "பயன்பாடு %s -l -d பயனர் ..."
|
||
|
||
#: ../scripts/chcat:294
|
||
-#, fuzzy, c-format
|
||
+#, c-format
|
||
msgid "Usage %s -L"
|
||
-msgstr "பயன்பாடு: %s [-bq]\n"
|
||
+msgstr "பயன்பாடு %s -L"
|
||
|
||
#: ../scripts/chcat:295
|
||
#, c-format
|
||
msgid "Usage %s -L -l user"
|
||
-msgstr ""
|
||
+msgstr "பயன்பாடு %s -L -l பயனர்"
|
||
|
||
#: ../scripts/chcat:296
|
||
msgid "Use -- to end option list. For example"
|
||
-msgstr ""
|
||
+msgstr "Use -- விருப்ப பட்டியலை முடிக்க. எடுத்துக்காட்டாக"
|
||
|
||
#: ../scripts/chcat:297
|
||
msgid "chcat -- -CompanyConfidential /docs/businessplan.odt"
|
||
-msgstr ""
|
||
+msgstr "chcat -- -CompanyConfidential /docs/businessplan.odt"
|
||
|
||
#: ../scripts/chcat:298
|
||
msgid "chcat -l +CompanyConfidential juser"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:122
|
||
-msgid "Requires 2 or more arguments"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:127
|
||
-#, c-format
|
||
-msgid "%s not defined"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:151
|
||
-#, c-format
|
||
-msgid "%s not valid for %s objects\n"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:178 ../semanage/semanage:186
|
||
-msgid "range not supported on Non MLS machines"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:244
|
||
-msgid "You must specify a role"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:246
|
||
-msgid "You must specify a prefix"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:295
|
||
-#, c-format
|
||
-msgid "Options Error %s "
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/semanage:299
|
||
-#, c-format
|
||
-msgid "Invalid value %s"
|
||
-msgstr ""
|
||
+msgstr "chcat -l +CompanyConfidential juser"
|
||
|
||
#: ../semanage/seobject.py:124
|
||
msgid "translations not supported on non-MLS machines"
|
||
-msgstr ""
|
||
+msgstr "non-MLS கணினிகளில் மொழிபெயர்க்க முடியாது"
|
||
|
||
#: ../semanage/seobject.py:131
|
||
#, python-format
|
||
msgid "Unable to open %s: translations not supported on non-MLS machines"
|
||
-msgstr ""
|
||
+msgstr "%sஐ திறக்க முடியவில்லை: MLS இல்லா கணினிகளில் மொழிபெயர்ப்பிற்கு துணை புரிவதில்லை"
|
||
|
||
#: ../semanage/seobject.py:171 ../semanage/seobject.py:185
|
||
#, python-format
|
||
msgid "Translations can not contain spaces '%s' "
|
||
-msgstr ""
|
||
+msgstr "மொழிபெயர்ப்புகள் இடைவெளியை கொண்டிருக்கக்கூடாது '%s' "
|
||
|
||
#: ../semanage/seobject.py:174
|
||
#, python-format
|
||
msgid "Invalid Level '%s' "
|
||
-msgstr ""
|
||
+msgstr "தவறான நிலை '%s' "
|
||
|
||
#: ../semanage/seobject.py:177
|
||
#, python-format
|
||
msgid "%s already defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s ஏற்கனவே மொழிபெயர்ப்புகளில் குறிப்பிடப்பட்டுள்ளது"
|
||
|
||
#: ../semanage/seobject.py:189
|
||
#, python-format
|
||
msgid "%s not defined in translations"
|
||
-msgstr ""
|
||
+msgstr "%s மொழிபெயர்ப்பில் குறிப்பிடப்படவில்லை"
|
||
|
||
#: ../semanage/seobject.py:209
|
||
msgid "SELinux policy is not managed or store cannot be accessed."
|
||
-msgstr ""
|
||
+msgstr "SELinux பாலிசி பராமரிக்கப்படாத அல்லது சேமிக்கப்படாததை அணுக முடியாது."
|
||
|
||
#: ../semanage/seobject.py:214
|
||
-#, fuzzy
|
||
msgid "Cannot read policy store."
|
||
-msgstr "%s: பாலிசியை ஏற்ற முடியவில்லை: %s\n"
|
||
+msgstr "பாலிசி ஸ்டோரை படிக்க முடியவில்லை."
|
||
|
||
#: ../semanage/seobject.py:219
|
||
msgid "Could not establish semanage connection"
|
||
-msgstr ""
|
||
+msgstr "semanage இணைப்பினை ஏற்படுத்த முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:238 ../semanage/seobject.py:296
|
||
#: ../semanage/seobject.py:343 ../semanage/seobject.py:424
|
||
@@ -442,43 +407,43 @@
|
||
#: ../semanage/seobject.py:1193 ../semanage/seobject.py:1227
|
||
#, python-format
|
||
msgid "Could not create a key for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு விசையை உருவாக்க முடியவில்லை"
|
||
|
||
#: ../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 ""
|
||
+msgstr "%sக்கு அனுமதி ஒப்பீடு குறிப்பிடப்பட்டால், சோதிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:244
|
||
#, python-format
|
||
msgid "Login mapping for %s is already defined"
|
||
-msgstr ""
|
||
+msgstr "அனுமதி ஒப்பீடு %sக்கு ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
|
||
|
||
#: ../semanage/seobject.py:248
|
||
#, python-format
|
||
msgid "Linux User %s does not exist"
|
||
-msgstr ""
|
||
+msgstr "லினக்ஸ் பயனர் %s இல்லை"
|
||
|
||
#: ../semanage/seobject.py:252
|
||
#, python-format
|
||
msgid "Could not create login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு அனுமதி ஒப்பீடு உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:256 ../semanage/seobject.py:438
|
||
#, python-format
|
||
msgid "Could not set name for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு பெயர் அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:261 ../semanage/seobject.py:448
|
||
#, python-format
|
||
msgid "Could not set MLS range for %s"
|
||
-msgstr ""
|
||
+msgstr "MLS வரையறையை %sக்கு அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:265
|
||
#, python-format
|
||
msgid "Could not set SELinux user for %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனரை %sக்கு அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:269 ../semanage/seobject.py:359
|
||
#: ../semanage/seobject.py:463 ../semanage/seobject.py:526
|
||
@@ -489,465 +454,463 @@
|
||
#: ../semanage/seobject.py:1103 ../semanage/seobject.py:1135
|
||
#: ../semanage/seobject.py:1211 ../semanage/seobject.py:1243
|
||
msgid "Could not start semanage transaction"
|
||
-msgstr ""
|
||
+msgstr "semanage பரிமாற்றத்தை ஆரம்பிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:273 ../semanage/seobject.py:277
|
||
#, python-format
|
||
msgid "Could not add login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு அனுமதி ஒப்பீடு சேர்க்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:292
|
||
msgid "Requires seuser or serange"
|
||
-msgstr ""
|
||
+msgstr "seuser அல்லது serange தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:302 ../semanage/seobject.py:349
|
||
#, python-format
|
||
msgid "Login mapping for %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு அனுமதி ஒப்பீடு குறிப்பிடப்படவில்லை"
|
||
|
||
#: ../semanage/seobject.py:306
|
||
#, python-format
|
||
msgid "Could not query seuser for %s"
|
||
-msgstr ""
|
||
-
|
||
-#: ../semanage/seobject.py:321
|
||
-msgid "Could not srart semanage transaction"
|
||
-msgstr ""
|
||
+msgstr "seuser %sக்கு வினா எழுப்ப முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:325 ../semanage/seobject.py:329
|
||
#, python-format
|
||
msgid "Could not modify login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு அனுமதி ஒப்பீடுகளை மாற்ற முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:355
|
||
#, python-format
|
||
msgid "Login mapping for %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "அனுமதி ஒப்பீடு %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:364 ../semanage/seobject.py:368
|
||
#, python-format
|
||
msgid "Could not delete login mapping for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு அனுமதி ஒப்பீடுகளை அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:382
|
||
msgid "Could not list login mappings"
|
||
-msgstr ""
|
||
+msgstr "அனுமதி ஒப்பீடுகளை பட்டியலிட முடியவில்லை"
|
||
|
||
#: ../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 ""
|
||
+msgstr "SELinux பயனர் %s குறிப்பிடப்பட்டால், சோதிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:430
|
||
#, python-format
|
||
msgid "SELinux user %s is already defined"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனர் %s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
|
||
|
||
#: ../semanage/seobject.py:434
|
||
#, python-format
|
||
msgid "Could not create SELinux user for %s"
|
||
-msgstr ""
|
||
+msgstr " SELinux பயனரை %sக்கு உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:443
|
||
#, python-format
|
||
msgid "Could not add role %s for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு %s பாத்திரத்தை சேர்க்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:452
|
||
#, python-format
|
||
msgid "Could not set MLS level for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு MLS நிலையை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:456
|
||
#, python-format
|
||
msgid "Could not add prefix %s for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு %sல் முன்னொட்டினை சேர்க்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:459
|
||
#, python-format
|
||
msgid "Could not extract key for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு விசையை பிரிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:467 ../semanage/seobject.py:471
|
||
#, python-format
|
||
msgid "Could not add SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனர் %sஐ சேர்க்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:487
|
||
msgid "Requires prefix, roles, level or range"
|
||
-msgstr ""
|
||
+msgstr "முன்னொட்டு, பாத்திரங்கள், நிலை அல்லது வரையறை தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:489
|
||
msgid "Requires prefix or roles"
|
||
-msgstr ""
|
||
+msgstr "முன்னொட்டு அல்லது பாத்திரம் தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:499 ../semanage/seobject.py:555
|
||
#, python-format
|
||
msgid "SELinux user %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனர் %s குறிப்பிடப்படவில்லை"
|
||
|
||
#: ../semanage/seobject.py:503
|
||
#, python-format
|
||
msgid "Could not query user for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு பயனரை வினா எழுப்ப முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:530 ../semanage/seobject.py:534
|
||
#, python-format
|
||
msgid "Could not modify SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனர் %sஐ மாற்ற முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:561
|
||
#, python-format
|
||
msgid "SELinux user %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனர் %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:569 ../semanage/seobject.py:573
|
||
#, python-format
|
||
msgid "Could not delete SELinux user %s"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனர் %sஐ அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:585
|
||
msgid "Could not list SELinux users"
|
||
-msgstr ""
|
||
+msgstr "SELinux பயனர்களை பட்டியலிட முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:591
|
||
#, python-format
|
||
msgid "Could not list roles for user %s"
|
||
-msgstr ""
|
||
+msgstr "பயனர் %sக்கு பாத்திரங்களை பட்டியலிட முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:625
|
||
msgid "Protocol udp or tcp is required"
|
||
-msgstr ""
|
||
+msgstr "நெறிமுறை udp அல்லது tcp தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:627
|
||
msgid "Port is required"
|
||
-msgstr ""
|
||
+msgstr "துறை தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:638
|
||
#, python-format
|
||
msgid "Could not create a key for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%sக்கு விசையை உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:649
|
||
msgid "Type is required"
|
||
-msgstr ""
|
||
+msgstr "வகை தேவைப்படுகிறது"
|
||
|
||
#: ../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 ""
|
||
+msgstr "துறை %s/%s குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
|
||
|
||
#: ../semanage/seobject.py:657
|
||
#, python-format
|
||
msgid "Port %s/%s already defined"
|
||
-msgstr ""
|
||
+msgstr "துறை %s/%s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
|
||
|
||
#: ../semanage/seobject.py:661
|
||
#, python-format
|
||
msgid "Could not create port for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s க்கு துறையை உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:667
|
||
#, python-format
|
||
msgid "Could not create context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%sக்கு சூழலை உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:671
|
||
#, python-format
|
||
msgid "Could not set user in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s க்கு துறை சூழலில் பயனரை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:675
|
||
#, python-format
|
||
msgid "Could not set role in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s க்கு துறை சூழலில் பாத்திரங்களை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:679
|
||
#, python-format
|
||
msgid "Could not set type in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s க்கு துறை சூழலில் வகையை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:684
|
||
#, python-format
|
||
msgid "Could not set mls fields in port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s க்கு துறை சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:688
|
||
#, python-format
|
||
msgid "Could not set port context for %s/%s"
|
||
-msgstr ""
|
||
+msgstr "%s/%s க்கு துறை சூழலை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:696 ../semanage/seobject.py:700
|
||
#, python-format
|
||
msgid "Could not add port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "துறை %s/%sயை சேர்க்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:709 ../semanage/seobject.py:906
|
||
msgid "Requires setype or serange"
|
||
-msgstr ""
|
||
+msgstr "setype அல்லது serange தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:711
|
||
msgid "Requires setype"
|
||
-msgstr ""
|
||
+msgstr "setype தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:719 ../semanage/seobject.py:753
|
||
#, python-format
|
||
msgid "Port %s/%s is not defined"
|
||
-msgstr ""
|
||
+msgstr "துறை %s/%s குறிப்பிடப்படவில்லை"
|
||
|
||
#: ../semanage/seobject.py:723
|
||
#, python-format
|
||
msgid "Could not query port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "துறை %s/%sஐ வினா எழுப்ப முடியாது"
|
||
|
||
#: ../semanage/seobject.py:738 ../semanage/seobject.py:742
|
||
#, python-format
|
||
msgid "Could not modify port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "துறை %s/%sஐ மாற்ற முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:759
|
||
#, python-format
|
||
msgid "Port %s/%s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "துறை %s/%s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:767 ../semanage/seobject.py:771
|
||
#, python-format
|
||
msgid "Could not delete port %s/%s"
|
||
-msgstr ""
|
||
+msgstr "துறைகளை அழிக்க முடியவில்லை %s/%s"
|
||
|
||
#: ../semanage/seobject.py:779 ../semanage/seobject.py:798
|
||
msgid "Could not list ports"
|
||
-msgstr ""
|
||
+msgstr "துறைகளை பட்டியலிட முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:842 ../semanage/seobject.py:1014
|
||
msgid "SELinux Type is required"
|
||
-msgstr ""
|
||
+msgstr "SELinux வகை தேவைப்படுகிறது"
|
||
|
||
#: ../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 ""
|
||
+msgstr "%sக்கு விசையை உருவாக்க முடியவில்லை"
|
||
|
||
#: ../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 ""
|
||
+msgstr "இடைமுகம் %s குறிப்பிடப்பட்டால் சோதிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:852
|
||
#, python-format
|
||
msgid "Interface %s already defined"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகம் %s ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
|
||
|
||
#: ../semanage/seobject.py:856
|
||
#, python-format
|
||
msgid "Could not create interface for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு இடைமுகம் உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:861 ../semanage/seobject.py:1033
|
||
#, python-format
|
||
msgid "Could not create context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு சூழலை உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:865
|
||
#, python-format
|
||
msgid "Could not set user in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு இடைமுக சூழலில் பயனரை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:869
|
||
#, python-format
|
||
msgid "Could not set role in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு இடைமுக சூழலில் பாத்திரத்தை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:873
|
||
#, python-format
|
||
msgid "Could not set type in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு இடைமுக சூழலில் வகையை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:878
|
||
#, python-format
|
||
msgid "Could not set mls fields in interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு இடைமுக சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:882
|
||
#, python-format
|
||
msgid "Could not set interface context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு இடைமுக சூழலை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:886
|
||
#, python-format
|
||
msgid "Could not set message context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு செய்தி சூழலை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:894 ../semanage/seobject.py:898
|
||
#, python-format
|
||
msgid "Could not add interface %s"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகத்தை சேர்க்க முடியவில்லை %s"
|
||
|
||
#: ../semanage/seobject.py:916 ../semanage/seobject.py:953
|
||
#, python-format
|
||
msgid "Interface %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகம் %s குறிப்பிடப்படவில்லை"
|
||
|
||
#: ../semanage/seobject.py:920
|
||
#, python-format
|
||
msgid "Could not query interface %s"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகம் %sஐ வினா எழுப்ப முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:935 ../semanage/seobject.py:939
|
||
#, python-format
|
||
msgid "Could not modify interface %s"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகம் %sஐ மாற்ற முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:959
|
||
#, python-format
|
||
msgid "Interface %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகம் %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியாது"
|
||
|
||
#: ../semanage/seobject.py:967 ../semanage/seobject.py:971
|
||
#, python-format
|
||
msgid "Could not delete interface %s"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகம் %s ஐ அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:979
|
||
msgid "Could not list interfaces"
|
||
-msgstr ""
|
||
+msgstr "இடைமுகங்களை பட்டியலிட முடியவில்லை"
|
||
|
||
#: ../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 ""
|
||
+msgstr "%s க்கு கோப்பு சூழல் குறிப்பிடப்பட்டால் சோதிக்கப்படுவதில்லை"
|
||
|
||
#: ../semanage/seobject.py:1024
|
||
#, python-format
|
||
msgid "File context for %s already defined"
|
||
-msgstr ""
|
||
+msgstr "%sலின் கோப்பு சூழல் ஏற்கனவே குறிப்பிடப்பட்டுள்ளது"
|
||
|
||
#: ../semanage/seobject.py:1028
|
||
#, python-format
|
||
msgid "Could not create file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு கோப்பு சூழலை உருவாக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1037
|
||
#, python-format
|
||
msgid "Could not set user in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு கோப்பு சூழலில் பயனரை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1041
|
||
#, python-format
|
||
msgid "Could not set role in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு கோப்பு சூழலில் பாத்திரத்தை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1045
|
||
#, python-format
|
||
msgid "Could not set type in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு கோப்பு சூழலில் வகையை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1050
|
||
#, python-format
|
||
msgid "Could not set mls fields in file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு கோப்பு சூழலில் mls புலங்களை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1056
|
||
#, python-format
|
||
msgid "Could not set file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%s க்கு கோப்பு சூழலை அமைக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1064 ../semanage/seobject.py:1068
|
||
#, python-format
|
||
msgid "Could not add file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு கோப்பு சூழலை சேர்க்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1076
|
||
msgid "Requires setype, serange or seuser"
|
||
-msgstr ""
|
||
+msgstr "setype, serange அல்லது seuser தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:1086 ../semanage/seobject.py:1125
|
||
#, python-format
|
||
msgid "File context for %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு கோப்பு சூழல் குறிப்பிடப்படவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1090
|
||
#, python-format
|
||
msgid "Could not query file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு கோப்பு சூழலை வினா எழுப்ப முடியாது"
|
||
|
||
#: ../semanage/seobject.py:1107 ../semanage/seobject.py:1111
|
||
#, python-format
|
||
msgid "Could not modify file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு கோப்பு சூழலை மாற்ற முடியாது"
|
||
|
||
#: ../semanage/seobject.py:1131
|
||
#, python-format
|
||
msgid "File context for %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "கோப்பு சூழல் %sக்கு பாலிசியில் குறிக்கப்பட்டுள்ளது, அழிக்க முடியாது"
|
||
|
||
#: ../semanage/seobject.py:1139 ../semanage/seobject.py:1143
|
||
#, python-format
|
||
msgid "Could not delete file context for %s"
|
||
-msgstr ""
|
||
+msgstr "%sக்கு கோப்பு சூழலை அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1151
|
||
msgid "Could not list file contexts"
|
||
-msgstr ""
|
||
+msgstr "கோப்பு சூழல் பட்டியலிட முடியவில்லை."
|
||
|
||
#: ../semanage/seobject.py:1189
|
||
msgid "Requires value"
|
||
-msgstr ""
|
||
+msgstr "மதிப்பு தேவைப்படுகிறது"
|
||
|
||
#: ../semanage/seobject.py:1197 ../semanage/seobject.py:1231
|
||
#: ../semanage/seobject.py:1237
|
||
#, python-format
|
||
msgid "Could not check if boolean %s is defined"
|
||
-msgstr ""
|
||
+msgstr "பூலியன் %s குறிப்பிடப்பட்டால், சோதிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1199 ../semanage/seobject.py:1233
|
||
#, python-format
|
||
msgid "Boolean %s is not defined"
|
||
-msgstr ""
|
||
+msgstr "பூலியன் %s குறிப்பிடப்படவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1203
|
||
#, python-format
|
||
msgid "Could not query file context %s"
|
||
-msgstr ""
|
||
+msgstr "கோப்பு சூழல் %sஐ வினா எழுப்ப முடியாது"
|
||
|
||
#: ../semanage/seobject.py:1215 ../semanage/seobject.py:1219
|
||
#, python-format
|
||
msgid "Could not modify boolean %s"
|
||
-msgstr ""
|
||
+msgstr "பூலியன் %sஐ மாற்ற முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1239
|
||
#, python-format
|
||
msgid "Boolean %s is defined in policy, cannot be deleted"
|
||
-msgstr ""
|
||
+msgstr "பூலியன் %s பாலிசியில் குறிப்பிடப்பட்டுள்ளது, அழிக்க முடியாது"
|
||
|
||
#: ../semanage/seobject.py:1247 ../semanage/seobject.py:1251
|
||
#, python-format
|
||
msgid "Could not delete boolean %s"
|
||
-msgstr ""
|
||
+msgstr "பூலியன் %sஐ அழிக்க முடியவில்லை"
|
||
|
||
#: ../semanage/seobject.py:1259
|
||
msgid "Could not list booleans"
|
||
-msgstr ""
|
||
+msgstr "பூலியன்களை பட்டியலிட முடியவில்லை"
|
||
|
||
#: ../audit2allow/audit2allow:179
|
||
#, c-format
|
||
msgid "Generating type enforcment file: %s.te"
|
||
-msgstr ""
|
||
+msgstr "வகை enforcment கோப்பினை உருவாக்குகிறது: %s.te"
|
||
|
||
#: ../audit2allow/audit2allow:184
|
||
msgid "Compiling policy"
|
||
-msgstr ""
|
||
+msgstr "பாலிசியை மாற்றுகிறது"
|
||
|
||
#: ../audit2allow/audit2allow:195
|
||
msgid ""
|
||
"\n"
|
||
"******************** IMPORTANT ***********************\n"
|
||
msgstr ""
|
||
+"\n"
|
||
+"******************** முக்கியமானது ***********************\n"
|
||
|
||
#: ../audit2allow/audit2allow:196
|
||
#, c-format
|
||
@@ -958,8 +921,14 @@
|
||
"semodule -i %s.pp\n"
|
||
"\n"
|
||
msgstr ""
|
||
+"கர்னலில் இந்த புதிதாக உருவாக்கப்பட்ட பாலிசி தொகுப்பினை ஏற்ற,\n"
|
||
+"நீங்கள் semodule -i %s.pp\n"
|
||
+"\n"
|
||
+"இயக்க வேண்டும்\n"
|
||
+"\n"
|
||
|
||
#: ../audit2allow/audit2allow:203
|
||
#, c-format
|
||
msgid "Options Error: %s "
|
||
-msgstr ""
|
||
+msgstr "விருப்பங்கள் பிழை: %s "
|
||
+
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/po/th.po policycoreutils-1.30.9/po/th.po
|
||
--- nsapolicycoreutils/po/th.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/th.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/tr.po policycoreutils-1.30.9/po/tr.po
|
||
--- nsapolicycoreutils/po/tr.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/tr.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/uk.po policycoreutils-1.30.9/po/uk.po
|
||
--- nsapolicycoreutils/po/uk.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/uk.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/ur.po policycoreutils-1.30.9/po/ur.po
|
||
--- nsapolicycoreutils/po/ur.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/ur.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/vi.po policycoreutils-1.30.9/po/vi.po
|
||
--- nsapolicycoreutils/po/vi.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/vi.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/zh_CN.po policycoreutils-1.30.9/po/zh_CN.po
|
||
--- nsapolicycoreutils/po/zh_CN.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/zh_CN.po 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -6,7 +6,7 @@
|
||
msgstr ""
|
||
"Project-Id-Version: zh_CN\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-05-08 15:54+1000\n"
|
||
"Last-Translator: \n"
|
||
"Language-Team: <zh@li.org>\n"
|
||
@@ -477,14 +477,15 @@
|
||
msgid "Could not set SELinux user for %s"
|
||
msgstr "%s! 无法为 %s 设置新上下文\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
|
||
msgid "Could not start semanage transaction"
|
||
msgstr ""
|
||
|
||
@@ -507,10 +508,6 @@
|
||
msgid "Could not query seuser for %s"
|
||
msgstr "%s! 无法为 %s 设置新上下文\n"
|
||
|
||
-#: ../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/zh_TW.po policycoreutils-1.30.9/po/zh_TW.po
|
||
--- nsapolicycoreutils/po/zh_TW.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/zh_TW.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/zu.po policycoreutils-1.30.9/po/zu.po
|
||
--- nsapolicycoreutils/po/zu.po 2006-05-15 09:43:12.000000000 -0400
|
||
+++ policycoreutils-1.30.9/po/zu.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 <EMAIL@ADDRESS>\n"
|
||
"Language-Team: LANGUAGE <LL@li.org>\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/scripts/genhomedircon policycoreutils-1.30.9/scripts/genhomedircon
|
||
--- nsapolicycoreutils/scripts/genhomedircon 2006-05-15 09:42:56.000000000 -0400
|
||
+++ policycoreutils-1.30.9/scripts/genhomedircon 2006-05-20 06:24:25.000000000 -0400
|
||
@@ -30,7 +30,7 @@
|
||
|
||
try:
|
||
fd = open("/etc/shells", 'r')
|
||
- VALID_SHELLS = fd.read().split('\n')
|
||
+ VALID_SHELLS = fd.readlines()
|
||
fd.close()
|
||
if "/sbin/nologin" in VALID_SHELLS:
|
||
VALID_SHELLS.remove("/sbin/nologin")
|
||
@@ -41,7 +41,7 @@
|
||
ret = ""
|
||
fd = open(file, 'r')
|
||
|
||
- for i in fd.read().split('\n'):
|
||
+ for i in fd.readlines():
|
||
if re.search(var, i, 0) != None:
|
||
ret = i
|
||
break
|
||
@@ -52,7 +52,7 @@
|
||
val = ""
|
||
try:
|
||
fd = open(file, 'r')
|
||
- for i in fd.read().split('\n'):
|
||
+ for i in fd.readlines():
|
||
if i.startswith(var) == 1:
|
||
if delim == "":
|
||
val = i.split()[1]
|
||
@@ -157,7 +157,7 @@
|
||
ret = ""
|
||
fd = open(self.getHomeDirTemplate(), 'r')
|
||
|
||
- for i in fd.read().split('\n'):
|
||
+ for i in fd.readlines():
|
||
if i.find("HOME_ROOT") == 0:
|
||
i = i.replace("HOME_ROOT", homedir)
|
||
ret += i+"\n"
|
||
@@ -229,7 +229,7 @@
|
||
else:
|
||
try:
|
||
fd = open(self.selinuxdir+self.type+"/seusers")
|
||
- for u in fd.read().split('\n'):
|
||
+ for u in fd.readlines():
|
||
u = u.strip()
|
||
if len(u) == 0 or u[0] == "#":
|
||
continue
|
||
@@ -249,7 +249,7 @@
|
||
def getHomeDirContext(self, user, seuser, home, prefix):
|
||
ret = "\n\n#\n# Home Context for user %s\n#\n\n" % user
|
||
fd = open(self.getHomeDirTemplate(), 'r')
|
||
- for i in fd.read().split('\n'):
|
||
+ for i in fd.readlines():
|
||
if i.startswith("HOME_DIR") == 1:
|
||
i = i.replace("HOME_DIR", home)
|
||
i = i.replace("ROLE", prefix)
|
||
@@ -261,7 +261,7 @@
|
||
def getUserContext(self, user, sel_user, prefix):
|
||
ret = ""
|
||
fd = open(self.getHomeDirTemplate(), 'r')
|
||
- for i in fd.read().split('\n'):
|
||
+ for i in fd.readlines():
|
||
if i.find("USER") == 1:
|
||
i = i.replace("USER", user)
|
||
i = i.replace("ROLE", prefix)
|
||
@@ -281,18 +281,22 @@
|
||
|
||
def checkExists(self, home):
|
||
fd = open(self.getFileContextFile())
|
||
- for i in fd.read().split('\n'):
|
||
+ for i in fd.readlines():
|
||
if len(i) == 0:
|
||
continue
|
||
- regex = i.split()[0]
|
||
- #match a trailing .+
|
||
- regex = re.sub("\.+$", "", regex)
|
||
- regex = re.sub("\.\*$", "", regex)
|
||
- #strip a (/.*)? which matches anything trailing to a /*$ which matches trailing /'s
|
||
- regex = re.sub("\(\/\.\*\)\?", "", regex)
|
||
- regex = regex + "/*$"
|
||
- if re.search(home, regex, 0):
|
||
- return 1
|
||
+ try:
|
||
+ regex = i.split()[0]
|
||
+ #match a trailing .+
|
||
+ regex = re.sub("\.+$", "", regex)
|
||
+ regex = re.sub("\.\*$", "", regex)
|
||
+ #strip a (/.*)? which matches anything trailing to a /*$ which matches trailing /'s
|
||
+
|
||
+ regex = re.sub("\(\/\.\*\)\?", "", regex)
|
||
+ regex = regex + "/*$"
|
||
+ if re.search(home, regex, 0):
|
||
+ return 1
|
||
+ except:
|
||
+ continue
|
||
return 0
|
||
|
||
def getHomeDirs(self):
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/secon/secon.1 policycoreutils-1.30.9/secon/secon.1
|
||
--- nsapolicycoreutils/secon/secon.1 1969-12-31 19:00:00.000000000 -0500
|
||
+++ policycoreutils-1.30.9/secon/secon.1 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -0,0 +1,108 @@
|
||
+.TH SECON "1" "April 2006" "Security Enhanced Linux" NSA
|
||
+.SH NAME
|
||
+secon \- See a context, from a file, program or user input.
|
||
+.SH SYNOPSIS
|
||
+.B secon
|
||
+[\fB-hVurtlmPRfLp\fR]
|
||
+[\fICONTEXT\fR]
|
||
+.br
|
||
+[\fB--file\fR]
|
||
+\fIFILE\fR
|
||
+.br
|
||
+[\fB--link\fR]
|
||
+\fIFILE\fR
|
||
+.br
|
||
+[\fB--pid\fR]
|
||
+\fIPID\fR
|
||
+.SH DESCRIPTION
|
||
+.PP
|
||
+See a part of a context. The context is taken from a file, pid, user input or
|
||
+the context in which
|
||
+.B secon
|
||
+is originally executed.
|
||
+.TP
|
||
+\fB\-V\fR, \fB\-\-version\fR
|
||
+shows the current version of secon
|
||
+.TP
|
||
+\fB\-h\fR, \fB\-\-help\fR
|
||
+shows the usage information for secon
|
||
+.TP
|
||
+\fB\-P\fR, \fB\-\-prompt\fR
|
||
+outputs data in a format suitable for a prompt
|
||
+.TP
|
||
+\fB\-u\fR, \fB\-\-user\fR
|
||
+show the user of the security context
|
||
+.TP
|
||
+\fB\-r\fR, \fB\-\-role\fR
|
||
+show the role of the security context
|
||
+.TP
|
||
+\fB\-t\fR, \fB\-\-type\fR
|
||
+show the type of the security context
|
||
+.TP
|
||
+\fB\-l\fR, \fB\-\-level\fR
|
||
+show the sensitivity level of the security context
|
||
+.TP
|
||
+\fB\-m\fR, \fB\-\-mls-range\fR
|
||
+show the sensitivity level and clearance of the security context
|
||
+.TP
|
||
+\fB\-R\fR, \fB\-\-raw\fR
|
||
+outputs the sensitivity level and clearance in an untranslated format.
|
||
+.TP
|
||
+\fB\-f\fR, \fB\-\-file\fR
|
||
+gets the context from the specified file FILE
|
||
+.TP
|
||
+\fB\-L\fR, \fB\-\-link\fR
|
||
+gets the context from the specified file FILE (doesn't follow symlinks)
|
||
+.TP
|
||
+\fB\-p\fR, \fB\-\-pid\fR
|
||
+gets the context from the specified process PID
|
||
+.TP
|
||
+\fB\-\-pid\-exec\fR
|
||
+gets the exec context from the specified process PID
|
||
+.TP
|
||
+\fB\-\-pid\-fs\fR
|
||
+gets the fscreate context from the specified process PID
|
||
+.TP
|
||
+\fB\-\-current\fR, \fB\-\-self\fR
|
||
+gets the context from the current process
|
||
+.TP
|
||
+\fB\-\-current\-exec\fR, \fB\-\-self\-exec\fR
|
||
+gets the exec context from the current process
|
||
+.TP
|
||
+\fB\-\-current\-fs\fR, \fB\-\-self\-fs\fR
|
||
+gets the fscreate context from the current process
|
||
+.TP
|
||
+\fB\-\-parent\fR
|
||
+gets the context from the parent of the current process
|
||
+.TP
|
||
+\fB\-\-parent\-exec\fR
|
||
+gets the exec context from the parent of the current process
|
||
+.TP
|
||
+\fB\-\-parent\-fs\fR
|
||
+gets the fscreate context from the parent of the current process
|
||
+.PP
|
||
+Additional argument
|
||
+.I CONTEXT
|
||
+may be provided and will be used if no options have been specified to make
|
||
+.B secon
|
||
+get it's context from another source.
|
||
+If that argument is
|
||
+.I -
|
||
+then the context will be read from stdin.
|
||
+.br
|
||
+If there is no arugment,
|
||
+.B secon
|
||
+will try reading a context from stdin, if that is not a tty, otherwise
|
||
+.B secon
|
||
+will act as though \fB\-\-self\fR had been passed.
|
||
+.PP
|
||
+If none of \fB\-\-user\fR, \fB\-\-role\fR, \fB\-\-type\fR, \fB\-\-level\fR or
|
||
+\fB\-\-mls\-range\fR is passed.
|
||
+Then all of them will be output.
|
||
+.PP
|
||
+.SH SEE ALSO
|
||
+.B chcon
|
||
+(1)
|
||
+.SH AUTHORS
|
||
+.nf
|
||
+James Antill (james.antill@redhat.com)
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/secon/secon.c policycoreutils-1.30.9/secon/secon.c
|
||
--- nsapolicycoreutils/secon/secon.c 2006-05-15 09:42:58.000000000 -0400
|
||
+++ policycoreutils-1.30.9/secon/secon.c 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -19,8 +19,8 @@
|
||
#define FALSE 0
|
||
|
||
#define SECON_CONF_PROG_NAME "secon" /* default program name */
|
||
-#define SECON_OPTS_SM "hVurtlmRfLp" /* small options available, printing */
|
||
-#define SECON_OPTS_GO "hVurtlmRf:L:p:" /* small options available, getopt */
|
||
+#define SECON_OPTS_SM "hVurtlmPRfLp" /* small options available, printing */
|
||
+#define SECON_OPTS_GO "hVurtlmPRf:L:p:" /* small options available, getopt */
|
||
|
||
#define OPTS_FROM_ARG 0
|
||
#define OPTS_FROM_FILE 1
|
||
@@ -43,7 +43,9 @@
|
||
|
||
unsigned int disp_raw : 1;
|
||
|
||
- unsigned int from_type : 10; /* 16 bits */
|
||
+ unsigned int disp_prompt : 1; /* no return, use : to sep */
|
||
+
|
||
+ unsigned int from_type : 9; /* 16 bits */
|
||
|
||
union
|
||
{
|
||
@@ -53,7 +55,7 @@
|
||
const char *arg;
|
||
} f;
|
||
} opts[1] = {{FALSE, FALSE, FALSE, FALSE, FALSE,
|
||
- FALSE, OPTS_FROM_ARG, {0}}};
|
||
+ FALSE, FALSE, OPTS_FROM_ARG, {0}}};
|
||
|
||
|
||
static void usage(const char *name, int exit_code)
|
||
@@ -62,11 +64,13 @@
|
||
" Usage: %s [-%s] [ context | - ]\n"
|
||
" --help -h Show this message.\n"
|
||
" --version -V Show the version.\n"
|
||
-" --user -u Show the user part of the context.\n"
|
||
-" --role -r Show the role part of the context.\n"
|
||
-" --type -t Show the type part of the context.\n"
|
||
-" --level -l Show the default level part of the context.\n"
|
||
-" --mls-range -m Show the level range part of the context.\n"
|
||
+" --prompt -P Output in a format good for a prompt.\n"
|
||
+" --user -u Show the user of the context.\n"
|
||
+" --role -r Show the role of the context.\n"
|
||
+" --type -t Show the type of the context.\n"
|
||
+" --level -l Show the sensitivity level of the context.\n"
|
||
+" --mls-range -m Show the sensitivity level and clearance of \n"
|
||
+" the context.\n"
|
||
" --raw -R Show the context in \"raw\" format.\n"
|
||
" --current Get the context for the current process.\n"
|
||
" --self Get the context for the current process.\n"
|
||
@@ -134,10 +138,13 @@
|
||
{"help", no_argument, NULL, 'h'},
|
||
{"version", no_argument, NULL, 'V'},
|
||
|
||
+ {"prompt", no_argument, NULL, 'P'},
|
||
+
|
||
{"user", no_argument, NULL, 'u'},
|
||
{"role", no_argument, NULL, 'r'},
|
||
{"type", no_argument, NULL, 't'},
|
||
{"level", no_argument, NULL, 'l'},
|
||
+ {"range", no_argument, NULL, 'm'},
|
||
{"mls-range", no_argument, NULL, 'm'},
|
||
|
||
{"raw", no_argument, NULL, 'R'},
|
||
@@ -183,6 +190,8 @@
|
||
case 'l': done = TRUE; opts->disp_level = !opts->disp_level; break;
|
||
case 'm': done = TRUE; opts->disp_mlsr = !opts->disp_mlsr; break;
|
||
|
||
+ case 'P': opts->disp_prompt = !opts->disp_prompt; break;
|
||
+
|
||
case 'R': opts->disp_raw = !opts->disp_raw; break;
|
||
case 1: opts->from_type = OPTS_FROM_CUR; break;
|
||
case 2: opts->from_type = OPTS_FROM_CUREXE; break;
|
||
@@ -226,7 +235,9 @@
|
||
opts->disp_user = TRUE;
|
||
opts->disp_role = TRUE;
|
||
opts->disp_type = TRUE;
|
||
- opts->disp_level = TRUE;
|
||
+ if (!opts->disp_prompt) /* when displaying prompt,
|
||
+ just output "normal" by default */
|
||
+ opts->disp_level = TRUE;
|
||
opts->disp_mlsr = TRUE;
|
||
}
|
||
|
||
@@ -236,6 +247,8 @@
|
||
argc -= optind;
|
||
argv += optind;
|
||
|
||
+ if (!argc && (opts->from_type == OPTS_FROM_ARG) && !isatty(STDIN_FILENO))
|
||
+ opts->from_type = OPTS_FROM_STDIN;
|
||
if (!argc && (opts->from_type == OPTS_FROM_ARG))
|
||
opts->from_type = OPTS_FROM_CUR;
|
||
|
||
@@ -290,6 +303,7 @@
|
||
|
||
static security_context_t get_scon(void)
|
||
{
|
||
+ static char dummy_NIL[1] = "";
|
||
security_context_t con = NULL;
|
||
int ret = -1;
|
||
int raw = TRUE;
|
||
@@ -336,10 +350,7 @@
|
||
err(EXIT_FAILURE, " Couldn't get current exec security context");
|
||
|
||
if (!con)
|
||
- {
|
||
- opts->from_type = OPTS_FROM_CUR;
|
||
- return (get_scon());
|
||
- }
|
||
+ con = dummy_NIL;
|
||
break;
|
||
case OPTS_FROM_CURFS:
|
||
ret = getfscreatecon_raw(&con);
|
||
@@ -348,10 +359,7 @@
|
||
err(EXIT_FAILURE, " Couldn't get current fs security context");
|
||
|
||
if (!con)
|
||
- {
|
||
- opts->from_type = OPTS_FROM_CUR;
|
||
- return (get_scon());
|
||
- }
|
||
+ con = dummy_NIL;
|
||
break;
|
||
|
||
case OPTS_FROM_PROC:
|
||
@@ -369,10 +377,7 @@
|
||
(unsigned long)opts->f.pid);
|
||
|
||
if (!con)
|
||
- {
|
||
- opts->from_type = OPTS_FROM_PROC;
|
||
- return (get_scon());
|
||
- }
|
||
+ con = dummy_NIL;
|
||
break;
|
||
case OPTS_FROM_PROCFS:
|
||
ret = my_getpidfscreatecon_raw(opts->f.pid, &con);
|
||
@@ -382,10 +387,12 @@
|
||
(unsigned long)opts->f.pid);
|
||
|
||
if (!con)
|
||
+ con = dummy_NIL;
|
||
+ /* disabled -- override with normal context ...
|
||
{
|
||
opts->from_type = OPTS_FROM_PROC;
|
||
return (get_scon());
|
||
- }
|
||
+ } */
|
||
break;
|
||
|
||
case OPTS_FROM_FILE:
|
||
@@ -426,15 +433,26 @@
|
||
|
||
static void disp__con_val(const char *name, const char *val)
|
||
{
|
||
+ static int done = FALSE;
|
||
+
|
||
assert(name);
|
||
|
||
if (!val) val = ""; /* targeted has no "level" etc.,
|
||
any errors should happen at context_new() time */
|
||
-
|
||
- if (disp_multi())
|
||
+
|
||
+ if (opts->disp_prompt)
|
||
+ {
|
||
+ if (xstreq("mls-range", name) && !*val)
|
||
+ return; /* skip, mls-range if it's empty */
|
||
+
|
||
+ fprintf(stdout, "%s%s", done ? ":" : "", val);
|
||
+ }
|
||
+ else if (disp_multi())
|
||
fprintf(stdout, "%s: %s\n", name, val);
|
||
else
|
||
fprintf(stdout, "%s\n", val);
|
||
+
|
||
+ done = TRUE;
|
||
}
|
||
|
||
static void disp_con(security_context_t scon)
|
||
diff --exclude-from=exclude -N -u -r nsapolicycoreutils/semanage/seobject.py policycoreutils-1.30.9/semanage/seobject.py
|
||
--- nsapolicycoreutils/semanage/seobject.py 2006-05-15 09:42:56.000000000 -0400
|
||
+++ policycoreutils-1.30.9/semanage/seobject.py 2006-05-16 21:43:37.000000000 -0400
|
||
@@ -318,7 +318,7 @@
|
||
|
||
rc = semanage_begin_transaction(self.sh)
|
||
if rc < 0:
|
||
- raise ValueError(_("Could not srart semanage transaction"))
|
||
+ raise ValueError(_("Could not start semanage transaction"))
|
||
|
||
rc = semanage_seuser_modify_local(self.sh, k, u)
|
||
if rc < 0:
|